All checks were successful
Docker Build / build-and-push-image (push) Successful in 44s
Aligns the project name with the public URL (tg.arcodange.fr) and the Arcodange organization conventions. The 'homelab-gateway' name was too generic. Touches: chart name + helpers, image registry path, Go module path, secret/configmap names, deployment mountPath, all docs.
15 lines
336 B
YAML
15 lines
336 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: {{ include "telegram-gateway.fullname" . }}-bots
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "telegram-gateway.labels" . | nindent 4 }}
|
|
data:
|
|
bots.yaml: |
|
|
bots:
|
|
{{- range $slug, $cfg := .Values.bots }}
|
|
{{ $slug }}:
|
|
{{ toYaml $cfg | indent 8 }}
|
|
{{- end }}
|