Exclude arm64 in multiarch using tolerations #275
Replies: 2 comments
-
Please try to provide some context, and your first steps in trying to achieve this:
Thanks! |
Beta Was this translation helpful? Give feedback.
-
This sounds like a Kubernetes question that is not specific to OPA. I think a nodeSelector:
kubernetes.io/arch: amd64 If you do want to run OPA on arm64 nodes, you can use use the multi-arch |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello looking for the correct way to exclude deployment on nodes of cpu type arm64 in kubernetes using tolerations. Want to know if the key should be as listed below
tolerations:
- key: "arm64"
operator: "Equal"
value: "true"
effect: "NoSchedule"
Beta Was this translation helpful? Give feedback.
All reactions