Skip to content

Commit ead96bd

Browse files
authored
Add enableWebhookSSL setting (#54)
1 parent de856eb commit ead96bd

File tree

3 files changed

+11
-1
lines changed

3 files changed

+11
-1
lines changed

charts/studio/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.9
18+
version: 0.1.10
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/studio/templates/_env_vars.tpl

+7
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,13 @@
131131
name: studio
132132
key: secretKey
133133

134+
- name: ENABLE_SSL_FOR_WEBHOOK
135+
{{- if .Values.global.scmProviders.enableWebhookSSL }}
136+
value: "True"
137+
{{- else }}
138+
value: "False"
139+
{{- end }}
140+
134141
- name: GITHUB_APP_ID
135142
{{- if .Values.global.scmProviders.github.appId }}
136143
valueFrom:

charts/studio/values.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ global:
4848
databasePassword: "postgres"
4949

5050
scmProviders:
51+
# Enable SSL for webhooks
52+
enableWebhookSSL: true
53+
5154
github:
5255
# -- GitHub enabled
5356
enabled: false

0 commit comments

Comments
 (0)