summaryrefslogtreecommitdiffstats
path: root/kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml
diff options
context:
space:
mode:
authorUbuntu <dgl@research.att.com>2019-11-14 23:16:17 +0000
committerSylvain Desbureaux <sylvain.desbureaux@orange.com>2019-12-10 15:11:38 +0100
commit3d5d18079408598973f0d5a0b6fd3a2aef1ffec3 (patch)
tree4f365f0c24f05a27f8b5040d69118a034693a761 /kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml
parent672e49683b77bfbc8bc1cbc14c9180a4575eedc7 (diff)
Add cert dist for DMaaP BC
Issue-ID: DMAAP-1321 Signed-off-by: Ubuntu <dgl@research.att.com> Change-Id: I55a6d41c1955d3ea1bcc0799b5121212af102471
Diffstat (limited to 'kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml')
-rw-r--r--kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml30
1 files changed, 30 insertions, 0 deletions
diff --git a/kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml b/kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml
new file mode 100644
index 0000000000..ed5ba14dda
--- /dev/null
+++ b/kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml
@@ -0,0 +1,30 @@
+
+# Modifications Copyright © 2019 Orange
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+{{- if .Values.global.aafEnabled }}
+apiVersion: v1
+kind: Secret
+metadata:
+ name: {{ include "common.fullname" . }}-secret
+ namespace: {{ include "common.namespace" . }}
+ labels:
+ app: {{ include "common.name" . }}
+ chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
+ release: {{ .Release.Name }}
+ heritage: {{ .Release.Service }}
+type: Opaque
+data:
+ aaf-deploy-password: {{ index .Values.aafConfig.aafDeployPass | b64enc | quote }}
+{{- end }}