diff options
author | Borislav Glozman <Borislav.Glozman@amdocs.com> | 2019-12-11 14:15:50 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2019-12-11 14:15:50 +0000 |
commit | cd4bc8e4282d82b91fa930567682eb5e0f0290a8 (patch) | |
tree | a2a5ce23289c40fc753dbea1421085c588f653cc /kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml | |
parent | 6803a3e1883d627eb72a14c4a51f6cee1aaf5656 (diff) | |
parent | 3d5d18079408598973f0d5a0b6fd3a2aef1ffec3 (diff) |
Merge "Add cert dist for DMaaP BC"
Diffstat (limited to 'kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml')
-rw-r--r-- | kubernetes/dmaap/components/dmaap-bc/templates/secrets.yaml | 30 |
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 }} |