chore: upgrade Gitea and allow necessary release attachments
This commit is contained in:
parent
3d64e5c811
commit
7a127649f4
2 changed files with 11 additions and 1 deletions
|
@ -33,6 +33,6 @@
|
||||||
name: gitea
|
name: gitea
|
||||||
chart_ref: gitea/gitea
|
chart_ref: gitea/gitea
|
||||||
release_namespace: gitea
|
release_namespace: gitea
|
||||||
chart_version: 6.0.3
|
chart_version: 6.0.5
|
||||||
update_repo_cache: true
|
update_repo_cache: true
|
||||||
release_values: "{{ lookup('template', 'values.gitea.yml.j2') | from_yaml }}"
|
release_values: "{{ lookup('template', 'values.gitea.yml.j2') | from_yaml }}"
|
||||||
|
|
|
@ -24,6 +24,9 @@ persistence:
|
||||||
size: 10Gi
|
size: 10Gi
|
||||||
storageClass: hcloud-volumes
|
storageClass: hcloud-volumes
|
||||||
|
|
||||||
|
image:
|
||||||
|
tag: "1.18.0"
|
||||||
|
|
||||||
gitea:
|
gitea:
|
||||||
admin:
|
admin:
|
||||||
existingSecret: gitea-admin-credentials
|
existingSecret: gitea-admin-credentials
|
||||||
|
@ -46,6 +49,11 @@ gitea:
|
||||||
PROTOCOL: http
|
PROTOCOL: http
|
||||||
ROOT_URL: https://code.icb4dc0.de/
|
ROOT_URL: https://code.icb4dc0.de/
|
||||||
LFS_START_SERVER: 'true'
|
LFS_START_SERVER: 'true'
|
||||||
|
service:
|
||||||
|
DISABLE_REGISTRATION: 'true'
|
||||||
|
DEFAULT_KEEP_EMAIL_PRIVATE: 'true'
|
||||||
|
DEFAULT_ALLOW_CREATE_ORGANIZATION: 'false'
|
||||||
|
DEFAULT_USER_IS_RESTRICTED: 'true'
|
||||||
storage:
|
storage:
|
||||||
STORAGE_TYPE: minio
|
STORAGE_TYPE: minio
|
||||||
MINIO_ENDPOINT: minio.minio.svc.cluster.local:9000
|
MINIO_ENDPOINT: minio.minio.svc.cluster.local:9000
|
||||||
|
@ -54,6 +62,8 @@ gitea:
|
||||||
MINIO_BUCKET: gitea
|
MINIO_BUCKET: gitea
|
||||||
MINIO_LOCATION: us-east-1
|
MINIO_LOCATION: us-east-1
|
||||||
MINIO_USE_SSL: 'false'
|
MINIO_USE_SSL: 'false'
|
||||||
|
attachment:
|
||||||
|
ALLOWED_TYPES: application/gzip|application/x-gzip|application/x-gtar|application/x-tgz|application/x-compressed-tar|text/plain
|
||||||
database:
|
database:
|
||||||
DB_TYPE: postgres
|
DB_TYPE: postgres
|
||||||
HOST: postgres-15-postgresql.postgres.svc.cluster.local:5432
|
HOST: postgres-15-postgresql.postgres.svc.cluster.local:5432
|
||||||
|
|
Loading…
Reference in a new issue