赞
踩
Volume是Pod中能够被多个容器访问的共享目录,它被定义在Pod上,然后被一个Pod里的多个容器挂载到具体的文件目录下,kubernetes通过Volume实现同一个Pod中不同容器之间的数据共享以及数据的持久化存储。Volume的生命容器不与Pod中单个容器的生命周期相关,当容器终止或者重启时,Volume中的数据也不会丢失。
kubernetes的Volume支持多种类型,比较常见的有下面几个:
EmptyDir是最基础的Volume类型,一个EmptyDir就是Host上的一个空目录。
EmptyDir是在Pod被分配到Node时创建的,它的初始内容为空,并且无须指定宿主机上对应的目录文件,因为kubernetes会自动分配一个目录,当Pod销毁时, EmptyDir中的数据也会被永久删除。 EmptyDir用途如下:
接下来,通过一个容器之间文件共享的案例来使用一下EmptyDir。
在一个Pod中准备两个容器nginx和busybox,然后声明一个Volume分别挂在到两个容器的目录中,然后nginx容器负责向Volume中写日志,busybox中通过命令将日志内容读到控制台
创建一个volume-emptydir.yaml
- [root@k8s-master manifest]# cat volume-emptydir.yaml
- apiVersion: v1
- kind: Pod
- metadata:
- name: volume-emptydir
- namespace: dev
- spec:
- containers:
- - name: nginx
- image: nginx:1.17.1
- ports:
- - containerPort: 80
- volumeMounts: # 将logs-volume挂在到nginx容器中,对应的目录为 /var/log/nginx
- - name: logs-volume
- mountPath: /var/log/nginx
- - name: busybox
- image: busybox:1.30
- command: ["/bin/sh","-c","tail -f /logs/access.log"] # 初始命令,动态读取指定文件中内容
- volumeMounts: # 将logs-volume 挂在到busybox容器中,对应的目录为 /logs
- - name: logs-volume
- mountPath: /logs
- volumes: # 声明volume, name为logs-volume,类型为emptyDir
- - name: logs-volume
- emptyDir: {}
- [root@k8s-master manifest]#
运行pod
- # 创建Pod
- [root@k8s-master manifest]# kubectl apply -f volume-emptydir.yaml
- pod/volume-emptydir created
-
-
- # 查看pod
- [root@k8s-master manifest]# kubectl get -f volume-emptydir.yaml
- NAME READY STATUS RESTARTS AGE
- volume-emptydir 2/2 Running 0 23s
- [root@k8s-master manifest]# kubectl get pods -n dev -o wide
- NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
- volume-emptydir 2/2 Running 0 48s 10.244.1.128 k8s-node1 <none> <none>
- [root@k8s-master manifest]#
-
-
-
- # 通过podIp访问nginx
- [root@k8s-master manifest]# curl 10.244.1.128
- 多访问几次
-
- # 通过kubectl logs命令查看指定容器的标准输出
- [root@k8s-master ~]# kubectl logs -f volume-emptydir -n dev -c busybox
- 10.244.0.0 - - [18/Sep/2022:02:35:21 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.61.1" "-"
- 10.244.0.0 - - [18/Sep/2022:02:35:25 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.61.1" "-"
- 10.244.0.0 - - [18/Sep/2022:02:35:27 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.61.1" "-"
- 10.244.0.0 - - [18/Sep/2022:02:35:30 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.61.1" "-"
- 10.244.0.0 - - [18/Sep/2022:02:36:22 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.61.1" "-"
- ^C
- [root@k8s-master ~]#
EmptyDir中数据不会被持久化,它会随着Pod的结束而销毁,如果想简单的将数据持久化到主机中,可以选择HostPath。
HostPath就是将Node主机中一个实际目录挂在到Pod中,以供容器使用,这样的设计就可以保证Pod销毁了,但是数据依据可以存在于Node主机上
创建一个volume-hostpath.yaml
- [root@k8s-master manifest]# cat volume-hostpath.yaml
- apiVersion: v1
- kind: Pod
- metadata:
- name: volume-hostpath
- namespace: dev
- spec:
- containers:
- - name: nginx
- image: nginx:1.17.1
- ports:
- - containerPort: 80
- volumeMounts:
- - name: logs-volume
- mountPath: /var/log/nginx
- - name: busybox
- image: busybox:1.30
- command: ["/bin/sh","-c","tail -f /logs/access.log"]
- volumeMounts:
- - name: logs-volume
- mountPath: /logs
- volumes:
- - name: logs-volume
- hostPath:
- path: /root/logs
- type: DirectoryOrCreate # 目录存在就使用,不存在就先创建后使用
- [root@k8s-master manifest]#
type值的说明:
创建pod
- # 创建Pod
- [root@k8s-master manifest]# kubectl apply -f volume-hostpath.yaml
- pod/volume-hostpath created
- [root@k8s-master manifest]#
-
-
- # 查看Pod
- [root@k8s-master manifest]# kubectl get -f volume-hostpath.yaml -o wide
- NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
- volume-hostpath 2/2 Running 0 23s 10.244.2.146 k8s-node2 <none> <none>
- [root@k8s-master manifest]#
-
-
- #访问nginx
- [root@k8s-master manifest]# curl 10.244.2.146
-
- # 接下来就可以去host的/root/logs目录下查看存储的文件了
- ### 注意: 下面的操作需要到Pod所在的节点运行(案例中是k8s-node2)
- [root@k8s-node2 ~]# ls
- anaconda-ks.cfg logs
- [root@k8s-node2 ~]# cd logs/
- [root@k8s-node2 logs]# ls
- access.log error.log
- [root@k8s-node2 logs]# tail access.log
- 10.244.0.0 - - [18/Sep/2022:02:52:43 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.61.1" "-"
- 10.244.0.0 - - [18/Sep/2022:02:52:44 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.61.1" "-"
- 10.244.0.0 - - [18/Sep/2022:02:52:45 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.61.1" "-"
- 10.244.0.0 - - [18/Sep/2022:02:52:46 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.61.1" "-"
-
-
- # 同样的道理,如果在此目录下创建一个文件,到容器中也是可以看到的
- [root@k8s-master manifest]# kubectl get -f volume-hostpath.yaml -o wide
- NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
- volume-hostpath 2/2 Running 0 92s 10.244.2.147 k8s-node2 <none> <none>
- [root@k8s-master manifest]# kubectl exec -itn dev volume-hostpath -c busybox -- /bin/sh
- / # ls
- bin dev etc home logs proc root sys tmp usr var
- / # cd logs
- /logs # ls
- access.log error.log
- /logs # touch abc
- /logs # ls
- abc access.log error.log
- /logs #
-
- [root@k8s-node2 logs]# ls
- abc access.log error.log
- [root@k8s-node2 logs]# rm -f abc
- [root@k8s-node2 logs]# ls
- access.log error.log
- [root@k8s-node2 logs]#
-
-
- /logs # ls
- access.log error.log
-
-
- 将pod删除之后,主机上的目录还存在
- [root@k8s-master manifest]# kubectl delete -f volume-hostpath.yaml pod "volume-hostpath" deleted
- [root@k8s-master manifest]#
-
-
- [root@k8s-node2 ~]# ls
- anaconda-ks.cfg logs
- [root@k8s-node2 ~]# ls logs/
- access.log error.log
- [root@k8s-node2 ~]#
pod在那个节点上运行,那目录就在那个主机节点上
HostPath可以解决数据持久化的问题,但是一旦Node节点故障了,Pod如果转移到了别的节点,又会出现问题了,此时需要准备单独的网络存储系统,比较常用的用NFS、CIFS。
NFS是一个网络文件存储系统,可以搭建一台NFS服务器,然后将Pod中的存储直接连接到NFS系统上,这样的话,无论Pod在节点上怎么转移,只要Node跟NFS的对接没问题,数据就可以成功访问
1.首先要准备nfs的服务器,这里为了简单,直接是master节点做nfs服务器
- # 在k8s-master上安装nfs服务
- [root@k8s-master ~]# yum install nfs-utils -y
-
-
- # 准备一个共享目录
- [root@k8s-master ~]# mkdir /nfs
- [root@k8s-master ~]# cd /nfs/
- [root@k8s-master nfs]# ls
-
-
- # 将共享目录以读写权限暴露给192.168.80.0/24网段中的所有主机
- [root@k8s-master nfs]# vim /etc/exports
- [root@k8s-master nfs]# cat /etc/exports
- /nfs *(rw,no_root_squash)
- [root@k8s-master nfs]#
- rw,no_root_squash:能读能写,root用户不去映射匿名账户
- * 或 192.168.80.0/24
-
- # 启动nfs服务
- [root@k8s-master nfs]# systemctl enable --now nfs-server
- Created symlink /etc/systemd/system/multi-user.target.wants/nfs-server.service 鈫� /usr/lib/systemd/system/nfs-server.service.
- [root@k8s-master nfs]#
2.接下来,要在的每个node节点上都安装下nfs,这样的目的是为了node节点可以驱动nfs设备
- # 在node上安装nfs服务,注意不需要启动
- [root@k8s-node1 ~]# yum install nfs-utils -y
-
-
- [root@k8s-node2 ~]# yum install nfs-utils -y
-
3.接下来,就可以编写pod的配置文件了,创建volume-nfs.yaml
- [root@k8s-master manifest]# cat volume-nfs.yaml
- apiVersion: v1
- kind: Pod
- metadata:
- name: volume-nfs
- namespace: dev
- spec:
- containers:
- - name: nginx
- image: nginx:1.17.1
- ports:
- - containerPort: 80
- volumeMounts:
- - name: logs-volume
- mountPath: /var/log/nginx
- - name: busybox
- image: busybox:1.30
- command: ["/bin/sh","-c","tail -f /logs/access.log"]
- volumeMounts:
- - name: logs-volume
- mountPath: /logs
- volumes:
- - name: logs-volume
- nfs:
- server: 192.168.80.128 #nfs服务器地址
- path: /nfs #共享文件路径
- [root@k8s-master manifest]#
4.运行pod
- # 创建pod
- [root@k8s-master manifest]# kubectl apply -f volume-nfs.yaml
- pod/volume-nfs created
-
-
- # 查看pod
- [root@k8s-master manifest]# kubectl get -f volume-nfs.yaml -o wide
- NAME READY STATUS RESTARTS AGE IP NODE NOMINATED NODE READINESS GATES
- volume-nfs 2/2 Running 0 15s 10.244.2.148 k8s-node2 <none> <none>
- [root@k8s-master manifest]#
-
-
-
- # 查看nfs服务器上的共享目录,发现已经有文件了
- [root@k8s-master ~]# cd /nfs/
- [root@k8s-master nfs]# ls
- access.log error.log
- [root@k8s-master nfs]# ll
- total 0
- -rw-r--r-- 1 root root 0 Sep 18 11:37 access.log
- -rw-r--r-- 1 root root 0 Sep 18 11:37 error.log
- [root@k8s-master nfs]#
-
-
- 访问:
- [root@k8s-master manifest]# curl 10.244.2.148
-
- [root@k8s-master ~]# cd /nfs/
- [root@k8s-master nfs]# ls
- access.log error.log
- [root@k8s-master nfs]# ll
- total 0
- -rw-r--r-- 1 root root 0 Sep 18 11:37 access.log
- -rw-r--r-- 1 root root 0 Sep 18 11:37 error.log
- [root@k8s-master nfs]# ll
- total 4
- -rw-r--r-- 1 root root 182 Sep 18 11:39 access.log
- -rw-r--r-- 1 root root 0 Sep 18 11:37 error.log
- [root@k8s-master nfs]# tail access.log
- 10.244.0.0 - - [18/Sep/2022:03:39:25 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.61.1" "-"
- 10.244.0.0 - - [18/Sep/2022:03:39:27 +0000] "GET / HTTP/1.1" 200 612 "-" "curl/7.61.1" "-"
- [root@k8s-master nfs]#
前面已经学习了使用NFS提供存储,此时就要求用户会搭建NFS系统,并且会在yaml配置nfs。由于kubernetes支持的存储系统有很多,要求客户全都掌握,显然不现实。为了能够屏蔽底层存储实现的细节,方便用户使用, kubernetes引入PV和PVC两种资源对象。
PV(Persistent Volume)是持久化卷的意思,是对底层的共享存储的一种抽象。一般情况下PV由kubernetes管理员进行创建和配置,它与底层具体的共享存储技术有关,并通过插件完成与共享存储的对接。
PVC(Persistent Volume Claim)是持久卷声明的意思,是用户对于存储需求的一种声明。换句话说,PVC其实就是用户向kubernetes系统发出的一种资源需求申请
使用了PV和PVC之后,工作可以得到进一步的细分:
PV是存储资源的抽象,下面是资源清单文件
- apiVersion: v1
- kind: PersistentVolume
- metadata:
- name: pv2
- spec:
- nfs: # 存储类型,与底层真正存储对应
- capacity: # 存储能力,目前只支持存储空间的设置
- storage: 2Gi
- accessModes: # 访问模式
- storageClassName: # 存储类别
- persistentVolumeReclaimPolicy: # 回收策略
PV 的关键配置参数说明:
存储类型
底层实际存储的类型,kubernetes支持多种存储类型,每种存储类型的配置都有所差异
存储能力(capacity)
目前只支持存储空间的设置( storage=1Gi ),不过未来可能会加入IOPS、吞吐量等指标的配置
访问模式(accessModes)
用于描述用户应用对存储资源的访问权限,访问权限包括下面几种方式:
需要注意的是,底层不同的存储类型可能支持的访问模式不同
回收策略(persistentVolumeReclaimPolicy)
当PV不再被使用了之后,对其的处理方式。目前支持三种策略:
需要注意的是,底层不同的存储类型可能支持的回收策略不同
存储类别
PV可以通过storageClassName参数指定一个存储类别
状态(status)
一个 PV 的生命周期中,可能会处于4中不同的阶段:
实验:使用NFS作为存储,来演示PV的使用,创建3个PV,对应NFS中的3个暴露的路径
准备nfs环境
- # 创建目录
- [root@k8s-master nfs]# mkdir pv{1..3}
- [root@k8s-master nfs]# ls
- pv1 pv2 pv3
- [root@k8s-master nfs]#
-
- # 暴露服务
- [root@k8s-master nfs]# vim /etc/exports
- [root@k8s-master nfs]# cat /etc/exports
- /nfs/pv1 *(rw,no_root_squash)
- /nfs/pv2 *(rw,no_root_squash)
- /nfs/pv3 *(rw,no_root_squash)
- [root@k8s-master nfs]#
-
-
- # 重启服务
- [root@k8s-master nfs]# systemctl restart nfs-server
-
- [root@k8s-node1 ~]# showmount -e 192.168.80.128
- Export list for 192.168.80.128:
- /nfs/pv3 *
- /nfs/pv2 *
- /nfs/pv1 *
- [root@k8s-node1 ~]#
创建pv.yaml
- [root@k8s-master manifest]# cat pv.yaml
- apiVersion: v1
- kind: PersistentVolume
- metadata:
- name: pv1
- spec:
- capacity:
- storage: 1Gi
- accessModes:
- - ReadWriteMany
- persistentVolumeReclaimPolicy: Retain
- nfs:
- path: /nfs/pv1
- server: 192.168.80.128
-
- ---
-
- apiVersion: v1
- kind: PersistentVolume
- metadata:
- name: pv2
- spec:
- capacity:
- storage: 2Gi
- accessModes:
- - ReadWriteMany
- persistentVolumeReclaimPolicy: Retain
- nfs:
- path: /nfs/pv2
- server: 192.168.80.128
-
- ---
-
- apiVersion: v1
- kind: PersistentVolume
- metadata:
- name: pv3
- spec:
- capacity:
- storage: 3Gi
- accessModes:
- - ReadWriteMany
- persistentVolumeReclaimPolicy: Retain
- nfs:
- path: /nfs/pv3
- server: 192.168.80.128
- [root@k8s-master manifest]#
创建
- # 创建 pv
- [root@k8s-master manifest]# kubectl apply -f pv.yaml
- persistentvolume/pv1 created
- persistentvolume/pv2 created
- persistentvolume/pv3 created
- [root@k8s-master manifest]#
-
- # 查看pv
- [root@k8s-master manifest]# kubectl get -f pv.yaml -o wide
- NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE VOLUMEMODE
- pv1 1Gi RWX Retain Available 21s Filesystem
- pv2 2Gi RWX Retain Available 21s Filesystem
- pv3 3Gi RWX Retain Available 21s Filesystem
- [root@k8s-master manifest]#
PVC是资源的申请,用来声明对存储空间、访问模式、存储类别需求信息。下面是资源清单文件
- apiVersion: v1
- kind: PersistentVolumeClaim
- metadata:
- name: pvc
- namespace: dev
- spec:
- accessModes: # 访问模式
- selector: # 采用标签对PV选择
- storageClassName: # 存储类别
- resources: # 请求空间
- requests:
- storage: 5Gi
PVC 的关键配置参数说明:
用于描述用户应用对存储资源的访问权限
选择条件(selector)
通过Label Selector的设置,可使PVC对于系统中己存在的PV进行筛选
存储类别(storageClassName)
PVC在定义时可以设定需要的后端存储的类别,只有设置了该class的pv才能被系统选出
资源请求(Resources )
描述对存储资源的请求
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。