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

This commit is contained in:
sagit 2022-08-14 01:36:29 +08:00 committed by GitHub
parent 8f4fc75271
commit 304a868459
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 11 additions and 1 deletions

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

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"

View File

@ -77,6 +77,9 @@ stringData:
{{- end }}
{{- end }}
[webhook]
ALLOWED_HOST_LIST = {{ .Values.config.ALLOWED_HOST_LIST }}
[server]
APP_DATA_PATH = /data
DOMAIN = {{ $DOMAIN }}

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:
[]