summaryrefslogtreecommitdiffstats
path: root/kubernetes/cli/templates/secrets.yaml
diff options
context:
space:
mode:
authorjitendra sharma <jitendra.sharma1@huawei.com>2020-04-16 11:57:38 +0530
committerKanagaraj Manickam <kanagaraj.manickam@huawei.com>2020-04-16 22:11:34 +0530
commit948ee22afd4edc1a252902b5121c80eb43823e4c (patch)
tree02f9692f7d06b994289658b9bb174e2e96043137 /kubernetes/cli/templates/secrets.yaml
parentfed211213a75e800e1e9a9cb427e4315d6d7db5a (diff)
Add HTTPS ceritificate in CLI OOM charts
Issue-ID: CLI-265 Signed-off-by: Kanagaraj Manickam <kanagaraj.manickam@huawei.com> Change-Id: I4dc6cf5c9f7e8ec913491ea8580f414ab5ca199f
Diffstat (limited to 'kubernetes/cli/templates/secrets.yaml')
-rw-r--r--kubernetes/cli/templates/secrets.yaml29
1 files changed, 29 insertions, 0 deletions
diff --git a/kubernetes/cli/templates/secrets.yaml b/kubernetes/cli/templates/secrets.yaml
new file mode 100644
index 0000000000..ab7fb6673a
--- /dev/null
+++ b/kubernetes/cli/templates/secrets.yaml
@@ -0,0 +1,29 @@
+# Copyright 2020 Huawei Technologies Co., Ltd.
+#
+# 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: ocomp-pem
+ namespace: {{ include "common.namespace" . }}
+ labels:
+ app: {{ include "common.name" . }}
+ chart: {{ .Chart.Name }}-{{ .Chart.Version | replace "+" "_" }}
+ release: {{ include "common.release" . }}
+ heritage: {{ .Release.Service }}
+type: Opaque
+data:
+ ocomp.pem:
+{{ tpl (.Files.Glob "resources/certificates/ocomp.pem").AsSecrets . | indent 2 }}
+