Skip to content

Commit 5fb32a6

Browse files
committed
feat(charts/account-operator): support additional account types
1 parent d156d85 commit 5fb32a6

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

charts/account-operator/templates/deployment.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ spec:
5353
{{- if .Values.webhooks.denyList }}
5454
- --webhooks-deny-list={{ join "," .Values.webhooks.denyList }}
5555
{{- end }}
56+
{{- if .Values.webhooks.additionalAccountTypes }}
57+
- --webhooks-additional-account-types={{ join "," .Values.webhooks.additionalAccountTypes }}
58+
{{- end }}
5659
{{- end }}
5760
env:
5861
{{- include "common.basicEnvironment" . | nindent 10 }}

charts/account-operator/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ webhooks:
1818
certDir: /certs
1919
# -- List of denied organization names
2020
denyList: ["admin", "root", "system", "www"]
21+
additionalAccountTypes: []
2122

2223
# -- The KCP configuration
2324
kcp:

0 commit comments

Comments
 (0)