码迷,mamicode.com
首页 > 其他好文 > 详细

k8s创建pod

时间:2018-08-02 18:20:40      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:size   cas   root   配置   replicas   ica   toolbar   lse   sel   

第1章 nginx配置文件yaml

1.1 nginx _rc文件 rc资源类型

cat nginx_rc.yaml
apiVersion: v1
kind: ReplicationController
metadata:
  name: nginx4
spec:
   replicas: 1
   selector:
     app: nginx4
   template:
     metadata:
       labels:
         app: nginx4
     spec:
       containers:
       - name: nginx4
         image: 10.0.0.10:5000/nginx:v2
         ports:
         - containerPort: 80
         volumeMounts:
          - mountPath: /usr/local/nginx/html
            name: web
       volumes:
        - hostPath:
           path: /root/test
          name: web


k8s创建pod

标签:size   cas   root   配置   replicas   ica   toolbar   lse   sel   

原文地址:http://blog.51cto.com/fenyuer/2153733

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!