fix(gitea): Add WebHook config (#3463)
This commit is contained in:
parent
8f4fc75271
commit
304a868459
|
@ -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
|
||||
|
|
|
@ -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 }}
|
||||
|
|
|
@ -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:
|
||||
[]
|
||||
|
|
Loading…
Reference in New Issue