10.3、钩子函数(exec)

5.3.3 钩子函数

钩子函数能够感知自身生命周期中的事件,并在相应的时刻到来时运行用户指定的程序代码。

kubernetes在主容器的启动之后和停止之前提供了两个钩子函数:

  • post start:容器创建之后执行,如果失败了会重启容器
  • pre stop :容器终止之前执行,执行完成之后容器将成功终止,在其完成之前会阻塞删除容器的操作

钩子处理器支持使用下面三种方式定义动作:

  • Exec命令:在容器内执行一次命令
  • 相当于 docker 中 docker exec -it centos ls 这样的命令
1
2
3
4
5
6
7
8
……
lifecycle:
postStart:
exec:
command:
- cat
- /tmp/healthy
……
  • TCPSocket:在当前容器尝试访问指定的socket
1
2
3
4
5
6
……  
lifecycle:
postStart:
tcpSocket:
port: 8080
……
  • HTTPGet:在当前容器中向某url发起http请求
1
2
3
4
5
6
7
8
9
……
lifecycle:
postStart:
httpGet:
path: / #URI地址
port: 80 #端口号
host: 192.168.5.3 #主机地址
scheme: HTTP #支持的协议,http或者https
……

接下来,以exec方式为例,演示下钩子函数的使用,创建pod-hook-exec.yaml文件,内容如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
apiVersion: v1
kind: Pod
metadata:
name: pod-hook-exec
namespace: dev
spec:
containers:
- name: main-container
image: registry.cn-hangzhou.aliyuncs.com/zznn/mycentos:nginx-latest # nginx:1.17.1
ports:
- name: nginx-port
containerPort: 80
lifecycle:
postStart:
exec: # 在容器启动的时候执行一个命令,修改掉nginx的默认首页内容
command: ["/bin/sh", "-c", "echo postStart... > /usr/share/nginx/html/index.html"]
preStop:
exec: # 在容器停止之前停止nginx服务
command: ["/usr/sbin/nginx","-s","quit"]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 创建pod
kubectl create -f pod-hook-exec.yaml


# 查看pod
kubectl get pods pod-hook-exec -n dev -o wide

NAME READY STATUS RESTARTS AGE IP NODE
pod-hook-exec 1/1 Running 0 29s 10.244.2.48 node2

# 访问pod
curl 172.16.0.39

postStart...

https://github.com/zznn-cloud/zznn-cloud-blog-images/raw/main/Qexo/24/12/image_3110e799fd7a8f2fcdf6df765798f473.png