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: / port: 80 host: 192.168.5.3 scheme: HTTP ……
|
接下来,以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 ports: - name: nginx-port containerPort: 80 lifecycle: postStart: exec: command: ["/bin/sh", "-c", "echo postStart... > /usr/share/nginx/html/index.html"] preStop: exec: command: ["/usr/sbin/nginx","-s","quit"]
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| kubectl create -f pod-hook-exec.yaml
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
curl 172.16.0.39
postStart...
|