k8s微服务平滑上下线改造步骤

本文最后更新于:2022年6月22日 下午

1.服务pom加上jar包

1
2
3
4
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>

2.健康接口使用/actuator/health

3.application.properties添加配置

1
2
3
4
management.endpoints.web.exposure.include=*
management.endpoint.shutdown.enabled=true
management.endpoint.health.show-details=always
management.server.port=8888

4.k8s加上preStop执行命令

1
curl -X POST localhost:8888/actuator/shutdown

k8s微服务平滑上下线改造步骤
https://blog.m2c.top/k8s-smooth-up-down.html
作者
Jeffery
发布于
2022年1月27日
许可协议