Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added config for gitea to support webhooks trigger #388

Merged
merged 4 commits into from
Sep 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions hack/gitea/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ gitea:
server:
DOMAIN: '{{- if .UsePathRouting -}} {{ .Host }} {{- else -}} gitea.{{- .Host }} {{- end }}'
ROOT_URL: '{{- if .UsePathRouting }} {{- .Protocol }}://{{ .Host }}:{{ .Port }}/gitea {{- else }} {{- .Protocol }}://gitea.{{ .Host }}:{{ .Port }} {{- end }}'
webhook:
ALLOWED_HOST_LIST: private
SKIP_TLS_VERIFY: true

service:
ssh:
Expand Down
3 changes: 3 additions & 0 deletions pkg/controllers/localbuild/resources/gitea/k8s/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ stringData:
session: |-
PROVIDER=memory
PROVIDER_CONFIG=
webhook: |-
ALLOWED_HOST_LIST=private
SKIP_TLS_VERIFY=true
---
# Source: gitea/templates/gitea/config.yaml
apiVersion: v1
Expand Down
Loading