update new config
This commit is contained in:
6
helm/headlamp/dev/Chart.lock
Normal file
6
helm/headlamp/dev/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: headlamp
|
||||
repository: oci://harbor.example.com/charts
|
||||
version: 0.38.0
|
||||
digest: sha256:245828591da65038e4ee0697c3e37ee2ac920e9edeff458f9bb9ce9726162ea5
|
||||
generated: "2025-12-30T18:38:14.4041743+01:00"
|
||||
11
helm/headlamp/dev/Chart.yaml
Normal file
11
helm/headlamp/dev/Chart.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
apiVersion: v2
|
||||
name: headlamp-wrapper
|
||||
description: Wrapper pour headlamp - Environnement DEV
|
||||
type: application
|
||||
version: 1.0.0
|
||||
|
||||
dependencies:
|
||||
- name: headlamp
|
||||
version: 0.38.0 # Assurez-vous que cette version correspond à celle poussée sur Harbor
|
||||
# Utilisation de votre registre Harbor interne (OCI)
|
||||
repository: "oci://harbor.gkdomaine.local/charts"
|
||||
BIN
helm/headlamp/dev/charts/headlamp-0.38.0.tgz
Normal file
BIN
helm/headlamp/dev/charts/headlamp-0.38.0.tgz
Normal file
Binary file not shown.
17
helm/headlamp/dev/values.yaml
Normal file
17
helm/headlamp/dev/values.yaml
Normal file
@@ -0,0 +1,17 @@
|
||||
# Toutes les configurations destinées au chart Nextcloud
|
||||
# doivent être indentées sous la clé 'nextcloud'
|
||||
headlamp:
|
||||
replicaCount: 1
|
||||
|
||||
image:
|
||||
# On remplace ghcr.io par votre Harbor
|
||||
registry: harbor.gkdomaine.local
|
||||
# On remplace le chemin d'origine par votre projet 'images'
|
||||
repository: images/headlamp
|
||||
# On précise le tag que vous avez poussé avec le script
|
||||
tag: "v0.38.0"
|
||||
pullPolicy: IfNotPresent
|
||||
|
||||
# Si votre projet Harbor 'images' est en PRIVÉ,
|
||||
# vous devrez créer un secret Kubernetes et le renseigner ici :
|
||||
imagePullSecrets: []
|
||||
6
helm/nextcloud/dev/Chart.lock
Normal file
6
helm/nextcloud/dev/Chart.lock
Normal file
@@ -0,0 +1,6 @@
|
||||
dependencies:
|
||||
- name: nextcloud
|
||||
repository: https://nextcloud.github.io/helm/
|
||||
version: 8.7.0
|
||||
digest: sha256:a6760eb06b4b5afb86459e5d2c9abc394b67bab985d391c1a0a7778b27d937e6
|
||||
generated: "2025-12-28T03:43:31.0543605+01:00"
|
||||
11
helm/nextcloud/dev/Chart.yaml
Normal file
11
helm/nextcloud/dev/Chart.yaml
Normal file
@@ -0,0 +1,11 @@
|
||||
apiVersion: v2
|
||||
name: nextcloud-wrapper
|
||||
description: Wrapper pour Nextcloud - Environnement DEV
|
||||
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.7.0 # <--- C'est ICI que vous gérez la version du Chart officiel
|
||||
repository: https://nextcloud.github.io/helm/
|
||||
BIN
helm/nextcloud/dev/charts/nextcloud-8.7.0.tgz
Normal file
BIN
helm/nextcloud/dev/charts/nextcloud-8.7.0.tgz
Normal file
Binary file not shown.
5
helm/nextcloud/dev/config.json
Normal file
5
helm/nextcloud/dev/config.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"name": "cluster-dev",
|
||||
"server": "https://10.78.106.1:6443"
|
||||
}
|
||||
|
||||
36
helm/nextcloud/dev/values.yaml
Normal file
36
helm/nextcloud/dev/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-dev.example.com
|
||||
|
||||
# Configuration de l'application
|
||||
nextcloud:
|
||||
host: nextcloud-dev.example.com
|
||||
username: admin
|
||||
password: dev
|
||||
|
||||
# AJOUTEZ CE BLOC : Autorise Kubernetes à interroger le pod
|
||||
configs:
|
||||
trusted_domains.config.php: |-
|
||||
<?php
|
||||
$CONFIG = array (
|
||||
'trusted_domains' =>
|
||||
array (
|
||||
0 => 'localhost',
|
||||
1 => 'nextcloud-dev.example.com',
|
||||
2 => '127.0.0.1',
|
||||
),
|
||||
);
|
||||
|
||||
persistence:
|
||||
enabled: true
|
||||
size: 1Gi
|
||||
6
helm/nextcloud/prd/Chart.lock
Normal file
6
helm/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
helm/nextcloud/prd/Chart.yaml
Normal file
11
helm/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
helm/nextcloud/prd/charts/nextcloud-8.6.1.tgz
Normal file
BIN
helm/nextcloud/prd/charts/nextcloud-8.6.1.tgz
Normal file
Binary file not shown.
1
helm/nextcloud/prd/config.json
Normal file
1
helm/nextcloud/prd/config.json
Normal file
@@ -0,0 +1 @@
|
||||
{"server": "https://kubernetes.default.svc"}
|
||||
41
helm/nextcloud/prd/values.yaml
Normal file
41
helm/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
|
||||
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