disable nextcloud
This commit is contained in:
6
.nextcloud/prd/Chart.lock
Normal file
6
.nextcloud/prd/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: nextcloud
|
||||
repository: https://nextcloud.github.io/helm/
|
||||
version: 8.6.1
|
||||
digest: sha256:9acd32eca4eccad630cadd46cce6f75fd8e1b663a6325ed703dc24064dace96f
|
||||
generated: "2025-12-28T03:44:00.3388376+01:00"
|
||||
11
.nextcloud/prd/Chart.yaml
Normal file
11
.nextcloud/prd/Chart.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
apiVersion: v2
|
||||
name: nextcloud-wrapper
|
||||
description: Wrapper pour Nextcloud - Environnement PRD
|
||||
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.6.1 # <--- C'est ICI que vous gérez la version du Chart officiel
|
||||
repository: https://nextcloud.github.io/helm/
|
||||
BIN
.nextcloud/prd/charts/nextcloud-8.6.1.tgz
Normal file
BIN
.nextcloud/prd/charts/nextcloud-8.6.1.tgz
Normal file
Binary file not shown.
1
.nextcloud/prd/config.json
Normal file
1
.nextcloud/prd/config.json
Normal file
@@ -0,0 +1 @@
|
||||
{"server": "https://kubernetes.default.svc"}
|
||||
41
.nextcloud/prd/values.yaml
Normal file
41
.nextcloud/prd/values.yaml
Normal file
@@ -0,0 +1,41 @@
|
||||
# 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-prd.example.com
|
||||
|
||||
# Configuration de l'application
|
||||
nextcloud:
|
||||
host: nextcloud-prd.example.com
|
||||
username: admin
|
||||
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:
|
||||
enabled: true
|
||||
size: 2Gi
|
||||
Reference in New Issue
Block a user