Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions helm/templates/coder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,9 @@ spec:
{{- if .Values.coder.workspaceProxy }}
- wsproxy
{{- end }}
{{- if .Values.coder.enableArgs }}
- server
{{- end }}
resources:
{{- toYaml .Values.coder.resources | nindent 12 }}
lifecycle:
Expand Down
5 changes: 5 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,11 @@ coder:
command:
- /opt/coder

# coder.enableArgs -- Enables the `coder server` subcommand to be called as the
# entrypoint argument. Set this value to false if specifying a custom command above, e.g.
# /bin/sh -c echo "Hello World" /opt/coder server
enableArgs: true

# extraTemplates -- Array of extra objects to deploy with the release. Strings
# are evaluated as a template and can use template expansions and functions. All
# other objects are used as yaml.
Expand Down