diff --git a/nextcloud/dev/values.yaml b/nextcloud/dev/values.yaml index 1323de6..b8e097c 100644 --- a/nextcloud/dev/values.yaml +++ b/nextcloud/dev/values.yaml @@ -12,9 +12,10 @@ nextcloud: # Vérifiez la documentation du chart Nextcloud pour les détails exacts : # https://github.com/nextcloud/helm/tree/main/charts/nextcloud - host: nextcloud-dev.example.com - username: admin - password: dev + nextcloud: + host: nextcloud-dev.example.com + username: admin + password: dev persistence: enabled: true diff --git a/nextcloud/rct/values.yaml b/nextcloud/rct/values.yaml index 656270e..893ea09 100644 --- a/nextcloud/rct/values.yaml +++ b/nextcloud/rct/values.yaml @@ -1,13 +1,22 @@ -replicaCount: 1 - -ingress: - enabled: true - +# Toutes les configurations destinées au chart Nextcloud +# doivent être indentées sous la clé 'nextcloud' nextcloud: - host: nextcloud-rct.example.com - username: admin - password: rct + replicaCount: 1 -persistence: - enabled: true - size: 1Gi \ No newline at end of file + ingress: + enabled: true + # Note : Le chart Nextcloud officiel attend souvent + # une structure spécifique pour l'ingress (hosts, path, etc.) + # annotations: + # kubernetes.io/ingress.class: nginx + # Vérifiez la documentation du chart Nextcloud pour les détails exacts : + # https://github.com/nextcloud/helm/tree/main/charts/nextcloud + + nextcloud: + host: nextcloud-rct.example.com + username: admin + password: rct + + persistence: + enabled: true + size: 1Gi \ No newline at end of file