@@ -46,9 +46,44 @@ serviceAccount:
4646# coder.serviceAccount.name -- The service account name
4747name :coder-logstream-kube
4848
49+ # resources -- The resources to request for the Deployment. These are optional
50+ # and are not set by default.
51+ resources :
52+ {}
53+ # limits:
54+ # cpu: 500m
55+ # memory: 500Mi
56+ # requests:
57+ # cpu: 2000m
58+ # memory: 2000Mi
59+
4960# nodeSelector -- Node labels for constraining the coder-logstream pod to specific nodes.
5061nodeSelector :{}
5162
63+ # affinity -- Allows specifying an affinity rule for the Deployment.
64+ # The default rule prefers to schedule coder pods on different
65+ # nodes, which is only applicable if coder.replicaCount is greater than 1.
66+ affinity :{}
67+ # podAntiAffinity:
68+ # preferredDuringSchedulingIgnoredDuringExecution:
69+ # - podAffinityTerm:
70+ # labelSelector:
71+ # matchExpressions:
72+ # - key: app.kubernetes.io/instance: coder-logstream-kube
73+ # operator: In
74+ # values:
75+ # - "true"
76+ # topologyKey: kubernetes.io/hostname
77+ # weight: 1
78+
79+ # tolerations -- Tolerations for tainted nodes.
80+ # See: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
81+ tolerations :{}
82+ # - key: "key"
83+ # operator: "Equal"
84+ # value: "value"
85+ # effect: "NoSchedule"
86+
5287# labels -- The pod labels for coder-logstream-kube. See:
5388# https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
54- labels :{}
89+ labels :{}