From ce0137a31a698818f54356654b67d029a21f35be Mon Sep 17 00:00:00 2001 From: Arpit Pandey Date: Fri, 25 Oct 2019 02:35:13 +0530 Subject: [PATCH] Fix few typos (#469) --- cfg/ocp-3.10/master.yaml | 4 ++-- cfg/ocp-3.11/master.yaml | 4 ++-- cmd/util.go | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cfg/ocp-3.10/master.yaml b/cfg/ocp-3.10/master.yaml index a67ccb6..7f82a5d 100644 --- a/cfg/ocp-3.10/master.yaml +++ b/cfg/ocp-3.10/master.yaml @@ -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: diff --git a/cfg/ocp-3.11/master.yaml b/cfg/ocp-3.11/master.yaml index a67ccb6..7f82a5d 100644 --- a/cfg/ocp-3.11/master.yaml +++ b/cfg/ocp-3.11/master.yaml @@ -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: diff --git a/cmd/util.go b/cmd/util.go index 5c694af..2a49b10 100644 --- a/cmd/util.go +++ b/cmd/util.go @@ -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))