HPA configuration
Kruise workloads, such as CloneSet, Advanced StatefulSet, UnitedDeployment, are all implemented scale subresource, which means they allow systems like HorizontalPodAutoscaler and PodDisruptionBudget interact with these resources.
Example
Just set the CloneSet’s type and name into scaleTargetRef:
apiVersion: autoscaling/v2beta2kind: HorizontalPodAutoscaler# ...spec:scaleTargetRef:apiVersion: apps.kruise.io/v1alpha1kind: CloneSetname: your-cloneset-name
Note that:
- The HPA’s namespace should be same as the namespace of your CloneSet.
- The
apiVersioninscaleTargetRefshould be same as theapiVersionin your workload resource, such asapps.kruise.io/v1alpha1orapps.kruise.io/v1beta1. It depends on which version you are using for those workloads that have multiple versions, such as Advanced StatefulSet.
当前内容版权归 OpenKruise 或其关联方所有,如需对内容或内容相关联开源项目进行关注与资助,请访问 OpenKruise .