Initial commit for chronos-umbrella

Change-Id: Ice4173f994e049c5ef333046438b27a1a396e234
diff --git a/chronos-exporter/templates/secret.yaml b/chronos-exporter/templates/secret.yaml
new file mode 100644
index 0000000..be9e3f9
--- /dev/null
+++ b/chronos-exporter/templates/secret.yaml
@@ -0,0 +1,18 @@
+# SPDX-FileCopyrightText: 2021-present Open Networking Foundation <info@opennetworking.org>

+#

+# SPDX-License-Identifier: LicenseRef-ONF-Member-Only-1.0

+

+apiVersion: v1

+kind: Secret

+metadata:

+  name: {{ template "chronos-exporter.fullname" . }}-secret

+  labels:

+     chart: "{{ .Chart.Name }}-{{ .Chart.Version }}"

+     release: "{{ .Release.Name }}"

+     heritage: "{{ .Release.Service }}"

+data:

+  {{ $root := . }}

+  {{ range $path, $bytes := .Files.Glob "files/certs/tls.*" }}

+  {{ base $path }}: '{{ $root.Files.Get $path | b64enc }}'

+  {{ end }}

+type: Opaque