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://github.com/go-gitea/gitea
|
||||||
- https://hub.docker.com/r/gitea/gitea/
|
- https://hub.docker.com/r/gitea/gitea/
|
||||||
type: application
|
type: application
|
||||||
version: 9.0.3
|
version: 9.0.4
|
||||||
annotations:
|
annotations:
|
||||||
truecharts.org/catagories: |
|
truecharts.org/catagories: |
|
||||||
- GIT
|
- GIT
|
||||||
|
|
|
@ -61,6 +61,12 @@ questions:
|
||||||
description: "Development"
|
description: "Development"
|
||||||
- value: "test"
|
- value: "test"
|
||||||
description: "Testing"
|
description: "Testing"
|
||||||
|
- variable: ALLOWED_HOST_LIST
|
||||||
|
label: "ALLOWED_HOST_LIST"
|
||||||
|
schema:
|
||||||
|
type: string
|
||||||
|
default: "127.0.0.1"
|
||||||
|
required: true
|
||||||
- variable: customConfig
|
- variable: customConfig
|
||||||
group: "App Configuration"
|
group: "App Configuration"
|
||||||
label: "Custom Configuration parameters"
|
label: "Custom Configuration parameters"
|
||||||
|
|
|
@ -77,6 +77,9 @@ stringData:
|
||||||
{{- end }}
|
{{- end }}
|
||||||
{{- end }}
|
{{- end }}
|
||||||
|
|
||||||
|
[webhook]
|
||||||
|
ALLOWED_HOST_LIST = {{ .Values.config.ALLOWED_HOST_LIST }}
|
||||||
|
|
||||||
[server]
|
[server]
|
||||||
APP_DATA_PATH = /data
|
APP_DATA_PATH = /data
|
||||||
DOMAIN = {{ $DOMAIN }}
|
DOMAIN = {{ $DOMAIN }}
|
||||||
|
|
|
@ -120,6 +120,7 @@ oauth:
|
||||||
config:
|
config:
|
||||||
APP_NAME: "Gitea: Git with a cup of tea"
|
APP_NAME: "Gitea: Git with a cup of tea"
|
||||||
RUN_MODE: dev
|
RUN_MODE: dev
|
||||||
|
ALLOWED_HOST_LIST: "127.0.0.1"
|
||||||
|
|
||||||
customConfig:
|
customConfig:
|
||||||
[]
|
[]
|
||||||
|
|
Loading…
Reference in New Issue