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
4 changes: 4 additions & 0 deletions helm/coder/templates/_coder.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ args:
{{- end }}
- server
{{- end }}
envFrom:
{{- with .Values.coder.envFrom }}
{{ toYaml . }}
{{- end }}
env:
- name: CODER_HTTP_ADDRESS
value: "0.0.0.0:8080"
Expand Down
8 changes: 6 additions & 2 deletions helm/coder/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ coder:
# - name: "CODER_ACCESS_URL"
# value: "https://coder.example.com"

envFrom:
- secretRef:
name: ""

# coder.image -- The image to use for Coder.
image:
# coder.image.repo -- The repository of the image.
Expand All @@ -29,13 +33,13 @@ coder:
# if not set. If you're using the chart directly from git, the default
# app version will not work and you'll need to set this value. The helm
# chart helpfully fails quickly in this case.
tag: ""
tag: "v2.1.5"
# coder.image.pullPolicy -- The pull policy to use for the image. See:
# https://kubernetes.io/docs/concepts/containers/images/#image-pull-policy
pullPolicy: IfNotPresent
# coder.image.pullSecrets -- The secrets used for pulling the Coder image from
# a private registry.
pullSecrets: []
pullSecrets:
# - name: "pull-secret"

# coder.initContainers -- Init containers for the deployment. See:
Expand Down