Autoscaling in Google Container Engine

前端 未结 3 779
执笔经年
执笔经年 2020-12-30 10:14

I understand the Container Engine is currently on alpha and not yet complete.

From the docs I assume there is no auto-scaling of pods (e.g. depending on CPU load) ye

3条回答
  •  离开以前
    2020-12-30 10:27

    Kubernetes autoscaling: http://kubernetes.io/docs/user-guide/horizontal-pod-autoscaling/

    kubectl command: http://kubernetes.io/docs/user-guide/kubectl/kubectl_autoscale/

    Example: kubectl autoscale deployment foo --min=2 --max=5 --cpu-percent=80

提交回复
热议问题