update rct

This commit is contained in:
2025-12-28 04:54:45 +01:00
parent a94b13a8ad
commit 639e1d5e44

View File

@@ -2,20 +2,39 @@
# doivent être indentées sous la clé 'nextcloud' # doivent être indentées sous la clé 'nextcloud'
nextcloud: nextcloud:
replicaCount: 1 replicaCount: 1
# 1. Indispensable pour que Traefik crée la règle de routage
# Configuration Réseau / Traefik
ingress: ingress:
enabled: true enabled: true
# Note : Le chart Nextcloud officiel attend souvent className: traefik
# une structure spécifique pour l'ingress (hosts, path, etc.) path: /
# annotations: pathType: Prefix
# kubernetes.io/ingress.class: nginx hosts:
# Vérifiez la documentation du chart Nextcloud pour les détails exacts : - nextcloud-prd.example.com
# https://github.com/nextcloud/helm/tree/main/charts/nextcloud
# Configuration de l'application
nextcloud: nextcloud:
host: nextcloud-rct.example.com host: nextcloud-prd.example.com
username: admin username: admin
password: rct password: prd
# AJOUTEZ CE BLOC : Autorise Kubernetes à interroger le pod
configs:
trusted_domains.config.php: |-
<?php
$CONFIG = array (
'trusted_domains' =>
array (
0 => 'localhost',
1 => 'nextcloud-prd.example.com',
2 => '127.0.0.1',
),
);
# # nextcloud:
# host: nextcloud-prd.example.com
# username: admin
# password: prd
persistence: persistence:
enabled: true enabled: true