原文网址:K8S--持久卷(PersistentVolume)的用法-CSDN博客
本文介绍K8S的持久卷(PersistentVolume)的用法。
目标:用持久卷的方式将主机的磁盘与容器磁盘映射,安装nginx并运行。
官网
https://kubernetes.io/zh-cn/docs/tasks/configure-pod-container/configure-persistent-volume-storage/
概念
Pod 里的容器是由镜像产生的,进程要读写磁盘只能用一个临时的存储空间,一旦 Pod 销毁,临时存储会立即释放,数据也就丢失了。为保证?Pod 销毁后重建数据依然存在,Kubernetes 使用 Volume 存储文件(一般是容器与主机路径进行映射)。
Volume和使用它的Pod都是一种静态绑定关系,无法像创建其他资源(例如Pod,Node,Deployment等等)一样创建一个Volume。因此K8S提出了PersistentVolume(PV),可以用Kubernetes API创建PersistentVolume对象。PV与Volume最大的不同是PV拥有着独立于Pod的生命周期。
PersistentVolumeClaim(PVC)代表了用户对PV资源的请求。用户需要使用PV资源时,只需要创建一个PVC对象(包括指定使用何种存储资源,使用多少GB,以何种模式使用PV等信息),K8S会自动分配我们所需的PV。
如果把PersistentVolume类比成集群中的Node,那么PersistentVolumeClaim就相当于集群中的Pod,Kubernetes为Pod分配可用的Node,为PersistentVolumeClaim分配可用的PersistentVolume。
创建目录并进入。
mkdir -p /work/devops/k8s/pv/mnt
cd /work/devops/k8s/pv/
创建pv-volume.yml文件,内容如下:
apiVersion: v1
kind: PersistentVolume
metadata:
name: tast-pv-volume
labels:
type: local
spec:
storageClassName: manual
capacity:
storage: 3Gi
accessModes:
- ReadWriteOnce
hostPath:
path: "/work/devops/k8s/pv/mnt"
创建 PersistentVolume
kubectl apply -f pv-volume.yaml
结果
persistentvolume/tast-pv-volume created
查看 PersistentVolume 的信息
kubectl get pv tast-pv-volume
结果
NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE
tast-pv-volume 3Gi RWO Retain Available manual 6s
输出结果显示该 PersistentVolume 的状态(STATUS)为 Available。 这意味着它还没有被绑定给 PersistentVolumeClaim。?
创建pv-claim.yaml文件,内容如下:
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
name: tast-pv-claim
spec:
storageClassName: manual
accessModes:
- ReadWriteOnce
resources:
requests:
storage: 1Gi
创建 PersistentVolumeClaim?
kubectl apply -f pv-claim.yaml
结果
persistentvolumeclaim/tast-pv-claim created
再次查看 PersistentVolume 信息:
kubectl get pv tast-pv-volume
结果
NAME CAPACITY ACCESS MODES RECLAIM POLICY STATUS CLAIM STORAGECLASS REASON AGE
tast-pv-volume 3Gi RWO Retain Bound default/tast-pv-claim manual 33s
现在输出的 STATUS 为 Bound。
查看 PersistentVolumeClaim:
kubectl get pvc tast-pv-claim
结果
NAME STATUS VOLUME CAPACITY ACCESS MODES STORAGECLASS AGE
tast-pv-claim Bound tast-pv-volume 3Gi RWO manual 13s
创建pv-pod.yaml文件,内容如下:
apiVersion: v1
kind: Pod
metadata:
name: tast-pv-pod
spec:
volumes:
- name: tast-pv-storage
persistentVolumeClaim:
claimName: tast-pv-claim
containers:
- name: tast-pv-container
image: nginx:latest
ports:
- containerPort: 80
name: "nginx-80"
volumeMounts:
- mountPath: "/usr/share/nginx/html"
name: tast-pv-storage
创建 Pod:
kubectl apply -f pv-pod.yaml
?结果
pod/tast-pv-pod created
查看Pod
kubectl get pods -A
结果(已创建)
?
进入到容器内部:
kubectl exec -it tast-pv-pod -- bash
用curl访问nginx:
curl http://localhost/
结果:(访问成功)
<html>
<head><title>403 Forbidden</title></head>
<body>
<center><h1>403 Forbidden</h1></center>
<hr><center>nginx/1.21.5</center>
</body>
</html>
cd /work/devops/k8s/pv
kubectl delete -f pv-pod.yaml
kubectl delete -f pv-claim.yaml
kubectl delete -f pv-volume.yaml
-------------------------------------------------------------------------------------------
推荐一套Java真实高频面试题:Java后端真实面试题大全 - 自学精灵