mirror of
https://github.com/coder/coder.git
synced 2026-06-06 22:48:19 +00:00
7876dc5fb1
Fixes https://github.com/coder/coder/issues/15437 - Adds support for `coder.serviceAccount.disableCreate` (originally added to `helm/coder` in https://github.com/coder/coder/pull/14817). - Adds documentation and examples in `helm/provisioner/README.md` on deploying multiple provisioners in the same namespace leveraging `nameOverride`.
17 lines
355 B
YAML
17 lines
355 B
YAML
coder:
|
|
image:
|
|
tag: latest
|
|
serviceAccount:
|
|
name: other-coder-provisioner
|
|
nameOverride: "other-coder-provisioner"
|
|
# Note that extraTemplates does not respect nameOverride.
|
|
extraTemplates:
|
|
- |
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: some-config
|
|
namespace: {{ .Release.Namespace }}
|
|
data:
|
|
key: some-value
|