Merge "[AAI] Make aai log level configurable"
[oom.git] / kubernetes / cds / components / cds-blueprints-processor / values.yaml
index a082c2c..b0812f2 100755 (executable)
 # Global configuration defaults.
 #################################################################
 global:
+  mariadbGalera: &mariadbGalera
+    # flag to enable the DB creation via mariadb-operator
+    useOperator: true
+    #This flag allows NBI to instantiate its own mariadb-galera cluster
+    #When changing it to "true", also set "globalCluster: false"
+    #as the dependency check will not work otherwise (Chart.yaml)
+    localCluster: true
+    globalCluster: false
+    service: mariadb-galera
+    internalPort: 3306
+    nameOverride: mariadb-galera
   # image pull policy
   pullPolicy: Always
   persistence:
@@ -203,24 +214,24 @@ flavor: small
 resources:
   small:
     limits:
-      cpu: 1
-      memory: 1.8Gi
+      cpu: "1"
+      memory: "1.8Gi"
     requests:
-      cpu: 0.5
-      memory: 1.8Gi
+      cpu: "0.5"
+      memory: "1.8Gi"
   large:
     limits:
-      cpu: 2
-      memory: 3.6Gi
+      cpu: "2"
+      memory: "3.6Gi"
     requests:
-      cpu: 1
-      memory: 3.6Gi
+      cpu: "1"
+      memory: "3.6Gi"
   unlimited: {}
 
 readinessCheck:
   wait_for:
-    apps:
-      - cds-db
+    services:
+      - '{{ .Values.global.mariadbGalera.service }}'
 
 #Pods Service Account
 serviceAccount:
@@ -231,3 +242,11 @@ serviceAccount:
 # workflow store flag
 workflow:
   storeEnabled: false
+
+tracing:
+  collector:
+    baseUrl: http://jaeger-collector.istio-system:9411
+  sampling:
+    probability: 1.0 # percentage of requests that are sampled (between 0-1/0%-100%)
+  ignorePatterns:
+    - .*/execution-service/health-check