kube_auto_analyzer 0.0.4 → 0.0.5

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: e0356e457db66e2456e2a1aec7b6c26324690279
4
- data.tar.gz: 4850a960a8827606b9f1f180fafd3aa992b705d5
3
+ metadata.gz: b212499095793da59595c95f41a0bdd3718ec462
4
+ data.tar.gz: 8e12eef51832ebfe3932040931f545920a8401b1
5
5
  SHA512:
6
- metadata.gz: a7efa8ea0b79bf980ad966e75ec5dd309277fec0eb1a3f4ec17e29ebca0bfb9e122b75015850c24fb15e1f2bbffa2f3139e0c161f7bbd9a21860bf6b1c4bfd59
7
- data.tar.gz: e296498d5128895ef21e6c11515cc1071c248629ff6d4d4a43078ff4dfd44d7e0ea97beeac2ef2f52f9ba2815d831afbdde5bcd94cd04c0828fbae23434100de
6
+ metadata.gz: 2f85d2bce93fcaec371fed52bc4c0b235cd2a0decc33845ebeb7d4ae08c7c0a785d6a0a2bc29f9d0ddc8f6b240a28e3e34c434f5ca83147aaae896f48604f9f6
7
+ data.tar.gz: 3cd1e421d9611c3a6c4d7628060b5dac492ee687c3e9947747230459878432b0ad2b351a0ec437b283469b745a87bc20465f2185bc6657b4ac564063a03799dd
@@ -143,6 +143,18 @@ module KubeAutoAnalyzer
143
143
  else
144
144
  @results[target]['kubelet_checks'][node_hostname]['CIS 2.1.13 - Ensure that the --cadvisor-port argument is set to 0'] = "Pass"
145
145
  end
146
+
147
+ unless kubelet_proc =~ /--feature-gates=RotateKubeletClientCertificate=true/
148
+ @results[target]['kubelet_checks'][node_hostname]['CIS 2.1.14 - Ensure that the RotateKubeletClientCertificate argument is set to true'] = "Fail"
149
+ else
150
+ @results[target]['kubelet_checks'][node_hostname]['CIS 2.1.14 - Ensure that the RotateKubeletClientCertificate argument is set to true'] = "Pass"
151
+ end
152
+
153
+ unless kubelet_proc =~ /--feature-gates=RotateKubeletServerCertificate=true/
154
+ @results[target]['kubelet_checks'][node_hostname]['CIS 2.1.15 - Ensure that the RotateKubeletServerCertificate argument is set to true'] = "Fail"
155
+ else
156
+ @results[target]['kubelet_checks'][node_hostname]['CIS 2.1.15 - Ensure that the RotateKubeletServerCertificate argument is set to true'] = "Pass"
157
+ end
146
158
  #Need an ensure block here to make sure that the pod is deleted after its run
147
159
  ensure
148
160
  @client.delete_pod(container_name,"default")
@@ -385,6 +385,19 @@ module KubeAutoAnalyzer
385
385
  @results[target]['etcd']['CIS 1.5.6 - Ensure that the --peer-auto-tls argument is not set to true'] = "Pass"
386
386
  end
387
387
 
388
+ #This isn't quite right as we should really check the dir. but as that's not easily done lets start with an existence check
389
+ unless etcd_command_line.index{|line| line =~ /--wall-dir/}
390
+ @results[target]['etcd']['CIS 1.5.7 - Ensure that the --wal-dir argument is set as appropriate'] = "Fail"
391
+ else
392
+ @results[target]['etcd']['CIS 1.5.7 - Ensure that the --wal-dir argument is set as appropriate'] = "Pass"
393
+ end
394
+
395
+ unless etcd_command_line.index{|line| line =~ /--max-wals=0/}
396
+ @results[target]['etcd']['CIS 1.5.8 - Ensure that the --max-wals argument is set to 0'] = "Fail"
397
+ else
398
+ @results[target]['etcd']['CIS 1.5.8 - Ensure that the --max-wals argument is set to 0'] = "Pass"
399
+ end
400
+
388
401
 
389
402
 
390
403
  @results[target]['evidence']['etcd'] = etcd_command_line