kube_auto_analyzer 0.0.7 → 0.0.8
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/bin/kubeautoanalyzer +6 -1
- data/lib/kube_auto_analyzer/agent_checks/process_checks.rb +1 -1
- data/lib/kube_auto_analyzer/api_checks/master_node.rb +2 -2
- data/lib/kube_auto_analyzer/reporting.rb +1 -1
- data/lib/kube_auto_analyzer/version.rb +1 -1
- data/lib/kube_auto_analyzer.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 477ad0c2cb8e8a489cc6901f90534ef368b3baa1
|
4
|
+
data.tar.gz: ff57249d3d80cf7f62b86aa760eed5386765b4e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1628d35f5c38de533b99979d060f1cb18f70853c36a983c6bc16076f201fe675c3c4460d287bd90ddb0ef9c7c451fcfc694751e4d527190fe1342203fdef7368
|
7
|
+
data.tar.gz: 9550f88df01e83f67a24dc4b18b186186a9a7642187d80e67e7aa766fcf5cb3fb489711921d556dca6c86c2fb4705be953d28dabb78e66b4b9d69020dcba836a
|
data/bin/kubeautoanalyzer
CHANGED
@@ -14,6 +14,7 @@
|
|
14
14
|
options.token_file = ''
|
15
15
|
options.config_file = false
|
16
16
|
options.agent_checks = false
|
17
|
+
options.insecure = false
|
17
18
|
|
18
19
|
|
19
20
|
opts = OptionParser.new do |opts|
|
@@ -30,6 +31,10 @@
|
|
30
31
|
options.target_server = serv
|
31
32
|
end
|
32
33
|
|
34
|
+
opts.on("-i", "--insecure", "Use the Insecure API Server Port") do |insecure|
|
35
|
+
options.insecure = true
|
36
|
+
end
|
37
|
+
|
33
38
|
opts.on("-t", "--token [TOKEN]", "Bearer Token to Use") do |token|
|
34
39
|
options.token = token
|
35
40
|
end
|
@@ -71,7 +76,7 @@
|
|
71
76
|
|
72
77
|
opts.parse!(ARGV)
|
73
78
|
|
74
|
-
unless (options.token.length > 1 || options.config_file || options.token_file.length > 1)
|
79
|
+
unless (options.token.length > 1 || options.config_file || options.token_file.length > 1 || options.insecure )
|
75
80
|
puts "No valid auth mechanism specified"
|
76
81
|
puts opts
|
77
82
|
exit
|
@@ -120,7 +120,7 @@ module KubeAutoAnalyzer
|
|
120
120
|
end
|
121
121
|
|
122
122
|
unless kubelet_proc =~ /--keep-terminated-pod-volumes=false/
|
123
|
-
@results[target]['kubelet_checks'][node_hostname]['CIS 2.1.9 - that the --keep-terminated-pod-volumes argument is set to false'] = "Fail"
|
123
|
+
@results[target]['kubelet_checks'][node_hostname]['CIS 2.1.9 - Ensure that the --keep-terminated-pod-volumes argument is set to false'] = "Fail"
|
124
124
|
else
|
125
125
|
@results[target]['kubelet_checks'][node_hostname]['CIS 2.1.9 - Ensure that the --keep-terminated-pod-volumes argument is set to false'] = "Pass"
|
126
126
|
end
|
@@ -395,7 +395,7 @@ module KubeAutoAnalyzer
|
|
395
395
|
end
|
396
396
|
|
397
397
|
#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
|
398
|
-
unless etcd_command_line.index{|line| line =~ /--
|
398
|
+
unless etcd_command_line.index{|line| line =~ /--wal-dir/}
|
399
399
|
@results[target]['etcd']['CIS 1.5.7 - Ensure that the --wal-dir argument is set as appropriate'] = "Fail"
|
400
400
|
else
|
401
401
|
@results[target]['etcd']['CIS 1.5.7 - Ensure that the --wal-dir argument is set as appropriate'] = "Pass"
|
@@ -411,4 +411,4 @@ module KubeAutoAnalyzer
|
|
411
411
|
|
412
412
|
@results[target]['evidence']['etcd'] = etcd_command_line
|
413
413
|
end
|
414
|
-
end
|
414
|
+
end
|
data/lib/kube_auto_analyzer.rb
CHANGED
@@ -51,7 +51,7 @@ module KubeAutoAnalyzer
|
|
51
51
|
auth_options = { bearer_token: @options.token}
|
52
52
|
elsif @options.token_file.length > 1
|
53
53
|
auth_options = { bearer_token_file: @options.token_file}
|
54
|
-
|
54
|
+
elsif @options.insecure
|
55
55
|
#Not sure this will actually work for no auth. needed, try and ooold cluster to check
|
56
56
|
auth_options = {}
|
57
57
|
end
|
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.8
|
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-11-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|