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