phone-region als value file and deletet from parameters

This commit is contained in:
titver968
2025-07-04 12:54:04 +02:00
parent 50218bf53c
commit e8a4d72f9b
2 changed files with 11 additions and 6 deletions

View File

@@ -10,6 +10,8 @@ spec:
repoURL: 'https://nextcloud.github.io/helm/' repoURL: 'https://nextcloud.github.io/helm/'
targetRevision: 6.*.* targetRevision: 6.*.*
helm: helm:
valueFiles:
- values/nextcloud-values.yaml
parameters: parameters:
- name: image.repository - name: image.repository
value: 'nextcloud' value: 'nextcloud'
@@ -82,12 +84,6 @@ spec:
value: '192.168.4.125' value: '192.168.4.125'
- name: nextcloud.mail.smtp.port - name: nextcloud.mail.smtp.port
value: '25' value: '25'
- name: nextcloud.configs.phone-region\.php
value: |
<?php
$CONFIG = array (
'default_phone_region' => 'DE',
);
chart: nextcloud chart: nextcloud
destination: destination:
server: 'https://kubernetes.default.svc' server: 'https://kubernetes.default.svc'

View File

@@ -0,0 +1,9 @@
helm:
values: |
nextcloud:
configs:
phone-region.php: |-
<?php
$CONFIG = array (
'default_phone_region' => 'DE',
);