Skip to content

Commit

Permalink
feat(chart): make watchman-checks configurable
Browse files Browse the repository at this point in the history
  • Loading branch information
c0rydoras committed Apr 23, 2024
1 parent d866084 commit 9eeda44
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions charts/outdated/ci/default-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ postgresql:
password: outdated
ingress:
enabled: true
django:
watchmanChecks:
- watchman.checks.caches
- watchman.checks.databases
3 changes: 3 additions & 0 deletions charts/outdated/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,7 @@ data:
OIDC_OP_BASE_ENDPOINT: {{ cat .Values.oidc.host "/realms/" .Values.oidc.realm "/protocol/openid-connect" | replace " " "" | quote }}
OIDC_CLIENT_ID: {{ .Values.oidc.clientId | quote }}
OIDC_GROUPS_CLAIM: "groups"
{{- if .Values.django.watchmanChecks }}
WATCHMAN_CHECKS : {{ .Values.django.watchmanChecks | join "," | quote }}
{{- end}}
SECRET_KEY: {{ randAscii 20 | quote }}
1 change: 1 addition & 0 deletions charts/outdated/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ ember:

django:
allowedHosts: "*"
watchmanChecks: ~
debug: "False"

oidc:
Expand Down

0 comments on commit 9eeda44

Please sign in to comment.