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 }}