update new config
This commit is contained in:
6
helm/nextcloud/rct/Chart.lock
Normal file
6
helm/nextcloud/rct/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: nextcloud
|
||||
repository: https://nextcloud.github.io/helm/
|
||||
version: 8.0.3
|
||||
digest: sha256:7c15086e97cd7409819c38da51a99845d04109acd2e96a46602f2152db559973
|
||||
generated: "2025-12-28T04:19:16.7097941+01:00"
|
||||
11
helm/nextcloud/rct/Chart.yaml
Normal file
11
helm/nextcloud/rct/Chart.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
apiVersion: v2
|
||||
name: nextcloud-wrapper
|
||||
description: Wrapper pour Nextcloud - Environnement RCT
|
||||
type: application
|
||||
version: 1.0.0 # Version de votre wrapper (interne)
|
||||
# appVersion: "27.1.0" # Optionnel : version de Nextcloud installée
|
||||
|
||||
dependencies:
|
||||
- name: nextcloud
|
||||
version: 8.0.3 # <--- C'est ICI que vous gérez la version du Chart officiel
|
||||
repository: https://nextcloud.github.io/helm/
|
||||
BIN
helm/nextcloud/rct/charts/nextcloud-8.0.3.tgz
Normal file
BIN
helm/nextcloud/rct/charts/nextcloud-8.0.3.tgz
Normal file
Binary file not shown.
1
helm/nextcloud/rct/config.json
Normal file
1
helm/nextcloud/rct/config.json
Normal file
@@ -0,0 +1 @@
|
||||
{"server": "https://kubernetes.default.svc"}
|
||||
36
helm/nextcloud/rct/values.yaml
Normal file
36
helm/nextcloud/rct/values.yaml
Normal file
@@ -0,0 +1,36 @@
|
||||
# Toutes les configurations destinées au chart Nextcloud
|
||||
# doivent être indentées sous la clé 'nextcloud'
|
||||
nextcloud:
|
||||
replicaCount: 1
|
||||
# 1. Indispensable pour que Traefik crée la règle de routage
|
||||
# Configuration Réseau / Traefik
|
||||
ingress:
|
||||
enabled: true
|
||||
className: traefik
|
||||
path: /
|
||||
pathType: Prefix
|
||||
hosts:
|
||||
- nextcloud-rct.example.com
|
||||
|
||||
# Configuration de l'application
|
||||
nextcloud:
|
||||
host: nextcloud-rct.example.com
|
||||
username: admin
|
||||
password: rct
|
||||
|
||||
# AJOUTEZ CE BLOC : Autorise Kubernetes à interroger le pod
|
||||
configs:
|
||||
trusted_domains.config.php: |-
|
||||
<?php
|
||||
$CONFIG = array (
|
||||
'trusted_domains' =>
|
||||
array (
|
||||
0 => 'localhost',
|
||||
1 => 'nextcloud-rct.example.com',
|
||||
2 => '127.0.0.1',
|
||||
),
|
||||
);
|
||||
|
||||
persistence:
|
||||
enabled: true
|
||||
size: 1Gi
|
||||
Reference in New Issue
Block a user