diff --git a/nextcloud/dev/values.yaml b/nextcloud/dev/values.yaml index 12734ac..1323de6 100644 --- a/nextcloud/dev/values.yaml +++ b/nextcloud/dev/values.yaml @@ -1,13 +1,21 @@ -replicaCount: 1 - -ingress: - enabled: true - +# Toutes les configurations destinées au chart Nextcloud +# doivent être indentées sous la clé 'nextcloud' nextcloud: + replicaCount: 1 + + 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 + host: nextcloud-dev.example.com username: admin password: dev -persistence: - enabled: true - size: 1Gi \ No newline at end of file + persistence: + enabled: true + size: 1Gi \ No newline at end of file diff --git a/nextcloud/prd/values.yaml b/nextcloud/prd/values.yaml index 466feec..1264f68 100644 --- a/nextcloud/prd/values.yaml +++ b/nextcloud/prd/values.yaml @@ -1,14 +1,14 @@ # Toutes les configurations destinées au chart Nextcloud # doivent être indentées sous la clé 'nextcloud' nextcloud: - replicaCount: 2 + replicaCount: 1 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 + # 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