Advertisement
Guest User

Untitled

a guest
Sep 16th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. apiVersion: v1
  2. kind: Pod
  3. metadata:
  4. name: with-node-affinity
  5. spec:
  6. affinity:
  7. nodeAffinity:
  8. requiredDuringSchedulingIgnoredDuringExecution:
  9. nodeSelectorTerms:
  10. - matchExpressions:
  11. - key: kubernetes.io/os
  12. operator: In
  13. values:
  14. - windows
  15. - matchExpressions:
  16. - key: yourcustomlabel
  17. operator: In
  18. values:
  19. - valueofyourcustomlabel
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement