aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/cds/components/cds-sdc-listener/templates/deployment.yaml
diff options
context:
space:
mode:
authordavid.mcweeney <david.mcweeney@est.tech>2022-11-23 14:50:45 +0000
committerFiachra Corcoran <fiachra.corcoran@est.tech>2022-12-02 10:04:40 +0000
commitdd4398c6e3a76a23ce52f31689e6dafde4cad4e9 (patch)
tree4278d388d0797e496f65d7fb754fc7f6f3bd3408 /kubernetes/cds/components/cds-sdc-listener/templates/deployment.yaml
parente0259590627cd9e7925b6912ac2203091dbb54bf (diff)
[CDS-SDC-DIST] Upgrade cds to kafka native
Upgrading cds to use Kafka Native Adding a CDS Kafka User for topic Auth Signed-off-by: david.mcweeney <david.mcweeney@est.tech> Change-Id: If2116a7bf0618c0c2bc42473dccb248cd11ebf92 Issue-ID: DMAAP-1815
Diffstat (limited to 'kubernetes/cds/components/cds-sdc-listener/templates/deployment.yaml')
-rw-r--r--kubernetes/cds/components/cds-sdc-listener/templates/deployment.yaml9
1 files changed, 7 insertions, 2 deletions
diff --git a/kubernetes/cds/components/cds-sdc-listener/templates/deployment.yaml b/kubernetes/cds/components/cds-sdc-listener/templates/deployment.yaml
index 3a6d76165b..d01e3b0af5 100644
--- a/kubernetes/cds/components/cds-sdc-listener/templates/deployment.yaml
+++ b/kubernetes/cds/components/cds-sdc-listener/templates/deployment.yaml
@@ -1,5 +1,6 @@
{{/*
# Copyright (c) 2019 Bell Canada
+# Modification Copyright © 2022 Nordix Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -42,8 +43,6 @@ spec:
- --container-name
- sdc-be
- --container-name
- - message-router
- - --container-name
- cds-blueprints-processor
env:
- name: NAMESPACE
@@ -61,6 +60,12 @@ spec:
env:
- name: APP_CONFIG_HOME
value: {{ .Values.config.appConfigDir }}
+ - name: SECURITY_PROTOCOL
+ value: {{ .Values.config.kafka.securityProtocol }}
+ - name: SASL_MECHANISM
+ value: {{ .Values.config.kafka.saslMechanism }}
+ - name: SASL_JAAS_CONFIG
+ value: {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cds-sdc-kafka-secret" "key" "sasl.jaas.config") | indent 12 }}
ports:
- containerPort: {{ .Values.service.http.internalPort }}
name: {{ .Values.service.http.portName }}