diff options
author | 2020-03-02 14:35:56 +0000 | |
---|---|---|
committer | 2020-03-02 14:35:56 +0000 | |
commit | b1b0830acf662d9f2debacc416fbd5f11aa74d72 (patch) | |
tree | 4a6cf8aaee427df2afb90825550711e0e4f2b913 /kubernetes/sdnc/charts/sdnc-portal/templates/secrets.yaml | |
parent | b61a71b57b1822ca4a1611e7ff977bb8a0ef3c53 (diff) | |
parent | 71c809867dccfe45eddd9ae345d50b4956bafd6e (diff) |
Merge "[SDNC] Use common secret template in sdnc-portal"
Diffstat (limited to 'kubernetes/sdnc/charts/sdnc-portal/templates/secrets.yaml')
-rw-r--r-- | kubernetes/sdnc/charts/sdnc-portal/templates/secrets.yaml | 28 |
1 files changed, 15 insertions, 13 deletions
diff --git a/kubernetes/sdnc/charts/sdnc-portal/templates/secrets.yaml b/kubernetes/sdnc/charts/sdnc-portal/templates/secrets.yaml index 239f734276..dee311c336 100644 --- a/kubernetes/sdnc/charts/sdnc-portal/templates/secrets.yaml +++ b/kubernetes/sdnc/charts/sdnc-portal/templates/secrets.yaml @@ -1,13 +1,15 @@ -apiVersion: v1 -kind: Secret -metadata: - name: {{ include "common.fullname" . }} - namespace: {{ include "common.namespace" . }} - labels: - app: {{ include "common.fullname" . }} - chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }} - release: {{ include "common.release" . }} - heritage: {{ .Release.Service }} -type: Opaque -data: - db-root-password: {{ .Values.config.dbRootPassword | b64enc | quote }} +# Copyright © 2020 Samsung Electronics +# +# 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. + +{{ include "common.secret" . }} |