feat: simplify starter
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-03-02 23:21:08 +03:00
parent bcf9648dae
commit 460c4b6c5c
25 changed files with 185 additions and 1414 deletions

View File

@ -1,4 +1,12 @@
{{- include "common.configMap" (list . "<CHARTNAME>.configMap") }}
{{- define "<CHARTNAME>.configMap" -}}
data: {}
{{- if not .Values.existingConfigmap }}
apiVersion: v1
kind: ConfigMap
metadata:
name: {{ include "common.fullname" . }}
labels:
{{- include "common.labels" . | nindent 4 }}
data:
{{- if .Values.config.debug }}
DEBUG: true
{{- end }}
{{- end }}