diff options
author | efiacor <fiachra.corcoran@est.tech> | 2022-11-23 12:13:26 +0000 |
---|---|---|
committer | Fiachra Corcoran <fiachra.corcoran@est.tech> | 2023-01-09 08:42:18 +0000 |
commit | 8d3ff807180b3721ce2551842ec963eff2554404 (patch) | |
tree | 1507a9cc5ef146eb509240fa9e3380a262b1d679 /kubernetes/so/components/so-sdc-controller/templates/deployment.yaml | |
parent | e3529a28a1fa8b48b1a8d013be01cfdcb9bb905e (diff) |
[SO-SDC-DIST] Updgrade sdc-controller to kafka native
Update sdc-controller to use new sdc-dist client
Add sdc-controller KafkaUser for SDC topic auth
Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Change-Id: I7969bb79a2b329d1140eacc953b40dd487456bcb
Issue-ID: DMAAP-1815
Diffstat (limited to 'kubernetes/so/components/so-sdc-controller/templates/deployment.yaml')
-rwxr-xr-x | kubernetes/so/components/so-sdc-controller/templates/deployment.yaml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kubernetes/so/components/so-sdc-controller/templates/deployment.yaml b/kubernetes/so/components/so-sdc-controller/templates/deployment.yaml index 55493f7c42..0d1977beff 100755 --- a/kubernetes/so/components/so-sdc-controller/templates/deployment.yaml +++ b/kubernetes/so/components/so-sdc-controller/templates/deployment.yaml @@ -71,6 +71,12 @@ spec: {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "login") | indent 10 }} - name: DB_ADMIN_PASSWORD {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "db-admin-creds" "key" "password") | indent 10 }} + - name: SECURITY_PROTOCOL + value: {{ .Values.config.kafka.securityProtocol }} + - name: SASL_MECHANISM + value: {{ .Values.config.kafka.saslMechanism }} + - name: SASL_JAAS_CONFIG + {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "so-sdc-kafka-secret" "key" "sasl.jaas.config") | indent 10 }} {{ include "so.certificates.env" . | indent 8 | trim }} envFrom: - configMapRef: |