Merge "[AAI] Make aai log level configurable"
[oom.git] / kubernetes / cds / components / cds-command-executor / values.yaml
index 658a899..e517d8b 100755 (executable)
@@ -32,7 +32,7 @@ global:
 # Application configuration defaults.
 #################################################################
 # application image
-image: onap/ccsdk-commandexecutor:1.2.0
+image: onap/ccsdk-commandexecutor:1.5.3
 pullPolicy: Always
 
 # application configuration
@@ -62,14 +62,13 @@ readiness:
 
 service:
   type: ClusterIP
-  grpc:
-    portName: command-executor-grpc
-    internalPort: 50051
-    externalPort: 50051
-  metrics:
-    portName: command-executor-metrics
-    internalPort: 10005
-    externalPort: 10005
+  name: cds-command-executor
+  internalPort: 50051
+  ports:
+    - name: grpc
+      port: 50051
+    - name: &metricsPortname tcp-metrics
+      port: &metricsPort 10005
 
 persistence:
   enabled: false
@@ -82,18 +81,18 @@ ingress:
 resources:
   small:
     limits:
-      cpu: 2
-      memory: 4Gi
+      cpu: "1"
+      memory: "200Mi"
     requests:
-      cpu: 1
-      memory: 1Gi
+      cpu: "0.5"
+      memory: "200Mi"
   large:
     limits:
-      cpu: 4
-      memory: 8Gi
+      cpu: "2"
+      memory: "400Mi"
     requests:
-      cpu: 2
-      memory: 4Gi
+      cpu: "1"
+      memory: "400Mi"
   unlimited: {}
 
 #Pods Service Account
@@ -105,7 +104,8 @@ serviceAccount:
 metrics:
   serviceMonitor:
     enabled: false
-    port: command-executor-metrics
+    port: *metricsPortname
+    internalPort: *metricsPort
     path: /actuator/prometheus
     basicAuth:
       enabled: false