summaryrefslogtreecommitdiffstats
path: root/kubernetes/onap/templates/secrets.yaml
diff options
context:
space:
mode:
authorMandeep Khinda <Mandeep.Khinda@amdocs.com>2018-03-22 17:08:13 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-22 17:08:13 +0000
commitd2b495234d54612e1cddcd709ffcf3620275fddf (patch)
tree3ac57793a52721f0d8d6395b410bb323b25ae3be /kubernetes/onap/templates/secrets.yaml
parent2670b0ef2262f25176ed2f0e08867c3807ffdfa6 (diff)
parent98dde550955c6f4c24d5c5ebab82cac082769bba (diff)
Merge "Move deployment-specific templates to parent chart"
Diffstat (limited to 'kubernetes/onap/templates/secrets.yaml')
-rw-r--r--kubernetes/onap/templates/secrets.yaml27
1 files changed, 27 insertions, 0 deletions
diff --git a/kubernetes/onap/templates/secrets.yaml b/kubernetes/onap/templates/secrets.yaml
new file mode 100644
index 0000000000..2345be1972
--- /dev/null
+++ b/kubernetes/onap/templates/secrets.yaml
@@ -0,0 +1,27 @@
+# Copyright © 2017 Amdocs, Bell Canada
+#
+# 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.
+
+apiVersion: v1
+kind: Secret
+metadata:
+ name: {{ include "common.namespace" . }}-docker-registry-key
+ namespace: {{ include "common.namespace" . }}
+ labels:
+ app: {{ include "common.name" . }}
+ chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
+ release: {{ .Release.Name }}
+ heritage: {{ .Release.Service }}
+data:
+ .dockercfg: {{ .Values.global.repositorySecret | default .Values.repositorySecret }}
+type: kubernetes.io/dockercfg \ No newline at end of file