From 76793993d990beeaff6b1f9d237fc95f40b17ab8 Mon Sep 17 00:00:00 2001 From: Konstantin Grachev Date: Wed, 1 Mar 2023 18:52:10 +0300 Subject: [PATCH] feat(starter): add configmap and secret --- starter/templates/configmap.yaml | 4 ++++ starter/templates/secret.yaml | 4 ++++ 2 files changed, 8 insertions(+) create mode 100644 starter/templates/configmap.yaml create mode 100644 starter/templates/secret.yaml diff --git a/starter/templates/configmap.yaml b/starter/templates/configmap.yaml new file mode 100644 index 0000000..bfff2ff --- /dev/null +++ b/starter/templates/configmap.yaml @@ -0,0 +1,4 @@ +{{- include "common.configMap" (list . ".configMap") }} +{{- define ".configMap" -}} +data: {} +{{- end }} diff --git a/starter/templates/secret.yaml b/starter/templates/secret.yaml new file mode 100644 index 0000000..5a0949d --- /dev/null +++ b/starter/templates/secret.yaml @@ -0,0 +1,4 @@ +{{- include "common.secret" (list . ".secret") }} +{{- define ".secret" -}} +data: {} +{{- end }}