File tree 2 files changed +18
-9
lines changed
config/charts/knative-operator
2 files changed +18
-9
lines changed Original file line number Diff line number Diff line change @@ -71,16 +71,10 @@ spec:
71
71
{{ toYaml .Values.knative_operator.operator_webhook.podAnnotations }}
72
72
{{- end }}
73
73
spec :
74
- # To avoid node becoming SPOF, spread our replicas to different nodes.
74
+ {{- if .Values.knative_operator.operator_webhook.affinity }}
75
75
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 }}
84
78
{{- if and .Values.knative_operator.operator_webhook.securityContext }}
85
79
securityContext :
86
80
{{ toYaml .Values.knative_operator.operator_webhook.securityContext }}
@@ -6357,6 +6351,10 @@ spec:
6357
6351
{{ toYaml .Values.knative_operator.knative_operator.podAnnotations }}
6358
6352
{{- end }}
6359
6353
spec :
6354
+ {{- if .Values.knative_operator.knative_operator.affinity }}
6355
+ affinity :
6356
+ {{- toYaml .Values.knative_operator.knative_operator.affinity | nindent 8 }}
6357
+ {{- end }}
6360
6358
serviceAccountName : knative-operator
6361
6359
{{- if and .Values.knative_operator.knative_operator.securityContext }}
6362
6360
securityContext :
Original file line number Diff line number Diff line change @@ -2,6 +2,7 @@ knative_operator:
2
2
knative_operator :
3
3
image : gcr.io/knative-releases/knative.dev/operator/cmd/operator
4
4
tag : {{ tag }}
5
+ affinity : {}
5
6
containerSecurityContext :
6
7
allowPrivilegeEscalation : false
7
8
readOnlyRootFilesystem : true
@@ -16,6 +17,16 @@ knative_operator:
16
17
operator_webhook :
17
18
image : gcr.io/knative-releases/knative.dev/operator/cmd/webhook
18
19
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
19
30
containerSecurityContext :
20
31
allowPrivilegeEscalation : false
21
32
readOnlyRootFilesystem : true
You can’t perform that action at this time.
0 commit comments