diff options
author | efiacor <fiachra.corcoran@est.tech> | 2022-03-04 15:01:30 +0000 |
---|---|---|
committer | Fiachra Corcoran <fiachra.corcoran@est.tech> | 2022-04-23 10:39:48 +0000 |
commit | ecbae13f26a528860fa2b066a4ecfc5081bfc8aa (patch) | |
tree | b1993846af3aaa8d6f99a99297752ffa0115a085 /kubernetes/cds/components/cds-blueprints-processor/templates/deployment.yaml | |
parent | 368aced4fe43867012206eaad4560d11b1b86672 (diff) |
[CDS-STRIMZI] Migrate cds to use strimzi kafka
Move cds to use strimzi kafka
Signed-off-by: efiacor <fiachra.corcoran@est.tech>
Change-Id: I89a64399d677584829e6408c8f72e9b5ad41cabd
Issue-ID: DMAAP-1706
Diffstat (limited to 'kubernetes/cds/components/cds-blueprints-processor/templates/deployment.yaml')
-rwxr-xr-x | kubernetes/cds/components/cds-blueprints-processor/templates/deployment.yaml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/kubernetes/cds/components/cds-blueprints-processor/templates/deployment.yaml b/kubernetes/cds/components/cds-blueprints-processor/templates/deployment.yaml index d92f09a4c8..d68e900222 100755 --- a/kubernetes/cds/components/cds-blueprints-processor/templates/deployment.yaml +++ b/kubernetes/cds/components/cds-blueprints-processor/templates/deployment.yaml @@ -1,6 +1,7 @@ {{/* # Copyright (c) 2019 IBM, Bell Canada # Copyright (c) 2020 Samsung Electronics +# 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. @@ -78,10 +79,6 @@ spec: args: - --container-name - cds-db - {{- if .Values.dmaapEnabled }} - - --container-name - - message-router - {{ end }} env: - name: NAMESPACE valueFrom: @@ -121,6 +118,10 @@ spec: fieldPath: metadata.name - name: CLUSTER_CONFIG_FILE value: {{ .Values.config.appConfigDir }}/hazelcast.yaml + {{ if .Values.useStrimziKafka }} + - name: JAAS_PASS + value: {{- include "common.secret.envFromSecretFast" (dict "global" . "uid" "cds-kafka-secret" "key" "password") | indent 12 }} + {{ end }} ports: - containerPort: {{ .Values.service.http.internalPort }} - containerPort: {{ .Values.service.grpc.internalPort }} |