kuberun 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/kuberun/kubectl.rb +1 -1
- data/lib/kuberun/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8c65099c3fc72bae79d18cce6783d1a6bf4a639032bf9479fb554b125d4d8ba3
|
|
4
|
+
data.tar.gz: d3b9c243218d76399fcda5999ea89c76d73ca26f8609e00f07ba1ff8e6f99a03
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: acfb1a9fbcee7d70268918e813274f083a6fac79ce362d62960503e20004ba443471fb1fdd35d978a3ae6ef149a4edfc80b146a1e36d4bd74b3094e1b280b15b
|
|
7
|
+
data.tar.gz: e5a84c0340ff06a0d726855c38068e19f50f39a94cef936174c2e61debbc7d0666c39afd32a0ba73060bec219f5b6fe055a391dca121d40c5e02eb2fde70c2f5
|
data/Gemfile.lock
CHANGED
data/lib/kuberun/kubectl.rb
CHANGED
|
@@ -25,7 +25,7 @@ class Kubectl
|
|
|
25
25
|
'cluster-command': { type: 'string', default: '/bin/bash', desc: 'Command to run on cluster' },
|
|
26
26
|
'use-first-pod': { type: 'boolean', default: false, desc: 'Should first existing pod be used automatically?' },
|
|
27
27
|
'cleanup-pod': { type: 'boolean', default: false, desc: 'Should pod be removed after finishing?' },
|
|
28
|
-
'perform-auth-check': { type: 'boolean', default:
|
|
28
|
+
'perform-auth-check': { type: 'boolean', default: false, desc: 'Should auth check be performed?' },
|
|
29
29
|
'pty': { type: 'boolean', default: false, desc: 'Should PTY be used?' },
|
|
30
30
|
}.freeze
|
|
31
31
|
OPTIONS = KUBECTL_OPTIONS.merge(SCRIPT_OPTIONS).freeze
|
data/lib/kuberun/version.rb
CHANGED