14 lines
273 B
YAML
14 lines
273 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ template "github-release-bot.fullname" . }}-config
|
|
labels:
|
|
{{- include "github-release-bot.labels" . | nindent 4 }}
|
|
data:
|
|
config.yaml: |
|
|
{{- if .Values.config }}
|
|
{{- .Values.config | nindent 4 }}
|
|
{{- end }}
|
|
|
|
|