WorkloadSpread

    WorkloadSpread can distribute Pods of workload to different types of Node according to some polices, which empowers single workload the abilities for multi-domain deployment and elastic deployment.

    Some common policies include:

    • fault toleration spread (for example, spread evenly among hosts, az, etc)
    • spread according to the specified ratio (for example, deploy Pod to several specified az according to the proportion)
    • subset management with priority, such as
      • deploy Pods to ecs first, and then deploy to eci when its resources are insufficient.
      • deploy a fixed number of Pods to ecs first, and the rest Pods are deployed to eci.
    • subset management with customization, such as
      • control how many pods in a workload are deployed in different cpu arch
      • enable pods in different cpu arch to have different resource requirements

    The feature of WorkloadSpread is similar with UnitedDeployment in OpenKruise community. Each WorkloadSpread defines multi-domain called . Each domain may provide the limit to run the replicas number of pods called maxReplicas. WorkloadSpread injects the domain configuration into the Pod by Webhook, and it also controls the order of scale in and scale out.

    Kruise with version lower than 1.3.0 supports CloneSet, Deployment, ReplicaSet.

    Sine Kruise 1.3.0, WorkloadSpread supports StatefulSet.

    In particular, for StatefulSet, WorkloadSpread supports manage its subsets only when scale up. The order of scale down is still controlled by StatefulSet controller. The subset management of StatefulSet is based on ordinals of Pods, and more details can be found here.

    targetRef: specify the target workload. Can not be mutated,and one workload can only correspond to one WorkloadSpread.

    subsets

    subsets consists of multiple domain called subset, and each topology has different configuration.

    • name: the name of subset, it is distinct in a WorkloadSpread, which represents a topology.

    • maxReplicas:the replicas limit of subset, and must be Integer and >= 0. There is no replicas limit while the maxReplicas is nil.

    • requiredNodeSelectorTerm: match zone hardly。

    • preferredNodeSelectorTerms: match zone softly。

    CautionrequiredNodeSelectorTerm corresponds the requiredDuringSchedulingIgnoredDuringExecution of nodeAffinity. preferredNodeSelectorTerms corresponds the preferredDuringSchedulingIgnoredDuringExecution of nodeAffinity.

    • tolerations: the tolerations of Pod in subset.
    1. tolerations:
    2. - key: "key1"
    3. operator: "Equal"
    4. value: "value1"
    5. effect: "NoSchedule"
    • patch: customize the Pod configuration of subset, such as Annotations, Labels, Env.

    Example:

    1. # patch pod with a topology label:
    2. metadata:
    3. labels:
    4. topology.application.deploy/zone: "zone-a"
    1. # patch pod container env with a zone name:
    2. patch:
    3. containers:
    4. - name: main
    5. env:
    6. - name: K8S_AZ_NAME
    7. value: zone-a

    WorkloadSpread provides two kind strategies, the default strategy is Fixed.

    1. scheduleStrategy:
    2. type: Adaptive | Fixed
    3. adaptive:
    4. rescheduleCriticalSeconds: 30
    • Fixed:

      Workload is strictly spread according to the definition of the subset.

    • Adaptive:

      Reschedule: Kruise will check the unschedulable Pods of subset. If it exceeds the defined duration, the failed Pods will be rescheduled to the other subset.

    Requirements

    WorkloadSpread defaults to be disabled. You have to configure the feature-gate WorkloadSpread when install or upgrade Kruise:

    Pod Webhook

    If the PodWebhook feature-gate is set to false, WorkloadSpread will also be disabled.

    CloneSet has supported deletion-cost feature in the latest versions.

    The other native workload need kubernetes version >= 1.21. (In 1.21, users need to enable PodDeletionCost feature-gate, and since 1.22 it will be enabled by default)

    The workload managed by WorkloadSpread will scale according to the defined order in spec.subsets.

    The order of subset in spec.subsets can be changed, which can adjust the scale order of workload.

    Scale out

    • The Pods are scheduled in the subset order defined in the spec.subsets. It will be scheduled in the next subset while the replica number reaches the maxReplicas of subset
    • When the replica number of the subset is greater than the maxReplicas, the extra Pods will be removed in a high priority.
    • According to the subset order in the spec.subsets, the Pods of the subset at the back are deleted before the Pods at the front.
    1. # subset-a subset-b subset-c
    2. # maxReplicas 10 10 nil
    3. # pods number 10 10 10
    4. # deletion order: c -> b -> a
    5. # subset-a subset-b subset-c
    6. # maxReplicas 10 10 nil
    7. # pods number 20 20 20
    8. # deletion order: b -> a -> c

    feature-gates

    WorkloadSpread feature is turned off by default, if you want to turn it on set feature-gates WorkloadSpread.

    1. $ helm install kruise https://... --set featureGates="WorkloadSpread=true"

    Elastic deployment

    zone-a(ACK) holds 100 Pods, zone-b(ECI) as an elastic zone holds additional Pods.

    1. Create a WorkloadSpread instance.
    1. Creat a corresponding workload, the number of replicas ca be adjusted freely.

    Effect

    • When the number of replicas <= 100, the Pods are scheduled in ACK zone.
    • When the number of replicas > 100, the 100 Pods are in zone, the extra Pods are scheduled in ECI zone.
    • The Pods in ECI elastic zone are removed first when scaling in.

    Deploy 100 Pods to two zone(zone-a, zone-b) separately.

    1. apiVersion: apps.kruise.io/v1alpha1
    2. kind: WorkloadSpread
    3. metadata:
    4. name: ws-demo
    5. namespace: deploy
    6. spec:
    7. targetRef:
    8. apiVersion: apps.kruise.io/v1alpha1
    9. kind: CloneSet
    10. name: workload-xxx
    11. subsets:
    12. - name: subset-a
    13. requiredNodeSelectorTerm:
    14. matchExpressions:
    15. - key: topology.kubernetes.io/zone
    16. operator: In
    17. values:
    18. - zone-a
    19. maxReplicas: 100
    20. patch:
    21. metadata:
    22. labels:
    23. deploy/zone: zone-a
    24. - name: subset-b
    25. requiredNodeSelectorTerm:
    26. matchExpressions:
    27. - key: topology.kubernetes.io/zone
    28. operator: In
    29. values:
    30. - zone-b
    31. maxReplicas: 100
    32. patch:
    33. metadata:
    34. labels:
    35. deploy/zone: zone-b
    1. If the spread of zone needs to be changed, first adjust the maxReplicas of subset, and then change the of workload.