如何通过Halyard覆盖Spinnaker部署的halyard配置中的readinessprobe配置?
Front50需要时间(约60秒)才能启动,因此运行状况检查失败,因为默认超时设置为1秒。
通过halyard部署Front50的默认readinessprobe配置:
readinessProbe:
failureThreshold: 3
periodSeconds: 10
successThreshold: 1
timeoutSeconds: 1发布于 2020-04-10 01:51:27
我认为这可能会有所帮助:
hal config deploy edit --liveness-probe-enabled true --liveness-probe-initial-delay-seconds $LONGEST_SERVICE_STARTUP_TIME
hal deploy applyhal配置选项似乎只有活动探测延迟参数。
参考:https://www.spinnaker.io/setup/install/environment/#distributed-installation
https://stackoverflow.com/questions/60472226
复制相似问题