Skip to content

Commit

Permalink
only schedule resources on amd64 nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
sgalsaleh committed Jan 10, 2024
1 parent 4ff9cfe commit 1cef00d
Show file tree
Hide file tree
Showing 2 changed files with 3 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
1 change: 1 addition & 0 deletions start-time
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1704737990

0 comments on commit 1cef00d

Please sign in to comment.