This commit is contained in:
2026-01-12 05:13:34 +01:00
parent 0ecd51bd02
commit 976fa7cbf6
3 changed files with 11 additions and 15 deletions

View File

@@ -4,19 +4,11 @@
"repository": "https://git.gkdomaine.fr/kubernetes/argocd.git", "repository": "https://git.gkdomaine.fr/kubernetes/argocd.git",
"targetRevision": "main", "targetRevision": "main",
"helmPath": "helm", "helmPath": "helm",
"harbor": {
"repository": "harbor.gkdomaine.local"
},
"traefik": { "traefik": {
"url": "traefik.dev.gkdomaine.local" "url": "traefik.dev.gkdomaine.local"
}, },
"metallb": {
"ipAddressPool": "10.78.106.240-10.78.106.245"
},
"homarr": { "homarr": {
"url": "homarr.dev.gkdomaine.local" "url": "homarr.dev.gkdomaine.local"
} }

View File

@@ -5,7 +5,7 @@ metadata:
namespace: {{ .Release.Namespace }} namespace: {{ .Release.Namespace }}
spec: spec:
addresses: addresses:
- {{ .Values.metallb.ipAddressPool }} - {{ .Values.ipAddressPool | quote }}
--- ---
apiVersion: metallb.io/v1beta1 apiVersion: metallb.io/v1beta1
kind: L2Advertisement kind: L2Advertisement

View File

@@ -1,20 +1,24 @@
# Toutes les configurations destinées au chart Nextcloud # Configuration pour le chart wrapper MetalLB
# doivent être indentées sous la clé 'nextcloud' # Les valeurs doivent être sous la clé 'metallb' pour être passées au chart dépendant
metallb: metallb:
controller: controller:
enabled: true enabled: true
image: image:
repository: "{{ .Values.harbor.repository }}/images/controller" repository: harbor.gkdomaine.local/images/controller
tag: v0.15.3 tag: v0.15.3
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
speaker: speaker:
enabled: true enabled: true
image: image:
repository: "{{ .Values.harbor.repository }}/images/speaker" repository: harbor.gkdomaine.local/images/speaker
tag: v0.15.3 tag: v0.15.3
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
frr: frr:
enabled: true enabled: true
image: image:
repository: "{{ .Values.harbor.repository }}/images/frr" repository: harbor.gkdomaine.local/images/frr
tag: 10.4.1 tag: 10.4.1
# Configuration spécifique au wrapper (non passée au chart metallb)
# Pool d'adresses IP pour MetalLB
ipAddressPool: "10.78.106.240-10.78.106.245"