kube_auto_analyzer 0.0.9 → 0.0.10
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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9730bef55686b97242f0f0e5c3cbfa57d0f6b4b8
|
4
|
+
data.tar.gz: dd607350381ac0e0bb843eea09108c370fc0bfba
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 72114505c8bfa50b2ba2c2e542b2bd47b9d3761671e8a7895b85727196af09d552ec85e406b1538979ccd6c5c7a64fa73ecfe6a862791063a21463aae55d4450
|
7
|
+
data.tar.gz: 34703e74e7794e9877e08dd667fc0a9c23bf6e4c54678f4a7d61def0e153bc5ea31a4906a0476e7c525675a0f0c30459b2eefdbbb26cb2bb3f5c106ff8e295b1
|
@@ -25,7 +25,9 @@ module KubeAutoAnalyzer
|
|
25
25
|
|
26
26
|
#Try the Toleration for Master
|
27
27
|
pod.spec.tolerations = {}
|
28
|
-
|
28
|
+
#Old version doesn't work with 1.8
|
29
|
+
#pod.spec.tolerations = [{ key:"key", operator:"Equal", value:"value",effect:"NoSchedule"}]
|
30
|
+
pod.spec.tolerations = [{ operator:"Exists" }]
|
29
31
|
|
30
32
|
pod.spec.volumes = [{name: 'etck8s', hostPath: {path: '/etc'}}]
|
31
33
|
pod.spec.containers[0].volumeMounts = [{mountPath: '/etc', name: 'etck8s'}]
|
@@ -28,8 +28,9 @@ module KubeAutoAnalyzer
|
|
28
28
|
|
29
29
|
#Try the Toleration for Master
|
30
30
|
pod.spec.tolerations = {}
|
31
|
-
pod.spec.tolerations = [{ key:"key", operator:"Equal", value:"value",effect:"NoSchedule"}]
|
32
|
-
|
31
|
+
#pod.spec.tolerations = [{ key:"key", operator:"Equal", value:"value",effect:"NoSchedule"}]
|
32
|
+
pod.spec.tolerations = [{ operator:"Exists" }]
|
33
|
+
|
33
34
|
pod.spec.containers[0].args = ["/process-checker.rb"]
|
34
35
|
pod.spec.hostPID = true
|
35
36
|
pod.spec.nodeselector = {}
|
@@ -29,7 +29,8 @@ module KubeAutoAnalyzer
|
|
29
29
|
|
30
30
|
#Try the Toleration for Master
|
31
31
|
pod.spec.tolerations = {}
|
32
|
-
pod.spec.tolerations = [{ key:"key", operator:"Equal", value:"value",effect:"NoSchedule"}]
|
32
|
+
#pod.spec.tolerations = [{ key:"key", operator:"Equal", value:"value",effect:"NoSchedule"}]
|
33
|
+
pod.spec.tolerations = [{ operator:"Exists" }]
|
33
34
|
|
34
35
|
pod.spec.nodeselector = {}
|
35
36
|
pod.spec.nodeselector['kubernetes.io/hostname'] = node_hostname
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kube_auto_analyzer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.10
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rory McCune
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|