1. 假设我的nfs服务器地址是:192.168.52.150 

2.yaml文件如下:

apiVersion: apps/v1
kind: Deployment
metadata:
  name: nginx-demo
spec:
  replicas: 1
  selector:
    matchLabels:
      test: nginx
  template:
    metadata:
      labels:
        test: nginx
    spec:
      volumes:
        - name: nfs-test
          nfs:
            server: "192.168.52.150"
            path: "/"
      containers:
      - name: nginx-demo
        image: nginx:1.18.0
        imagePullPolicy: IfNotPresent
        volumeMounts:
          - mountPath: /usr/share/nginx/html
            name: nfs
        ports:
        - containerPort: 80

---

apiVersion: v1
kind: Service
metadata:
  name: nginx-service
spec:
  type: NodePort #可以对外暴露服务,在集群中的每个node节点上为需要外部访问的service开启一个TCP监听端口,外部系统只需要任意一个node的ip地址+nodePort端口号即可访问此服务.
  ports:
  - port: 80 #service提供的虚拟端口,用于映射pod中容器的真实端口
    nodePort: 30001
    protocol: TCP
    name: service-port #端口的名称,用于释义
    targetPort: 80 #容器对外暴露的端口,如果没有指定targetPort,则默认targetPort与port相同
  selector:
    test: nginx

在master节点上使用kubectl create -f nginx.yaml即可创建好nginx-demo服务,并且会自动将容器中的/usr/share/nginx/html目录映射到192.168.52.150服务器的nfs地址上.我的nfs配置如下

 因此,可以将需要发布的东西放在192.168.52.150服务器的nfs地址/home/nfs目录下,即可被k8s读取到并配置

 

Logo

K8S/Kubernetes社区为您提供最前沿的新闻资讯和知识内容

更多推荐