1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-11-22 08:08:07 +00:00

Fix few typos (#469)

This commit is contained in:
Arpit Pandey 2019-10-25 02:35:13 +05:30 committed by Simarpreet Singh
parent 39d9ef9d37
commit ce0137a31a
3 changed files with 5 additions and 5 deletions

View File

@ -171,7 +171,7 @@ groups:
set: false
remediation: |
Edit the kubernetes master config file /etc/origin/master/master-config.yaml
and remove the the entry below.
and remove the entry below.
AlwaysAdmit:
configuration:
@ -192,7 +192,7 @@ groups:
set: true
remediation: |
Edit the kubernetes master config file /etc/origin/master/master-config.yaml
and add the the entry below.
and add the entry below.
admissionConfig:
pluginConfig:

View File

@ -171,7 +171,7 @@ groups:
set: false
remediation: |
Edit the kubernetes master config file /etc/origin/master/master-config.yaml
and remove the the entry below.
and remove the entry below.
AlwaysAdmit:
configuration:
@ -192,7 +192,7 @@ groups:
set: true
remediation: |
Edit the kubernetes master config file /etc/origin/master/master-config.yaml
and add the the entry below.
and add the entry below.
admissionConfig:
pluginConfig:

View File

@ -335,7 +335,7 @@ func makeSubstitutions(s string, ext string, m map[string]string) string {
for k, v := range m {
subst := "$" + k + ext
if v == "" {
glog.V(2).Info(fmt.Sprintf("No subsitution for '%s'\n", subst))
glog.V(2).Info(fmt.Sprintf("No substitution for '%s'\n", subst))
continue
}
glog.V(2).Info(fmt.Sprintf("Substituting %s with '%s'\n", subst, v))