X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=kubernetes%2Fcds%2Fcomponents%2Fcds-blueprints-processor%2Fvalues.yaml;h=a32afb0db389ac6ab734d4dad2cfa40522123e4f;hb=060bc378e32c2ffba34f890c53cc359eb9ee64d0;hp=42abd1660f5a874ed7c3aed15ba78ed573214134;hpb=555db9c1f910db06341070941b466e6c05827e27;p=oom.git diff --git a/kubernetes/cds/components/cds-blueprints-processor/values.yaml b/kubernetes/cds/components/cds-blueprints-processor/values.yaml index 42abd1660f..a32afb0db3 100755 --- a/kubernetes/cds/components/cds-blueprints-processor/values.yaml +++ b/kubernetes/cds/components/cds-blueprints-processor/values.yaml @@ -18,6 +18,17 @@ # 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: @@ -66,7 +77,7 @@ secrets: # Application configuration defaults. ################################################################# # application image -image: onap/ccsdk-blueprintsprocessor:1.5.1 +image: onap/ccsdk-blueprintsprocessor:1.5.3 pullPolicy: Always # flag to enable debugging - application support required @@ -203,23 +214,33 @@ flavor: small resources: small: limits: - cpu: 999 - memory: 1.8Gi + cpu: "1" + memory: "1.8Gi" requests: - cpu: 0.5 - memory: 1.8Gi + cpu: "0.5" + memory: "1.8Gi" large: limits: - cpu: 999 - memory: 3.6Gi + cpu: "2" + memory: "3.6Gi" requests: - cpu: 1 - memory: 3.6Gi + cpu: "1" + memory: "3.6Gi" unlimited: {} readinessCheck: - wait_for: - - cds-db + wait_for_global_operator: + pods: + - '{{ .Values.global.mariadbGalera.nameOverride }}-0' + wait_for_local_operator: + pods: + - '{{ .Values.config.cdsDB.dbServer }}-0' + wait_for_global: + apps: + - '{{ .Values.global.mariadbGalera.nameOverride }}' + wait_for_local: + apps: + - '{{ .Values.config.cdsDB.dbServer }}' #Pods Service Account serviceAccount: @@ -230,3 +251,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