diff options
author | Andreas Geissler <andreas-geissler@telekom.de> | 2024-09-10 11:36:08 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2024-09-10 11:36:08 +0000 |
commit | 6de7e5a6e6f8b06ee420b5926efd3d53c639e1b1 (patch) | |
tree | b46681fab2e0984a87c3d2e2c384df79ca8ccf8e /kubernetes/cps/components/cps-core/resources/config/application-helm.yml | |
parent | 01f83d9602683b6b96c0e76fcb6b437b8bc87c16 (diff) | |
parent | fca08c93306e159cac640937826e69e3ccff32fd (diff) |
Merge "[CPS][COMMON] Sync newly added cps configurations"
Diffstat (limited to 'kubernetes/cps/components/cps-core/resources/config/application-helm.yml')
-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. |