gitea pin image

This commit is contained in:
2022-10-18 00:01:35 -04:00
parent 0038991ba3
commit 991820939a

View File

@@ -1,6 +1,21 @@
--- ---
# values file for gitea helm chart # values file for gitea helm chart
replicaCount: 1 replicaCount: 1
## @section Image
## @param image.registry image registry, e.g. gcr.io,docker.io
## @param image.repository Image to start for this pod
## @param image.tag Visit: [Image tag](https://hub.docker.com/r/gitea/gitea/tags?page=1&ordering=last_updated). Defaults to `appVersion` within Chart.yaml.
## @param image.pullPolicy Image pull policy
## @param image.rootless Wether or not to pull the rootless version of Gitea, only works on Gitea 1.14.x or higher
image:
registry: ""
repository: gitea/gitea
# Overrides the image tag whose default is the chart appVersion.
tag: "1.17.3"
pullPolicy: Always
rootless: true # only possible when running 1.14 or later
ingress: ingress:
enabled: true enabled: true
hosts: hosts:
@@ -14,11 +29,19 @@ persistence:
postgresql: postgresql:
enabled: false enabled: false
service:
ssh:
port: 10022
type: ClusterIP
# clusterIP:
gitea: gitea:
config: config:
APP_NAME: "Gitea: With a cup of tea, for 2." APP_NAME: "Gitea: With a cup of tea, for 2."
server: server:
ROOT_URL: https://git.xai-corp.net ROOT_URL: https://git.xai-corp.net
SSH_PORT: 10022
START_SSH_SERVER: true
database: database:
HOST: mysql:3306 HOST: mysql:3306
PATH: /data/gitea/gitea.db PATH: /data/gitea/gitea.db