Skip to content

Commit

Permalink
Ensure that KOTS resources only get scheduled on amd64 nodes (#4340)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh authored Jan 11, 2024
1 parent 4ff9cfe commit a7910da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/kotsadm/objects/affinity_objects.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ func defaultKOTSNodeAffinity() *corev1.NodeAffinity {
},
{
Key: "kubernetes.io/arch",
Operator: corev1.NodeSelectorOpNotIn,
Operator: corev1.NodeSelectorOpIn,
Values: []string{
"arm64",
"amd64",
},
},
},
Expand Down

0 comments on commit a7910da

Please sign in to comment.