Skip to content

Commit 1821cf7

Browse files
authored
Support specifying affinity in Helm chart (#1962)
1 parent dfd068a commit 1821cf7

File tree

2 files changed

+18
-9
lines changed

2 files changed

+18
-9
lines changed

config/charts/knative-operator/templates/operator.yaml

+7-9
Original file line numberDiff line numberDiff line change
@@ -71,16 +71,10 @@ spec:
7171
{{ toYaml .Values.knative_operator.operator_webhook.podAnnotations }}
7272
{{- end }}
7373
spec:
74-
# To avoid node becoming SPOF, spread our replicas to different nodes.
74+
{{- if .Values.knative_operator.operator_webhook.affinity }}
7575
affinity:
76-
podAntiAffinity:
77-
preferredDuringSchedulingIgnoredDuringExecution:
78-
- podAffinityTerm:
79-
labelSelector:
80-
matchLabels:
81-
app: operator-webhook
82-
topologyKey: kubernetes.io/hostname
83-
weight: 100
76+
{{- toYaml .Values.knative_operator.operator_webhook.affinity | nindent 8 }}
77+
{{- end }}
8478
{{- if and .Values.knative_operator.operator_webhook.securityContext }}
8579
securityContext:
8680
{{ toYaml .Values.knative_operator.operator_webhook.securityContext }}
@@ -6357,6 +6351,10 @@ spec:
63576351
{{ toYaml .Values.knative_operator.knative_operator.podAnnotations }}
63586352
{{- end }}
63596353
spec:
6354+
{{- if .Values.knative_operator.knative_operator.affinity }}
6355+
affinity:
6356+
{{- toYaml .Values.knative_operator.knative_operator.affinity | nindent 8 }}
6357+
{{- end }}
63606358
serviceAccountName: knative-operator
63616359
{{- if and .Values.knative_operator.knative_operator.securityContext }}
63626360
securityContext:

config/charts/knative-operator/values.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ knative_operator:
22
knative_operator:
33
image: gcr.io/knative-releases/knative.dev/operator/cmd/operator
44
tag: {{ tag }}
5+
affinity: {}
56
containerSecurityContext:
67
allowPrivilegeEscalation: false
78
readOnlyRootFilesystem: true
@@ -16,6 +17,16 @@ knative_operator:
1617
operator_webhook:
1718
image: gcr.io/knative-releases/knative.dev/operator/cmd/webhook
1819
tag: {{ tag }}
20+
affinity:
21+
# To avoid node becoming SPOF, spread our replicas to different nodes.
22+
podAntiAffinity:
23+
preferredDuringSchedulingIgnoredDuringExecution:
24+
- podAffinityTerm:
25+
labelSelector:
26+
matchLabels:
27+
app: operator-webhook
28+
topologyKey: kubernetes.io/hostname
29+
weight: 100
1930
containerSecurityContext:
2031
allowPrivilegeEscalation: false
2132
readOnlyRootFilesystem: true

0 commit comments

Comments
 (0)