diff options
author | 2024-09-04 14:14:29 +0530 | |
---|---|---|
committer | 2024-09-04 14:14:29 +0530 | |
commit | fca08c93306e159cac640937826e69e3ccff32fd (patch) | |
tree | 748ac6de6555527ffd76eab6222a45a8ed5e17fb /kubernetes/cps/components/cps-core/resources | |
parent | 4c0b307d0dcd4220ccf84f7d002c4cf436e4984d (diff) |
[CPS][COMMON] Sync newly added cps configurations
Update CPS helm charts for newly added configurations.
Issue-ID: OOM-3313
Change-Id: I56c34400dc73c71b936a51260efd240904bdaeae
Signed-off-by: rajesh.kumar <rk00747546@techmahindra.com>
Diffstat (limited to 'kubernetes/cps/components/cps-core/resources')
-rw-r--r-- | kubernetes/cps/components/cps-core/resources/config/application-helm.yml | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/kubernetes/cps/components/cps-core/resources/config/application-helm.yml b/kubernetes/cps/components/cps-core/resources/config/application-helm.yml index 980be74367..e9d4df5fe3 100644 --- a/kubernetes/cps/components/cps-core/resources/config/application-helm.yml +++ b/kubernetes/cps/components/cps-core/resources/config/application-helm.yml @@ -3,6 +3,7 @@ # Modifications Copyright (C) 2020 Bell Canada. # Modifications Copyright (C) 2021-2023 Nordix Foundation. # Modifications Copyright (C) 2021 Orange +# Modifications Copyright (C) 2024 TechMahindra Ltd. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -43,6 +44,12 @@ security: username: ${CPS_USERNAME} password: ${CPS_PASSWORD} +# Actuator +management: + tracing: + propagation: + produce: {{ .Values.management.tracing.propagation.produce }} + logging: level: org: @@ -71,12 +78,24 @@ spring.kafka.properties.sasl.jaas.config: ${SASL_JAAS_CONFIG} {{ toYaml .Values.config.additional | nindent 2 }} {{- end }} +# cps tracing +{{- if .Values.tracing }} + {{ toYaml .Values.tracing | nindent 2 }} +{{- end }} + # Custom Hazelcast config. hazelcast: + cluster-name: {{ .Values.hazelcast.config.clusterName }} mode: kubernetes: enabled: {{ .Values.hazelcast.config.kubernetesDiscovery }} service-name: {{ .Values.hazelcast.config.kubernetesServiceName }} +otel: + exporter: + otlp: + traces: + protocol: {{ .Values.otel.config.otlp.traces.protocol }} + # Last empty line is required otherwise the last property will be missing from application.yml file in the pod. |