k8s hpa 自动扩容
Posted hequan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了k8s hpa 自动扩容相关的知识,希望对你有一定的参考价值。
命令行操作
kubectl autoscale deployment zeus-deployment --cpu-percent=20 --min=1 --max=3
yaml 文件
apiVersion: autoscaling/v1
kind: HorizontalPodAutoscaler
metadata:
name: zeus
namespace: default
spec:
scaleTargetRef:
apiVersion: apps/v1
kind: Deployment
name: zeus-deployment
minReplicas: 1
maxReplicas: 3
targetCPUUtilizationPercentage: 50
以上是关于k8s hpa 自动扩容的主要内容,如果未能解决你的问题,请参考以下文章