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.
19 lines
474 B
YAML
19 lines
474 B
YAML
{{- if .Values.vault.enabled -}}
|
|
apiVersion: secrets.hashicorp.com/v1beta1
|
|
kind: VaultStaticSecret
|
|
metadata:
|
|
name: bots-secrets
|
|
namespace: {{ .Release.Namespace }}
|
|
labels:
|
|
{{- include "telegram-gateway.labels" . | nindent 4 }}
|
|
spec:
|
|
type: kv-v2
|
|
mount: {{ .Values.vault.mount }}
|
|
path: {{ .Values.vault.path }}
|
|
destination:
|
|
name: {{ .Values.secret.name }}
|
|
create: true
|
|
refreshAfter: {{ .Values.vault.refreshAfter }}
|
|
vaultAuthRef: auth
|
|
{{- end }}
|