Skip to content

helm: add certs secret mount #4641

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 15 commits into from
Dec 7, 2022
Merged
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
Prev Previous commit
Next Next commit
merge: main into branch
  • Loading branch information
ericpaulsen committed Nov 29, 2022
commit 43cd1186bfb047260b129d557c305fe445e2a410
31 changes: 31 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ coder:
# cpu: 100m
# memory: 128Mi

<<<<<<< HEAD
# coder.certs -- CA bundles to mount inside the Coder pod.
certs:
# coder.certs.secrets -- A list of CA bundle secrets to mount into the Coder
Expand All @@ -81,6 +82,36 @@ coder:
secrets: []
# - name: "my-ca-bundle"
# key: "ca-bundle.crt"
=======
# coder.affinity -- Allows specifying an affinity rule for the `coder` deployment.
# The default rule prefers to schedule coder pods on different
# nodes, which is only applicable if coder.replicaCount is greater than 1.
affinity:
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- podAffinityTerm:
labelSelector:
matchExpressions:
- key: app.coder.com
operator: In
values:
- "true"
topologyKey: kubernetes.io/hostname
weight: 1

# coder.tolerations -- Tolerations for tainted nodes.
# See: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
tolerations: {}
# - key: "key"
# operator: "Equal"
# value: "value"
# effect: "NoSchedule"

# coder.nodeSelector -- Node labels for constraining coder pods to nodes.
# See: https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector
nodeSelector: {}
# kubernetes.io/os: linux
>>>>>>> main

# coder.service -- The Service object to expose for Coder.
service:
Expand Down
You are viewing a condensed version of this merge commit. You can view the full changes here.