1 Star 0 Fork 12

夜微凉/k8s

forked from JC/k8s 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
HorizontalPodAutoscaler_v2.yaml 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
JC 提交于 2019-03-14 20:28 . 添加了hpa的配置说明
apiVersion: autoscaling/v2beta1
# <string>指定api资源版本,格式group/version
# autoscaling/v1 只支持 cpu指标
# autoscaling/v2beta1 最迟多个指标
kind: HorizontalPodAutoscaler
# <string>指定资源类别
metadata:
# <Object>指定元数据,内嵌字段
name: hpa-demo
# <string>指定资源名称
namespace: default
# <string>指定名称空间,默认为default
spec:
# <Object>指定期望状态
maxReplicas: 6
# <integer> -required-指定最大副本数
minReplicas: 1
# <integer> 最小副本数
metrics:
#指定基于什么资源评估
- type: Resource
resource:
name: cpu
targetAverageUtilization: 55
- type: Resource
resource:
name: memory
targetAverageValue: 50Mi
- type: Pods
Pods:
metricName: http_requests
targetAverageValue: 800m
scaleTargetRef:
# <Object> -required-指定基于什么资源指标进行扩展
apiVersion: apps/v1
# <string> 需要进行扩展的资源版本
kind: Deployment
# <string> -required- 资源类型
# https://git.k8s.io/community/contributors/devel/api-conventions.md#types-kinds"
name: myapp
# <string> -required- 资源名称
# http://kubernetes.io/docs/user-guide/identifiers#names
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/iubest/k8s.git
git@gitee.com:iubest/k8s.git
iubest
k8s
k8s
master

搜索帮助