54 lines
1.3 KiB
YAML
54 lines
1.3 KiB
YAML
---
|
|
# values file for gitea helm chart
|
|
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:
|
|
enabled: true
|
|
hosts:
|
|
- host: git.xai-corp.net
|
|
paths:
|
|
- path: /
|
|
pathType: Prefix
|
|
persistence:
|
|
enabled: true
|
|
|
|
postgresql:
|
|
enabled: false
|
|
|
|
service:
|
|
ssh:
|
|
port: 10022
|
|
type: ClusterIP
|
|
# clusterIP:
|
|
|
|
gitea:
|
|
config:
|
|
APP_NAME: "Gitea: With a cup of tea, for 2."
|
|
server:
|
|
ROOT_URL: https://git.xai-corp.net
|
|
SSH_PORT: 10022
|
|
START_SSH_SERVER: true
|
|
database:
|
|
HOST: mysql:3306
|
|
PATH: /data/gitea/gitea.db
|
|
DB_TYPE: sqlite3
|
|
USER: rmorgan
|
|
PASSWD: rom105
|
|
SSL_MODE: disable
|
|
repository:
|
|
ROOT: /data/git/repositories
|