Browse Source

Fixing lints and adding correct image names in eso.go

Signed-off-by: Gustavo Carvalho <gustavo.carvalho@container-solutions.com>
Gustavo Carvalho 4 years ago
parent
commit
0db78819bb
2 changed files with 9 additions and 9 deletions
  1. 7 7
      deploy/charts/external-secrets/values.yaml
  2. 2 2
      e2e/framework/addon/eso.go

+ 7 - 7
deploy/charts/external-secrets/values.yaml

@@ -118,9 +118,9 @@ webhook:
   priorityClassName: ""
   prometheus:
       # -- Specifies whether to expose Service resource for collecting Prometheus metrics
-      enabled: false
-      service:
-        port: 8080
+    enabled: false
+    service:
+      port: 8080
     ## -- Extra environment variables to add to container.
   extraEnv: []
 
@@ -179,9 +179,9 @@ certController:
   priorityClassName: ""
   prometheus:
       # -- Specifies whether to expose Service resource for collecting Prometheus metrics
-      enabled: false
-      service:
-        port: 8080
+    enabled: false
+    service:
+      port: 8080
     ## -- Extra environment variables to add to container.
   extraEnv: []
 
@@ -210,4 +210,4 @@ certController:
   resources: {}
       # requests:
       #   cpu: 10m
-      #   memory: 32Mi
+      #   memory: 32Mi

+ 2 - 2
e2e/framework/addon/eso.go

@@ -37,11 +37,11 @@ func NewESO(mutators ...MutationFunc) *ESO {
 				},
 				{
 					Key:   "webhook.image.repository",
-					Value: os.Getenv("IMAGE_REGISTRY"),
+					Value: os.Getenv("IMAGE_REGISTRY") + "-webhook",
 				},
 				{
 					Key:   "certController.image.repository",
-					Value: os.Getenv("IMAGE_REGISTRY"),
+					Value: os.Getenv("IMAGE_REGISTRY") + "-cert-controller",
 				},
 				{
 					Key:   "webhook.image.tag",