yaml格式的pod定义文件完整内容

  1. apiVersion: v1 #必选,版本号,例如v1
  2. kind: Pod #必选,Pod
  3. metadata: #必选,元数据
  4. name: string #必选,Pod名称
  5. namespace: string #必选,Pod所属的命名空间
  6. labels: #自定义标签
  7. - name: string #自定义标签名字
  8. annotations: #自定义注释列表
  9. - name: string
  10. spec: #必选,Pod中容器的详细定义
  11. containers: #必选,Pod中容器列表
  12. - name: string #必选,容器名称
  13. image: string #必选,容器的镜像名称
  14. imagePullPolicy: [Always | Never | IfNotPresent] #获取镜像的策略 Alawys表示下载镜像 IfnotPresent表示优先使用本地镜像,否则下载镜像,Nerver表示仅使用本地镜像
  15. command: [string] #容器的启动命令列表,如不指定,使用打包时使用的启动命令
  16. args: [string] #容器的启动命令参数列表
  17. workingDir: string #容器的工作目录
  18. volumeMounts: #挂载到容器内部的存储卷配置
  19. - name: string #引用pod定义的共享存储卷的名称,需用volumes[]部分定义的的卷名
  20. mountPath: string #存储卷在容器内mount的绝对路径,应少于512字符
  21. readOnly: boolean #是否为只读模式
  22. ports: #需要暴露的端口库号列表
  23. - name: string #端口号名称
  24. containerPort: int #容器需要监听的端口号
  25. hostPort: int #容器所在主机需要监听的端口号,默认与Container相同
  26. protocol: string #端口协议,支持TCP和UDP,默认TCP
  27. env: #容器运行前需设置的环境变量列表
  28. - name: string #环境变量名称
  29. value: string #环境变量的值
  30. resources: #资源限制和请求的设置
  31. limits: #资源限制的设置
  32. cpu: string #Cpu的限制,单位为core数,将用于docker run --cpu-shares参数
  33. memory: string #内存限制,单位可以为Mib/Gib,将用于docker run --memory参数
  34. requests: #资源请求的设置
  35. cpu: string #Cpu请求,容器启动的初始可用数量
  36. memory: string #内存清楚,容器启动的初始可用数量
  37. livenessProbe: #对Pod内个容器健康检查的设置,当探测无响应几次后将自动重启该容器,检查方法有exec、httpGet和tcpSocket,对一个容器只需设置其中一种方法即可
  38. exec: #对Pod容器内检查方式设置为exec方式
  39. command: [string] #exec方式需要制定的命令或脚本
  40. httpGet: #对Pod内个容器健康检查方法设置为HttpGet,需要制定Path、port
  41. path: string
  42. port: number
  43. host: string
  44. scheme: string
  45. HttpHeaders:
  46. - name: string
  47. value: string
  48. tcpSocket: #对Pod内个容器健康检查方式设置为tcpSocket方式
  49. port: number
  50. initialDelaySeconds: 0 #容器启动完成后首次探测的时间,单位为秒
  51. timeoutSeconds: 0 #对容器健康检查探测等待响应的超时时间,单位秒,默认1秒
  52. periodSeconds: 0 #对容器监控检查的定期探测时间设置,单位秒,默认10秒一次
  53. successThreshold: 0
  54. failureThreshold: 0
  55. securityContext:
  56. privileged:false
  57. restartPolicy: [Always | Never | OnFailure]#Pod的重启策略,Always表示一旦不管以何种方式终止运行,kubelet都将重启,OnFailure表示只有Pod以非0退出码退出才重启,Nerver表示不再重启该Pod
  58. nodeSelector: obeject #设置NodeSelector表示将该Pod调度到包含这个label的node上,以key:value的格式指定
  59. imagePullSecrets: #Pull镜像时使用的secret名称,以key:secretkey格式指定
  60. - name: string
  61. hostNetwork:false #是否使用主机网络模式,默认为false,如果设置为true,表示使用宿主机网络
  62. volumes: #在该pod上定义共享存储卷列表
  63. - name: string #共享存储卷名称 (volumes类型有很多种)
  64. emptyDir: {} #类型为emtyDir的存储卷,与Pod同生命周期的一个临时目录。为空值
  65. hostPath: string #类型为hostPath的存储卷,表示挂载Pod所在宿主机的目录
  66. path: string #Pod所在宿主机的目录,将被用于同期中mount的目录
  67. secret: #类型为secret的存储卷,挂载集群与定义的secre对象到容器内部
  68. scretname: string
  69. items:
  70. - key: string
  71. path: string
  72. configMap: #类型为configMap的存储卷,挂载预定义的configMap对象到容器内部
  73. name: string
  74. items:
  75. - key: string
  76. path: string

示例,通过k8s启动nginx

  1. apiVersion: v1
  2. kind: ConfigMap
  3. metadata:
  4. name: proxy-nginx
  5. namespace: kube-system
  6. data:
  7. default.conf: |-
  8. server {
  9. listen 80;
  10. server_name localhost;
  11. location / {
  12. root /usr/share/nginx/html;
  13. index index.html index.htm;
  14. }
  15. }
  16. nginx_passwd: |-
  17. admin:xxxxxxxxxxxxxxxxxxxxxxxxx
  18. ---
  19. apiVersion: extensions/v1beta1
  20. kind: Deployment
  21. metadata:
  22. name: proxy-nginx
  23. namespace: kube-system
  24. spec:
  25. replicas: 1
  26. template:
  27. metadata:
  28. labels:
  29. k8s-app: proxy-nginx
  30. spec:
  31. containers:
  32. - name: nginx
  33. image: harbor.xxx.cn/official_hub/nginx:1.13-alpine
  34. imagePullPolicy: IfNotPresent
  35. ports:
  36. - containerPort: 80
  37. protocol: TCP
  38. volumeMounts:
  39. - name: nginx-conf
  40. mountPath: /etc/nginx/conf.d
  41. volumes:
  42. - name: nginx-conf
  43. configMap:
  44. name: proxy-nginx
  45. nodeSelector:
  46. node-role.kubernetes.io/master: ""
  47. tolerations:
  48. - key: "node-role.kubernetes.io/master"
  49. effect: "NoSchedule"
  50. ---
  51. apiVersion: v1
  52. kind: Service
  53. metadata:
  54. name: proxy-nginx
  55. namespace: kube-system
  56. spec:
  57. type: NodePort
  58. ports:
  59. - port: 80
  60. targetPort: 80
  61. nodePort: 32767
  62. selector:
  63. k8s-app: proxy-nginx