Merge "[AAI] Make aai log level configurable"
[oom.git] / kubernetes / vfc / components / vfc-vnfmgr / values.yaml
index f8a5b28..31b5a66 100644 (file)
@@ -20,6 +20,8 @@ global:
   config:
     ssl_enabled: false
   mariadbGalera:
+    # flag to enable the DB creation via mariadb-operator
+    useOperator: true
     localCluster: false
     service: mariadb-galera
     internalPort: 3306
@@ -78,7 +80,7 @@ readiness:
 service:
   type: ClusterIP
   name: vfc-vnfmgr
-  portName: vfc-vnfmgr
+  portName: http
   externalPort: 8803
   internalPort: 8803
 #  nodePort: 30803
@@ -90,16 +92,21 @@ ingress:
 resources:
   small:
     limits:
-      cpu: 200m
-      memory: 500Mi
+      cpu: "200m"
+      memory: "500Mi"
     requests:
-      cpu: 100m
-      memory: 250Mi
+      cpu: "100m"
+      memory: "200Mi"
   large:
     limits:
-      cpu: 400m
-      memory: 1000Mi
+      cpu: "400m"
+      memory: "1Gi"
     requests:
-      cpu: 200m
-      memory: 500Mi
+      cpu: "200m"
+      memory: "500Mi"
   unlimited: {}
+
+# Log configuration
+log:
+  path: /var/log/onap
+logConfigMapNamePrefix: '{{ include "common.fullname" . }}'