ops-itop / itop-extensions

my extensions of itop
29 stars 12 forks source link

initialDelaySeconds默认值不应太大 #82

Closed annProg closed 5 years ago

annProg commented 6 years ago

目前默认50s,似乎要readiness检查通过后才加入endpoint,导致nginx很长时间的503,考虑readiness设置为5,liveness设置为10,并添加属性允许用户覆盖默认值

annProg commented 6 years ago

使用sidecar,避免gbalancer这样启动慢的程序影响主容器

annProg commented 5 years ago

liveness不必设置太小的值,liveness是防止容器长时间运行后出错。设置60s即可,readness尽可能小一些(5s,也不要太激进,可以通过更新策略,设置maxUnavailable为0来避免503),否则要等很久才能加到endpoint,从ingress访问,会长时间503

annProg commented 5 years ago

类型配置添加子类, K8sProbe,lnk到Controller,允许用户自定义健康检查