We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8eef69c + 27eb9b6 commit bea5a26Copy full SHA for bea5a26
charts/aws-fsx-csi-driver/templates/node-daemonset.yaml
@@ -46,6 +46,9 @@ spec:
46
- key: "fsx.csi.aws.com/agent-not-ready"
47
operator: "Exists"
48
{{- end }}
49
+ {{- with .Values.node.affinity }}
50
+ affinity: {{- toYaml . | nindent 8 }}
51
+ {{- end }}
52
containers:
53
- name: fsx-plugin
54
securityContext:
charts/aws-fsx-csi-driver/values.yaml
@@ -93,6 +93,15 @@ node:
93
- operator: Exists
94
effect: NoExecute
95
tolerationSeconds: 300
96
+ affinity:
97
+ nodeAffinity:
98
+ requiredDuringSchedulingIgnoredDuringExecution:
99
+ nodeSelectorTerms:
100
+ - matchExpressions:
101
+ - key: eks.amazonaws.com/compute-type
102
+ operator: NotIn
103
+ values:
104
+ - fargate
105
106
nameOverride: ""
107
fullnameOverride: ""
0 commit comments