Skip to content

Commit c68e134

Browse files
v3 new release (#196)
1 parent 17f5181 commit c68e134

File tree

159 files changed

+8186
-2144
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+8186
-2144
lines changed

.github/workflows/unit-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ name: "Run unit tests."
22
on: # rebuild any PRs and main branch changes
33
pull_request:
44
branches:
5-
- master
5+
- main
66
- "releases/*"
77
push:
88
branches:
9-
- master
9+
- main
1010
- "releases/*"
1111

1212
jobs:

lib/index.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19888,7 +19888,9 @@ class Kubectl {
1988819888
if (this.ignoreSSLErrors) {
1988919889
args.push("--insecure-skip-tls-verify");
1989019890
}
19891-
args = args.concat(["--namespace", this.namespace]);
19891+
if (this.namespace && this.namespace != "default") {
19892+
args = args.concat(["--namespace", this.namespace]);
19893+
}
1989219894
core.debug(`Kubectl run with command: ${this.kubectlPath} ${args}`);
1989319895
return yield exec_1.getExecOutput(this.kubectlPath, args, { silent });
1989419896
});

node_modules/.package-lock.json

Lines changed: 41 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

node_modules/lodash.memoize/LICENSE

Lines changed: 0 additions & 47 deletions
This file was deleted.

node_modules/lodash.memoize/README.md

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)