From 3d5d18079408598973f0d5a0b6fd3a2aef1ffec3 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Thu, 14 Nov 2019 23:16:17 +0000 Subject: Add cert dist for DMaaP BC Issue-ID: DMAAP-1321 Signed-off-by: Ubuntu Change-Id: I55a6d41c1955d3ea1bcc0799b5121212af102471 --- .../components/dmaap-bc/templates/secrets.yaml | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml (limited to 'kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml') 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 }} -- cgit 1.2.3-korg