@@ -47,7 +47,7 @@ var _ = Describe("Overrides test", Ordered, Label("Platform:Generic"), func() {
4747
4848 It ("should add the args to the cert-manager controller deployment" , func () {
4949
50- By ("Adding cert-manager controller override args to the cert-managaer operator object" )
50+ By ("Adding cert-manager controller override args to the cert-manager operator object" )
5151 args := []string {
5252 // good-have to sync these args updated with the args present in
5353 // pkg/controller/deployment/deployment_overrides_validation.go,
@@ -88,7 +88,7 @@ var _ = Describe("Overrides test", Ordered, Label("Platform:Generic"), func() {
8888
8989 It ("should add the args to the cert-manager webhook deployment" , func () {
9090
91- By ("Adding cert-manager webhook override args to the cert-managaer operator object" )
91+ By ("Adding cert-manager webhook override args to the cert-manager operator object" )
9292 args := []string {"--v=3" }
9393 err := addOverrideArgs (certmanageroperatorclient , certmanagerWebhookDeployment , args )
9494 Expect (err ).NotTo (HaveOccurred ())
@@ -109,7 +109,7 @@ var _ = Describe("Overrides test", Ordered, Label("Platform:Generic"), func() {
109109
110110 It ("should add the args to the cert-manager cainjector deployment" , func () {
111111
112- By ("Adding cert-manager cainjector override args to the cert-managaer operator object" )
112+ By ("Adding cert-manager cainjector override args to the cert-manager operator object" )
113113 args := []string {"--v=3" }
114114 err := addOverrideArgs (certmanageroperatorclient , certmanagerCAinjectorDeployment , args )
115115 Expect (err ).NotTo (HaveOccurred ())
@@ -131,7 +131,7 @@ var _ = Describe("Overrides test", Ordered, Label("Platform:Generic"), func() {
131131
132132 It ("should not add the args to the cert-manager controller deployment" , func () {
133133
134- By ("Adding cert-manager controller override args to the cert-managaer operator object" )
134+ By ("Adding cert-manager controller override args to the cert-manager operator object" )
135135 args := []string {"--invalid-args=foo" }
136136 err := addOverrideArgs (certmanageroperatorclient , certmanagerControllerDeployment , args )
137137 Expect (err ).NotTo (HaveOccurred ())
@@ -152,7 +152,7 @@ var _ = Describe("Overrides test", Ordered, Label("Platform:Generic"), func() {
152152
153153 It ("should not add the args to the cert-manager webhook deployment" , func () {
154154
155- By ("Adding cert-manager webhook override args to the cert-managaer operator object" )
155+ By ("Adding cert-manager webhook override args to the cert-manager operator object" )
156156 args := []string {"--dns01-recursive-nameservers=10.10.10.10:53" , "--dns01-recursive-nameservers-only" , "--enable-certificate-owner-ref" }
157157 err := addOverrideArgs (certmanageroperatorclient , certmanagerWebhookDeployment , args )
158158 Expect (err ).NotTo (HaveOccurred ())
@@ -173,7 +173,7 @@ var _ = Describe("Overrides test", Ordered, Label("Platform:Generic"), func() {
173173
174174 It ("should not add the args to the cert-manager cainjector deployment" , func () {
175175
176- By ("Adding cert-manager cainjector override args to the cert-managaer operator object" )
176+ By ("Adding cert-manager cainjector override args to the cert-manager operator object" )
177177 args := []string {"--dns01-recursive-nameservers=10.10.10.10:53" , "--dns01-recursive-nameservers-only" , "--enable-certificate-owner-ref" }
178178 err := addOverrideArgs (certmanageroperatorclient , certmanagerCAinjectorDeployment , args )
179179 Expect (err ).NotTo (HaveOccurred ())
@@ -563,7 +563,7 @@ var _ = Describe("Overrides test", Ordered, Label("Platform:Generic"), func() {
563563
564564 It ("should add the env to the cert-manager controller deployment" , func () {
565565
566- By ("Adding cert-manager controller override env to the cert-managaer operator object" )
566+ By ("Adding cert-manager controller override env to the cert-manager operator object" )
567567 env := []corev1.EnvVar {{Name : "HTTP_PROXY" , Value : "http://proxy.example.com:8080" }, {Name : "HTTPS_PROXY" , Value : "http://proxy.example.com:8088" }, {Name : "NO_PROXY" , Value : "localhost" }}
568568 err := addOverrideEnv (certmanageroperatorclient , certmanagerControllerDeployment , env )
569569 Expect (err ).NotTo (HaveOccurred ())
@@ -584,7 +584,7 @@ var _ = Describe("Overrides test", Ordered, Label("Platform:Generic"), func() {
584584
585585 It ("should not add the env to the cert-manager controller deployment" , func () {
586586
587- By ("Adding cert-manager controller override env to the cert-managaer operator object" )
587+ By ("Adding cert-manager controller override env to the cert-manager operator object" )
588588 env := []corev1.EnvVar {{Name : "FOO" , Value : "BAR" }}
589589 err := addOverrideEnv (certmanageroperatorclient , certmanagerControllerDeployment , env )
590590 Expect (err ).NotTo (HaveOccurred ())
0 commit comments