gitea helm update

This commit is contained in:
Philip Haupt
2025-09-03 13:43:59 +02:00
parent 29aeb8def1
commit 2a7d5a52c5
3 changed files with 32 additions and 18 deletions

View File

@@ -51,7 +51,7 @@ image:
registry: "docker.gitea.com"
repository: gitea
# Overrides the image tag whose default is the chart appVersion.
tag: "1.24.5"
tag: ""
digest: ""
pullPolicy: IfNotPresent
rootless: true
@@ -173,10 +173,10 @@ ingress:
- host: git.borninpain.de
paths:
- path: /
tls:
- secretName: chart-example-tls
hosts:
- borninpain.de
tls: []
# - secretName: chart-example-tls
# hosts:
# - git.example.com
## @section deployment
#
@@ -280,7 +280,19 @@ persistence:
extraContainers: []
# - name: sidecar-bob
# image: busybox
# command: [/bin/sh, -c, 'echo "Hello world"; sleep 86400']
# command: [/bin/sh, -c, 'echo "Hello world"']
## @param preExtraInitContainers Additional init containers to run in the pod before gitea runs it owns init containers.
preExtraInitContainers: []
# - name: pre-init-container
# image: docker.io/library/busybox
# command: [ /bin/sh, -c, 'echo "Hello world! I am a pre init container."' ]
## @param postExtraInitContainers Additional init containers to run in the pod after gitea runs it owns init containers.
postExtraInitContainers: []
# - name: post-init-container
# image: docker.io/library/busybox
# command: [ /bin/sh, -c, 'echo "Hello world! I am a post init container."' ]
## @param extraVolumes Additional volumes to mount to the Gitea deployment
extraVolumes: []
@@ -559,21 +571,23 @@ valkey:
## @param postgresql-ha.postgresql.repmgrPassword Repmgr Password
## @param postgresql-ha.postgresql.postgresPassword postgres Password
## @param postgresql-ha.pgpool.adminPassword pgpool adminPassword
## @param postgresql-ha.pgpool.srCheckPassword pgpool srCheckPassword
## @param postgresql-ha.service.ports.postgresql PostgreSQL service port (overrides `service.ports.postgresql`)
## @param postgresql-ha.persistence.size PVC Storage Request for PostgreSQL HA volume
postgresql-ha:
enabled: false
global:
postgresql:
database: gitea
password: gitea
username: gitea
enabled: false
postgresql:
repmgrPassword: changeme2
postgresPassword: changeme1
password: changeme4
pgpool:
adminPassword: changeme3
srCheckPassword: changeme4
service:
ports:
postgresql: 5432
@@ -602,7 +616,6 @@ postgresql:
primary:
persistence:
size: 10Gi
storageClass: openebs-3-replicas
# By default, removed or moved settings that still remain in a user defined values.yaml will cause Helm to fail running the install/update.
# Set it to false to skip this basic validation check.
@@ -621,3 +634,4 @@ test:
## @param extraDeploy Array of extra objects to deploy with the release
##
extraDeploy: []