File tree 2 files changed +19
-0
lines changed
charts/actions-runner-controller 2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 12
12
{{- if .Values.githubWebhookServer.secret.github_webhook_secret_token }}
13
13
github_webhook_secret_token : {{ .Values.githubWebhookServer.secret.github_webhook_secret_token | toString | b64enc }}
14
14
{{- end }}
15
+ {{- if .Values.githubWebhookServer.secret.github_app_id }}
16
+ github_app_id : {{ .Values.githubWebhookServer.secret.github_app_id | toString | b64enc }}
17
+ {{- end }}
18
+ {{- if .Values.githubWebhookServer.secret.github_app_installation_id }}
19
+ github_app_installation_id : {{ .Values.githubWebhookServer.secret.github_app_installation_id | toString | b64enc }}
20
+ {{- end }}
21
+ {{- if .Values.githubWebhookServer.secret.github_app_private_key }}
22
+ github_app_private_key : {{ .Values.githubWebhookServer.secret.github_app_private_key | toString | b64enc }}
23
+ {{- end }}
24
+ {{- if .Values.githubWebhookServer.secret.github_token }}
25
+ github_token : {{ .Values.githubWebhookServer.secret.github_token | toString | b64enc }}
26
+ {{- end }}
15
27
{{- end }}
16
28
{{- end }}
Original file line number Diff line number Diff line change @@ -183,6 +183,13 @@ githubWebhookServer:
183
183
name : " github-webhook-server"
184
184
# ## GitHub Webhook Configuration
185
185
github_webhook_secret_token : " "
186
+ # ## GitHub Apps Configuration
187
+ # # NOTE: IDs MUST be strings, use quotes
188
+ # github_app_id: ""
189
+ # github_app_installation_id: ""
190
+ # github_app_private_key: |
191
+ # ## GitHub PAT Configuration
192
+ # github_token: ""
186
193
imagePullSecrets : []
187
194
nameOverride : " "
188
195
fullnameOverride : " "
You can’t perform that action at this time.
0 commit comments