fix(gitea): Add WebHook config (#3463)

This commit is contained in:
sagit
2022-08-13 19:36:29 +02:00
committed by GitHub
parent 8f4fc75271
commit 304a868459
4 changed files with 11 additions and 1 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ sources:
- https://github.com/go-gitea/gitea
- https://hub.docker.com/r/gitea/gitea/
type: application
version: 9.0.3
version: 9.0.4
annotations:
truecharts.org/catagories: |
- GIT
+6
View File
@@ -61,6 +61,12 @@ questions:
description: "Development"
- value: "test"
description: "Testing"
- variable: ALLOWED_HOST_LIST
label: "ALLOWED_HOST_LIST"
schema:
type: string
default: "127.0.0.1"
required: true
- variable: customConfig
group: "App Configuration"
label: "Custom Configuration parameters"
@@ -77,6 +77,9 @@ stringData:
{{- end }}
{{- end }}
[webhook]
ALLOWED_HOST_LIST = {{ .Values.config.ALLOWED_HOST_LIST }}
[server]
APP_DATA_PATH = /data
DOMAIN = {{ $DOMAIN }}
+1
View File
@@ -120,6 +120,7 @@ oauth:
config:
APP_NAME: "Gitea: Git with a cup of tea"
RUN_MODE: dev
ALLOWED_HOST_LIST: "127.0.0.1"
customConfig:
[]