Difference between revisions of "Assigning Pods to Nodes"
Jump to navigation
Jump to search
(4 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
* https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ | * https://kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/ | ||
+ | == Example == | ||
+ | {{nodeaffinity ex}} | ||
+ | |||
+ | == Related == | ||
* [[Assign Pods to Nodes using Node Affinity]] | * [[Assign Pods to Nodes using Node Affinity]] | ||
+ | * [[Kubernetes Node Affinity]] | ||
== See also == | == See also == |
Latest revision as of 12:56, 25 July 2024
Example[edit]
apiVersion: v1 kind: Pod metadata: name: with-node-affinity spec: affinity: nodeAffinity: requiredDuringSchedulingIgnoredDuringExecution: nodeSelectorTerms: - matchExpressions: - key: topology.kubernetes.io/zone operator: In values: - antarctica-east1 - antarctica-west1 preferredDuringSchedulingIgnoredDuringExecution: - weight: 1 preference: matchExpressions: - key: another-node-label-key operator: In values: - another-node-label-value containers: - name: with-node-affinity image: registry.k8s.io/pause:2.0
Related[edit]
See also[edit]
Advertising: