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: 074921cde562a30edcc22e129010ab6823d688ca
4
- data.tar.gz: 4412d5f1123ce2c48a032a442110415a616cc165
3
+ metadata.gz: 9730bef55686b97242f0f0e5c3cbfa57d0f6b4b8
4
+ data.tar.gz: dd607350381ac0e0bb843eea09108c370fc0bfba
5
5
  SHA512:
6
- metadata.gz: b5c474423ef3a59932bb5b8743465ef7a7ed2611c926ed322741e868c44491f18403023c96c913b39d269183624b346f4513c26910f488c5bc382ce00fb9a32f
7
- data.tar.gz: a572a61904ebdd781ddb6bb77fbde2f143533b7d89ec79247c13c70a986a0e918a7470937a18c3885d5b8eb1a6daba0bd545fc3d555c60686b8b988425ada4b4
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
- pod.spec.tolerations = [{ key:"key", operator:"Equal", value:"value",effect:"NoSchedule"}]
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 = {}
@@ -1,3 +1,3 @@
1
1
  module KubeAutoAnalyzer
2
- VERSION = "0.0.9"
2
+ VERSION = "0.0.10"
3
3
  end
@@ -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.9
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-29 00:00:00.000000000 Z
11
+ date: 2017-12-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler