Merge "[COMMON] Fix Kyverno policy violations in common/mongodb"
[oom.git] / kubernetes / sdc / components / sdc-helm-validator / values.yaml
index 9c0d906..3470770 100644 (file)
@@ -18,7 +18,7 @@
 global:
   pullPolicy: Always
 
-image: onap/org.onap.sdc.sdc-helm-validator:1.2.0
+image: onap/sdc-helm-validator:1.3.1
 containerPort: &svc_port 8080
 
 config:
@@ -30,29 +30,44 @@ service:
     - name: &port http
       port: *svc_port
 
+serviceMesh:
+  authorizationPolicy:
+    authorizedPrincipals:
+      - serviceAccount: sdc-be-read
+
 liveness:
-  initialDelaySeconds: 30
-  periodSeconds: 30
+  initialDelaySeconds: 1
+  periodSeconds: 10
   path: /actuator/health
+  successThreshold: 1
+  failureThreshold: 3
   port: *port
   # necessary to disable liveness probe when setting breakpoints
   # in debugger so K8s doesn't restart unresponsive container
   enabled: true
 
+startup:
+  initialDelaySeconds: 10
+  periodSeconds: 10
+  path: /actuator/health
+  successThreshold: 1
+  failureThreshold: 12
+  port: *port
+
 flavor: small
 resources:
   small:
     limits:
-      cpu: 1
-      memory: 256Mi
+      cpu: "1"
+      memory: "500Mi"
     requests:
-      cpu: 1
-      memory: 256Mi
+      cpu: "0.5"
+      memory: "500Mi"
   large:
     limits:
-      cpu: 2
-      memory: 1Gi
+      cpu: "2"
+      memory: "1Gi"
     requests:
-      cpu: 1
-      memory: 256Mi
+      cpu: "1"
+      memory: "1Gi"
   unlimited: {}