Skip to content

Latest commit

 

History

History
30 lines (29 loc) · 889 Bytes

multi-arch-schedule-nodeaffinity.adoc

File metadata and controls

30 lines (29 loc) · 889 Bytes
Using nodeAffinity to schedule nodes with specific architectures

You can allow a workload to be scheduled on only a set of nodes with architectures supported by its images, you can set the spec.affinity.nodeAffinity field in your pod’s template specification.

Example deployment with node affinity set
apiVersion: apps/v1
kind: Deployment
metadata: # ...
spec:
   # ...
  template:
     # ...
    spec:
      affinity:
        nodeAffinity:
          requiredDuringSchedulingIgnoredDuringExecution:
            nodeSelectorTerms:
            - matchExpressions:
              - key: kubernetes.io/arch
                operator: In
                values: (1)
                - amd64
                - arm64
  1. Specify the supported architectures. Valid values include amd64,arm64, or both values.