update gitea version
This commit is contained in:
@@ -67,7 +67,7 @@ apps:
|
|||||||
replication_password: 4q389hq7gf8qo47gq8374g
|
replication_password: 4q389hq7gf8qo47gq8374g
|
||||||
|
|
||||||
gitea:
|
gitea:
|
||||||
enabled: false
|
enabled: true
|
||||||
namespace: gitea
|
namespace: gitea
|
||||||
state: present
|
state: present
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
---
|
---
|
||||||
# values file for gitea helm chart
|
# values file for gitea helm chart
|
||||||
|
# https://gitea.com/gitea/helm-chart/
|
||||||
replicaCount: 1
|
replicaCount: 1
|
||||||
|
|
||||||
## @section Image
|
## @section Image
|
||||||
@@ -7,12 +8,12 @@ replicaCount: 1
|
|||||||
## @param image.repository Image to start for this pod
|
## @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.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.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
|
## @param image.rootless Whether to pull the rootless version of Gitea, only works on Gitea 1.14.x or higher
|
||||||
image:
|
image:
|
||||||
registry: ""
|
registry: ""
|
||||||
repository: gitea/gitea
|
repository: gitea/gitea
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
# Overrides the image tag whose default is the chart appVersion.
|
||||||
tag: "1.17.3"
|
# tag: "1.22.0"
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
rootless: true # only possible when running 1.14 or later
|
rootless: true # only possible when running 1.14 or later
|
||||||
|
|
||||||
@@ -28,9 +29,17 @@ ingress:
|
|||||||
|
|
||||||
persistence:
|
persistence:
|
||||||
enabled: true
|
enabled: true
|
||||||
|
mount: true
|
||||||
|
create: false
|
||||||
|
claimName: data-gitea-0
|
||||||
|
|
||||||
postgresql:
|
postgresql:
|
||||||
enabled: false
|
enabled: false
|
||||||
|
postgresql-ha:
|
||||||
|
enabled: false
|
||||||
|
|
||||||
|
redis-cluster:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
service:
|
service:
|
||||||
ssh:
|
ssh:
|
||||||
@@ -52,5 +61,19 @@ gitea:
|
|||||||
USER: rmorgan
|
USER: rmorgan
|
||||||
PASSWD: rom105
|
PASSWD: rom105
|
||||||
SSL_MODE: disable
|
SSL_MODE: disable
|
||||||
|
|
||||||
repository:
|
repository:
|
||||||
ROOT: /data/git/repositories
|
ROOT: /data/git/repositories
|
||||||
|
|
||||||
|
session:
|
||||||
|
PROVIDER: redis-cluster
|
||||||
|
PROVIDER_CONFIG: redis+cluster://:gitea@gitea-redis-cluster-headless.<namespace>.svc.cluster.local:6379/0?pool_size=100&idle_timeout=180s&
|
||||||
|
|
||||||
|
cache:
|
||||||
|
ENABLED: true
|
||||||
|
ADAPTER: redis-cluster
|
||||||
|
HOST: redis+cluster://:gitea@gitea-redis-cluster-headless.<namespace>.svc.cluster.local:6379/0?pool_size=100&idle_timeout=180s&
|
||||||
|
|
||||||
|
queue:
|
||||||
|
TYPE: redis
|
||||||
|
CONN_STR: redis+cluster://:gitea@gitea-redis-cluster-headless.<namespace>.svc.cluster.local:6379/0?pool_size=100&idle_timeout=180s&
|
||||||
|
|||||||
Reference in New Issue
Block a user