配置 Pod 初始化

本文介绍在应用容器运行前,怎样利用 Init 容器初始化 Pod。

准备开始

你必须拥有一个 Kubernetes 的集群,同时你的 Kubernetes 集群必须带有 kubectl 命令行工具。 如果你还没有集群,你可以通过 Minikube 构建一 个你自己的集群,或者你可以使用下面任意一个 Kubernetes 工具构建:

要获知版本信息,请输入 kubectl version.

创建一个包含 Init 容器的 Pod

本例中您将创建一个包含一个应用容器和一个 Init 容器的 Pod。Init 容器在应用容器启动前运行完成。

下面是 Pod 的配置文件:

pods/init-containers.yaml 配置 Pod 初始化 - 图1
  1. apiVersion: v1
  2. kind: Pod
  3. metadata:
  4. name: init-demo
  5. spec:
  6. containers:
  7. - name: nginx
  8. image: nginx
  9. ports:
  10. - containerPort: 80
  11. volumeMounts:
  12. - name: workdir
  13. mountPath: /usr/share/nginx/html
  14. # These containers are run during pod initialization
  15. initContainers:
  16. - name: install
  17. image: busybox
  18. command:
  19. - wget
  20. - “-O
  21. - “/work-dir/index.html
  22. - http://kubernetes.io
  23. volumeMounts:
  24. - name: workdir
  25. mountPath: “/work-dir
  26. dnsPolicy: Default
  27. volumes:
  28. - name: workdir
  29. emptyDir: {}

配置文件中,您可以看到应用容器和 Init 容器共享了一个卷。

Init 容器将共享卷挂载到了 /work-dir 目录,应用容器将共享卷挂载到了 /usr/share/nginx/html 目录。 Init 容器执行完下面的命令就终止:

  1. wget -O /work-dir/index.html http://kubernetes.io

请注意 Init 容器在 nginx 服务器的根目录写入 index.html

创建 Pod:

  1. kubectl create -f https://k8s.io/examples/pods/init-containers.yaml

检查 nginx 容器运行正常:

  1. kubectl get pod init-demo

结果表明 nginx 容器运行正常:

  1. NAME READY STATUS RESTARTS AGE
  2. init-demo 1/1 Running 0 1m

通过 shell 进入 init-demo Pod 中的 nginx 容器:

  1. kubectl exec -it init-demo -- /bin/bash

在 shell 中,发送个 GET 请求到 nginx 服务器:

  1. root@nginx:~# apt-get update
  2. root@nginx:~# apt-get install curl
  3. root@nginx:~# curl localhost

结果表明 nginx 正在为 Init 容器编写的 web 页面服务:

  1. <!Doctype html>
  2. <html id="home">
  3. <head>
  4. ...
  5. "url": "http://kubernetes.io/"}</script>
  6. </head>
  7. <body>
  8. ...
  9. <p>Kubernetes is open source giving you the freedom to take advantage ...</p>
  10. ...

接下来