All checks were successful
Docker Build / build-and-push-image (push) Successful in 1m8s
15 lines
334 B
YAML
15 lines
334 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "homelab-gateway.fullname" . }}-bots
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "homelab-gateway.labels" . | nindent 4 }}
|
|
data:
|
|
bots.yaml: |
|
|
bots:
|
|
{{- range $slug, $cfg := .Values.bots }}
|
|
{{ $slug }}:
|
|
{{ toYaml $cfg | indent 8 }}
|
|
{{- end }}
|