K8S常见的持久化(存储)方案用法详解

文章目录

  • 1、k8s持久化存储:emptyDir 临时存储方案
  • 2、k8s持久化存储:hostPath
  • 3、k8s持久化存储:nfs
    • 1、搭建nfs服务
    • 2.创建Pod,挂载NFS共享出来的目录
    • 3.请求pod,看结果
  • 4、k8s持久化存储: PVC
    • 4.1.1 k8s PV是什么?
    • 4.1.2 k8s PVC是什么?
    • 4.1.3 k8s PVC和PV工作原理
      • (1)pv的供应方式
      • (2)绑定
      • (3)使用
      • (4)回收策略
    • 4.1.4 创建pod,使用pvc作为持久化存储卷
      • 1、创建nfs共享目录
      • 2、如何编写pv的资源清单文件
      • 3、创建pv
      • 4、创建pvc,和符合条件的pv绑定,会自动匹配大小相同的PV
      • 5、创建pod,挂载pvc

在k8s中为什么要做持久化存储?
在k8s中部署的应用都是以pod容器的形式运行的,假如我们部署MySQL、Redis等数据库,
需要对这些数据库产生的数据做备份。因为Pod是有生命周期的,如果pod不挂载数据卷,
那pod被删除或重启后这些数据会随之消失,如果想要长久的保留这些数据就要用到pod数据持久化存储。
常用的存储如下:
emptyDir
hostPath
nfs
persistentVolumeClaim
glusterfs
cephfs
configMap
secret

创建docker时,一般也要持久化存储

1、k8s持久化存储:emptyDir 临时存储方案

#查看k8s支持哪些存储:

[root@master01 ~ ]#kubectl explain pods.spec.volumesKIND:     Pod
VERSION:  v1
RESOURCE: volumes <[]Object>
DESCRIPTION:List of volumes that can be mounted by containers belonging to the pod.More info: https://kubernetes.io/docs/concepts/storage/volumesVolume represents a named volume in a pod that may be accessed by anycontainer in the pod.
FIELDS:awsElasticBlockStore	<Object>azureDisk	<Object>azureFile	<Object>cephfs	<Object>cinder	<Object>configMap	<Object>csi	<Object>downwardAPI	<Object>emptyDir	<Object>ephemeral	<Object>fc	<Object>flexVolume	<Object>flocker	<Object>gcePersistentDisk	<Object>gitRepo	<Object>glusterfs	<Object>hostPath	<Object>iscsi	<Object>name	<string> -required-nfs	<Object>persistentVolumeClaim	<Object>photonPersistentDisk	<Object>portworxVolume	<Object>projected	<Object>quobyte	<Object>rbd	<Object>scaleIO	<Object>secret	<Object>storageos	<Object>vsphereVolume	<Object>

我们想要使用存储卷,需要经历如下步骤
1、定义pod的volume,这个volume指明它要关联到哪个存储上的
2、在容器中要使用volumemounts挂载对应的存储

经过以上两步才能正确的使用存储卷

emptyDir类型的Volume是在Pod分配到Node上时被创建,Kubernetes会在Node上自动分配一个目录,
因此无需指定宿主机Node上对应的目录文件。 这个目录的初始内容为空,当Pod从Node上移除时,emptyDir中的数据会被永久删除。
emptyDir Volume主要用于某些应用程序无需永久保存的临时目录,多个容器的共享目录等。

#创建一个pod,挂载临时目录emptyDir

容器挂载volumes解释:

[root@master01 volumes ]#kubectl explain pods.spec.containers.volumeMounts
KIND:     Pod
VERSION:  v1RESOURCE: volumeMounts <[]Object>DESCRIPTION:Pod volumes to mount into the container's filesystem. Cannot be updated.VolumeMount describes a mounting of a Volume within a container.FIELDS:mountPath	<string> -required-Path within the container at which the volume should be mounted. Must notcontain ':'.mountPropagation	<string>mountPropagation determines how mounts are propagated from the host tocontainer and the other way around. When not set, MountPropagationNone isused. This field is beta in 1.10.name	<string> -required-This must match the Name of a Volume.readOnly	<boolean>Mounted read-only if true, read-write otherwise (false or unspecified).Defaults to false.subPath	<string>Path within the volume from which the container's volume should be mounted.Defaults to "" (volume's root).subPathExpr	<string>Expanded path within the volume from which the container's volume should bemounted. Behaves similarly to SubPath but environment variable references$(VAR_NAME) are expanded using the container's environment. Defaults to ""(volume's root). SubPathExpr and SubPath are mutually exclusive.

创建一个emptydir的yaml文件

[root@master01 volumes ]#cat emptydir.yaml 
apiVersion: v1
kind: Pod
metadata:name: pod-empty
spec:containers:- name: container-emptyimage: nginximagePullPolicy: IfNotPresentvolumeMounts:- mountPath: /cachename: cache-volumevolumes:- emptyDir: {}name: cache-volume  临时目录的名字
[root@master01 volumes ]#kubectl apply -f emptydir.yaml 
pod/pod-empty created

查看本机临时目录存在的位置,可用如下方法:
#查看pod调度到哪个节点

[root@master01 volumes ]#kubectl get pods  -owide
NAME        READY   STATUS    RESTARTS   AGE   IP             NODE     NOMINATED NODE   READINESS GATES
pod-empty   1/1     Running   0          46s   172.29.55.10   node01   <none>           <none>

#查看pod的uid

[root@master01 volumes ]#kubectl get pods -oyaml|grep -i uiduid: 95ebf93e-c8ad-4bc6-965f-5f289d8b351e

#登录到node01上
每创建一个pod。都会有一个UID
根据uid查看volume位置,默认情况下pod的存储位置在/var/lib/kubelet/pods/下面根据UID找到对应的pod

[root@node01 ~ ]#tree /var/lib/kubelet/pods/95ebf93e-c8ad-4bc6-965f-5f289d8b351e
/var/lib/kubelet/pods/95ebf93e-c8ad-4bc6-965f-5f289d8b351e
├── containers
│   └── container-empty
│       └── 96789484
├── etc-hosts
├── plugins
│   └── kubernetes.io~empty-dir
│       ├── cache-volume
│       │   └── ready
│       └── wrapped_kube-api-access-6bggs
│           └── ready
└── volumes├── kubernetes.io~empty-dir│   └── cache-volume└── kubernetes.io~projected└── kube-api-access-6bggs├── ca.crt -> ..data/ca.crt├── namespace -> ..data/namespace└── token -> ..data/token11 directories, 7 files

由上可知,临时目录在本地的 /var/lib/kubelet/pods/95ebf93e-c8ad-4bc6-965f-5f289d8b351e/volumes/kubernetes.io~empty-dir/cache-volume

进容器中看看:

[root@node01 ~ ]#docker exec -it a8dec08364e7 /bin/bash
root@pod-empty:/# ls -l
total 12
drwxr-xr-x   2 root root 4096 Sep 12 00:00 bin
drwxr-xr-x   2 root root    6 Sep  3 12:10 boot
drwxrwxrwx   2 root root    6 Sep 21 02:22 cache
drwxr-xr-x   5 root root  360 Sep 21 02:22 dev
drwxr-xr-x   1 root root   41 Sep 13 06:29 docker-entrypoint.d
-rwxrwxr-x   1 root root 1202 Sep 13 06:29 docker-entrypoint.sh
drwxr-xr-x   1 root root   19 Sep 21 02:22 etc
drwxr-xr-x   2 root root    6 Sep  3 12:10 home
drwxr-xr-x   1 root root   45 Sep 12 00:00 lib
drwxr-xr-x   2 root root   34 Sep 12 00:00 lib64
drwxr-xr-x   2 root root    6 Sep 12 00:00 media
drwxr-xr-x   2 root root    6 Sep 12 00:00 mnt
drwxr-xr-x   2 root root    6 Sep 12 00:00 opt
dr-xr-xr-x 227 root root    0 Sep 21 02:22 proc
drwx------   2 root root   37 Sep 12 00:00 root
drwxr-xr-x   1 root root   38 Sep 21 02:22 run
drwxr-xr-x   2 root root 4096 Sep 12 00:00 sbin
drwxr-xr-x   2 root root    6 Sep 12 00:00 srv
dr-xr-xr-x  13 root root    0 Sep 21 02:22 sys
drwxrwxrwt   1 root root    6 Sep 13 06:29 tmp
drwxr-xr-x   1 root root   66 Sep 12 00:00 usr
drwxr-xr-x   1 root root   19 Sep 12 00:00 var
root@pod-empty:/cache# df -h
Filesystem           Size  Used Avail Use% Mounted on
overlay               38G  4.5G   33G  13% /
tmpfs                 64M     0   64M   0% /dev
tmpfs                1.5G     0  1.5G   0% /sys/fs/cgroup
/dev/mapper/cl-root   38G  4.5G   33G  13% /cache
shm                   64M     0   64M   0% /dev/shm
tmpfs                2.8G   12K  2.8G   1% /run/secrets/kubernetes.io/serviceaccount
tmpfs                1.5G     0  1.5G   0% /proc/acpi
tmpfs                1.5G     0  1.5G   0% /proc/scsi
tmpfs                1.5G     0  1.5G   0% /sys/firmware

在容器里面挂载目录下创建文件

root@pod-empty:/cache# pwd
/cache

root@pod-empty:/cache# touch 123
root@pod-empty:/cache# ls -l
total 0
-rw-r–r-- 1 root root 0 Sep 21 02:42 123

退出容器,在宿主机目录下查看:

[root@node01 cache-volume ]#pwd
/var/lib/kubelet/pods/95ebf93e-c8ad-4bc6-965f-5f289d8b351e/volumes/kubernetes.io~empty-dir/cache-volume

[root@node01 cache-volume ]#ll
total 0
-rw-r–r-- 1 root root 0 Sep 21 10:42 123

可见在宿主机对应目录下也创建了文件

pod如果被删除,临时目录也就没了,pod的UID所在目录没了

也可以直接用kubectl进去pod中查看:

[root@master01 volumes ]#kubectl exec -it pod-empty – /bin/bash

root@pod-empty:/# cd cache/
root@pod-empty:/cache# ls
123

2、k8s持久化存储:hostPath

hostPath Volume是指Pod挂载宿主机上的目录或文件。 hostPath Volume使得容器可以使用宿主机的文件系统进行存储,
hostpath(宿主机路径):节点级别的存储卷,在pod被删除,这个存储卷还是存在的,不会被删除,
所以只要同一个pod被调度到同一个节点上来,在pod被删除重新被调度到这个节点之后,对应的数据依然是存在的。

#查看hostPath存储卷的用法

[root@master01 volumes ]#kubectl explain pods.spec.volumes.hostPath
KIND:     Pod
VERSION:  v1RESOURCE: hostPath <Object>DESCRIPTION:HostPath represents a pre-existing file or directory on the host machinethat is directly exposed to the container. This is generally used forsystem agents or other privileged things that are allowed to see the hostmachine. Most containers will NOT need this. More info:https://kubernetes.io/docs/concepts/storage/volumes#hostpathRepresents a host path mapped into a pod. Host path volumes do not supportownership management or SELinux relabeling.FIELDS:path	<string> -required-Path of the directory on the host. If the path is a symlink, it will followthe link to the real path. More info:https://kubernetes.io/docs/concepts/storage/volumes#hostpathtype	<string>Type for HostPath Volume Defaults to "" More info:https://kubernetes.io/docs/concepts/storage/volumes#hostpath

支持的 type 值如下:

取值 行为
空字符串(默认)用于向后兼容,这意味着在安装 hostPath 卷之前不会执行任何检查。
DirectoryOrCreate 如果在给定路径上什么都不存在,那么将根据需要创建空目录,权限设置为 0755,具有与 Kubelet 相同的组和所有权。
Directory 在给定路径上必须存在的目录。
FileOrCreate 如果在给定路径上什么都不存在,那么将在那里根据需要创建空文件,权限设置为 0644,具有与 Kubelet 相同的组和所有权。
File 在给定路径上必须存在的文件。
Socket 在给定路径上必须存在的 UNIX 套接字。
CharDevice 在给定路径上必须存在的字符设备。
BlockDevice 在给定路径上必须存在的块设备。

#把tomcat.tar.gz上传到node01上,手动解压:

[root@node01 volumes ]#docker load -i tomcat.tar.gz

#创建一个pod,挂载hostPath存储卷

[root@master01 volumes ]#cat hostpath.yaml 
apiVersion: v1
kind: Pod
metadata:name: test-hostpath
spec:containers:- image: nginximagePullPolicy: IfNotPresentname: test-nginxvolumeMounts:- mountPath: /test-nginxname: test-volume- image: tomcat:8.5-jre8-alpineimagePullPolicy: IfNotPresentname: test-tomcatvolumeMounts:- mountPath: /test-tomcatname: test-volumevolumes:- name: test-volumehostPath:path: /data1type: DirectoryOrCreate 

#查看pod调度到了哪个物理节点

[root@master01 volumes ]#kubectl get pods -o wide | grep hostpath
test-hostpath                      2/2     Running   0              11m   172.29.55.31   node01   <none>           <none>

#由上面可以知道pod调度到了node01上,登录到node01机器,查看是否在这台机器创建了存储目录

[root@node01 volumes ]#ll /data1/
total 0

#上面可以看到已经创建了存储目录/data1,这个/data1会作为pod的持久化存储目录

#在node01上的/data1下创建一个目录

[root@node01 volumes ]#cd /data1/
[root@node01 data1 ]#ll
total 0
[root@node01 data1 ]#mkdir aa
[root@node01 data1 ]#ll
total 0
drwxr-xr-x 2 root root 6 Sep 22 11:20 aa

#测试存储卷是否可以正常使用,登录到nginx容器,查看共享目录下是否创建了aa

[root@master01 volumes ]#kubectl exec -it test-hostpath -c test-nginx – /bin/bash

root@test-hostpath:/# cd /test-nginx/

root@test-hostpath:/test-nginx# ls
aa

#测试存储卷是否可以正常使用,登录到tomcat容器

[root@master01 volumes ]#kubectl exec -it test-hostpath -c test-tomcat – /bin/bash

bash-4.4# cd /test-tomcat/
bash-4.4# ls -l
total 0
drwxr-xr-x 2 root root 6 Sep 22 03:20 aa

#通过上面测试可以看到,同一个pod里的test-nginx和test-tomcat这两个容器是共享存储卷的。

hostpath存储卷缺点:
单节点
pod删除之后重新创建必须调度到同一个node节点,数据才不会丢失

可以用分布式存储:
nfs,cephfs,glusterfs

3、k8s持久化存储:nfs

上节说的hostPath存储,存在单点故障,pod挂载hostPath时,只有调度到同一个节点,数据才不会丢失。那可以使用nfs作为持久化存储。

1、搭建nfs服务

以k8s的控制节点作为NFS服务端

#在宿主机创建NFS需要的共享目录

[root@master01 data ]#vim /etc/exports
/data/v1 10.10.0.0/24(rw,no_root_squash)
/data/volumes 10.10.0.0/24(rw,no_root_squash)

在node01上手动挂载试试:

[root@node01 ~ ]#mkdir /test

[root@node01 ~ ]#mount.nfs 10.10.0.10:/data/volumes /test/

[root@node01 ~ ]#df -h10.10.0.10:/data/volumes                                                                      38G  5.8G   32G  16% /test

#nfs可以被正常挂载
#手动卸载:
[root@node01 ~ ]#umount /test

2.创建Pod,挂载NFS共享出来的目录

[root@master01 volumes ]#cat nfs.yaml 
apiVersion: v1
kind: Pod
metadata:name: test-nfs-volume
spec:containers:- name: test-nfsimage: nginximagePullPolicy: IfNotPresentports:- containerPort: 80protocol: TCPvolumeMounts:- name: nfs-volumesmountPath: /usr/share/nginx/htmlvolumes:- name: nfs-volumesnfs:path: /data/volumesserver: 10.10.0.10
[root@master01 volumes ]#kubectl get pods
NAME                               READY   STATUS    RESTARTS        AGE
counter                            1/1     Running   0               3h11m
nfs-provisioner-685d4995b6-m56f8   1/1     Running   2 (4h30m ago)   17h
test-hostpath                      2/2     Running   0               137m
test-nfs-volume                    1/1     Running   0               9s

[root@master01 volumes ]#

#登录到nfs服务器,在共享目录创建一个index.html

[root@master01 volumes ]#vim index.html
Hello.Everyone!
My name is jingtian
My Chat is little

3.请求pod,看结果

[root@master01 volumes ]#kubectl get pods -owide
NAME                               READY   STATUS    RESTARTS        AGE     IP             NODE     NOMINATED NODE   READINESS GATES
counter                            1/1     Running   0               3h14m   172.29.55.29   node01   <none>           <none>
nfs-provisioner-685d4995b6-m56f8   1/1     Running   2 (4h33m ago)   17h     172.29.55.25   node01   <none>           <none>
test-hostpath                      2/2     Running   0               140m    172.29.55.31   node01   <none>           <none>
test-nfs-volume                    1/1     Running   0               3m5s    172.29.55.32   node01   <none>           <none>
[root@master01 volumes ]#curl 172.29.55.32
Hello.Everyone!
My name is jingtian
My Chat is little

#通过上面可以看到,在共享目录创建的index.html已经被pod挂载了

#登录到pod验证下

[root@master01 volumes ]#kubectl exec -it test-nfs-volume – /bin/bash
root@test-nfs-volume:/#

root@test-nfs-volume:/# cat /usr/share/nginx/html/index.html 
Hello.Everyone!
My name is jingtian
My Chat is little

#上面说明挂载nfs存储卷成功了,nfs支持多个客户端挂载,
可以创建多个pod,挂载同一个nfs服务器共享出来的目录;
但是nfs如果宕机了,数据也就丢失了,所以需要使用分布式存储,
常见的分布式存储有glusterfs和cephfs

4、k8s持久化存储: PVC

4.1.1 k8s PV是什么?

PersistentVolume(PV)是群集中的一块存储,由管理员配置或使用存储类动态配置。
它是集群中的资源,就像pod是k8s集群资源一样。 PV是容量插件,如Volumes,其生命周期独立于使用PV的任何单个pod。

4.1.2 k8s PVC是什么?

PersistentVolumeClaim(PVC)是一个持久化存储卷,我们在创建pod时可以定义这个类型的存储卷。
它类似于一个pod。 Pod消耗节点资源,PVC消耗PV资源。 Pod可以请求特定级别的资源(CPU和内存)。
pvc在申请pv的时候也可以请求特定的大小和访问模式(例如,可以一次读写或多次只读)。

4.1.3 k8s PVC和PV工作原理

PV是群集中的资源。 PVC是对这些资源的请求。
PV和PVC之间的相互作用遵循以下生命周期:

(1)pv的供应方式

可以通过两种方式配置PV:静态或动态。

静态的:
集群管理员创建了许多PV。它们包含可供群集用户使用的实际存储的详细信息。
它们存在于Kubernetes API中,可供使用。

动态的:
当管理员创建的静态PV都不匹配用户的PersistentVolumeClaim时,群集可能会尝试为PVC专门动态配置卷。
此配置基于StorageClasses,PVC必须请求存储类,管理员必须创建并配置该类,以便进行动态配置。

(2)绑定

用户创建pvc并指定需要的资源和访问模式。在找到可用pv之前,pvc会保持未绑定状态

(3)使用

a)需要找一个存储服务器,把它划分成多个存储空间;
b)k8s管理员可以把这些存储空间定义成多个pv;
c)在pod中使用pvc类型的存储卷之前需要先创建pv,通过定义需要使用的pv的大小和对应的访问模式,找到合适的pv;
d)pvc被创建之后,就可以当成存储卷来使用了,我们在定义pod时就可以使用这个pvc的存储卷
e)pvc和pv它们是一一对应的关系,pv如果被pvc绑定了,就不能被其他pvc使用了;
f)我们在创建pvc的时候,应该确保和底下的pv能绑定,如果没有合适的pv,那么pvc就会处于pending状态。

(4)回收策略

当我们创建pod时如果使用pvc做为存储卷,那么它会和pv绑定,当删除pod,pvc和pv绑定就会解除,
解除之后和pvc绑定的pv卷里的数据需要怎么处理,目前,卷可以保留,回收或删除:
Retain
Recycle (不推荐使用,1.15可能被废弃了)
Delete

1、Retain
当删除pvc的时候,pv仍然存在,处于released状态,但是它不能被其他pvc绑定使用,
里面的数据还是存在的,当我们下次再使用的时候,数据还是存在的,这个是默认的回收策略

2、Delete
删除pvc时即会从Kubernetes中移除PV,也会从相关的外部设施中删除存储资产

4.1.4 创建pod,使用pvc作为持久化存储卷

1、创建nfs共享目录

#在宿主机创建NFS需要的共享目录

[root@master01 data ]#mkdir -p volumes_test/v{1…10}

#配置nfs共享宿主机上的/data/volume_test/v1…v10目录

[root@master01 volumes ]#vim /etc/exports
/data/v1 10.10.0.0/24(rw,no_root_squash)
/data/volumes 10.10.0.0/24(rw,no_root_squash)
/data/volumes_test/v1 10.10.0.0/24(rw,no_root_squash)
/data/volumes_test/v2 10.10.0.0/24(rw,no_root_squash)
/data/volumes_test/v3 10.10.0.0/24(rw,no_root_squash)
/data/volumes_test/v4 10.10.0.0/24(rw,no_root_squash)
/data/volumes_test/v5 10.10.0.0/24(rw,no_root_squash)
/data/volumes_test/v6 10.10.0.0/24(rw,no_root_squash)
/data/volumes_test/v7 10.10.0.0/24(rw,no_root_squash)
/data/volumes_test/v8 10.10.0.0/24(rw,no_root_squash)
/data/volumes_test/v9 10.10.0.0/24(rw,no_root_squash)
/data/volumes_test/v10 10.10.0.0/24(rw,no_root_squash)
[root@master01 volumes ]#exportfs -arv
exporting 10.10.0.0/24:/data/volumes_test/v10
exporting 10.10.0.0/24:/data/volumes_test/v9
exporting 10.10.0.0/24:/data/volumes_test/v8
exporting 10.10.0.0/24:/data/volumes_test/v7
exporting 10.10.0.0/24:/data/volumes_test/v6
exporting 10.10.0.0/24:/data/volumes_test/v5
exporting 10.10.0.0/24:/data/volumes_test/v4
exporting 10.10.0.0/24:/data/volumes_test/v3
exporting 10.10.0.0/24:/data/volumes_test/v2
exporting 10.10.0.0/24:/data/volumes_test/v1
exporting 10.10.0.0/24:/data/volumes
exporting 10.10.0.0/24:/data/v1

2、如何编写pv的资源清单文件

#查看定义pv需要的字段

[root@master01 volumes ]#kubectl explain pv.spec.nfs
KIND:     PersistentVolume
VERSION:  v1RESOURCE: nfs <Object>DESCRIPTION:NFS represents an NFS mount on the host. Provisioned by an admin. Moreinfo: https://kubernetes.io/docs/concepts/storage/volumes#nfsRepresents an NFS mount that lasts the lifetime of a pod. NFS volumes donot support ownership management or SELinux relabeling.FIELDS:path	<string> -required-Path that is exported by the NFS server. More info:https://kubernetes.io/docs/concepts/storage/volumes#nfsreadOnly	<boolean>ReadOnly here will force the NFS export to be mounted with read-onlypermissions. Defaults to false. More info:https://kubernetes.io/docs/concepts/storage/volumes#nfsserver	<string> -required-Server is the hostname or IP address of the NFS server. More info:https://kubernetes.io/docs/concepts/storage/volumes#nfs

访问模式(accessModes)
ReadWriteOnce——该卷可以被单个节点以读/写模式挂载

ReadOnlyMany——该卷可以被多个节点以只读模式挂载

ReadWriteMany——该卷可以被多个节点以读/写模式挂载

在命令行中,访问模式缩写为:

​ RWO - ReadWriteOnce
​ ROX - ReadOnlyMany
​ RWX - ReadWriteMany

3、创建pv

[root@master01 volumes ]#cat pv.yaml 
apiVersion: v1
kind: PersistentVolume
metadata:name:  v1
spec:capacity:storage: 1Gi  #pv的存储空间容量accessModes: ["ReadWriteOnce"]nfs:path: /data/volumes_test/v1 #把nfs的存储空间创建成pvserver: 10.10.0.10     #nfs服务器的地址
---
apiVersion: v1
kind: PersistentVolume
metadata:name:  v2
spec:persistentVolumeReclaimPolicy: Deletecapacity:storage: 2GiaccessModes: ["ReadWriteMany"]nfs:path: /data/volumes_test/v2server: 10.10.0.10
---
apiVersion: v1
kind: PersistentVolume
metadata:name:  v3
spec:capacity:storage: 3GiaccessModes: ["ReadOnlyMany"]nfs:path: /data/volumes_test/v3server: 10.10.0.10
---
apiVersion: v1
kind: PersistentVolume
metadata:name:  v4
spec:capacity:storage: 4GiaccessModes: ["ReadWriteOnce","ReadWriteMany"]nfs:path: /data/volumes_test/v4server: 10.10.0.10
---
apiVersion: v1
kind: PersistentVolume
metadata:name:  v5
spec:capacity:storage: 5GiaccessModes: ["ReadWriteOnce","ReadWriteMany"]nfs:path: /data/volumes_test/v5server: 10.10.0.10
---
apiVersion: v1
kind: PersistentVolume
metadata:name:  v6
spec:capacity:storage: 6GiaccessModes: ["ReadWriteOnce","ReadWriteMany"]nfs:path: /data/volumes_test/v6server: 10.10.0.10
---
apiVersion: v1
kind: PersistentVolume
metadata:name:  v7
spec:capacity:storage: 7GiaccessModes: ["ReadWriteOnce","ReadWriteMany"]nfs:path: /data/volumes_test/v7server: 10.10.0.10
---
apiVersion: v1
kind: PersistentVolume
metadata:name:  v8
spec:capacity:storage: 8GiaccessModes: ["ReadWriteOnce","ReadWriteMany"]nfs:path: /data/volumes_test/v8server: 10.10.0.10
---
apiVersion: v1
kind: PersistentVolume
metadata:name:  v9
spec:capacity:storage: 9GiaccessModes: ["ReadWriteOnce","ReadWriteMany"]nfs:path: /data/volumes_test/v9server: 10.10.0.10
---
apiVersion: v1
kind: PersistentVolume
metadata:name:  v10
spec:capacity:     storage: 10GiaccessModes: ["ReadWriteOnce","ReadWriteMany"]nfs:path: /data/volumes_test/v10  server: 10.10.0.10

#更新资源清单文件

[root@master01 volumes ]#kubectl apply -f pv.yaml 
persistentvolume/v1 created
persistentvolume/v2 created
persistentvolume/v3 created
persistentvolume/v4 created
persistentvolume/v5 created
persistentvolume/v6 created
persistentvolume/v7 created
persistentvolume/v8 created
persistentvolume/v9 created
persistentvolume/v10 created

#查看pv资源

[root@master01 volumes ]#kubectl get pv
NAME                                       CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS      CLAIM                            STORAGECLASS       REASON   AGE
v1                                         1Gi        RWO            Retain           Available                                                                28s
v10                                        10Gi       RWO,RWX        Retain           Available                                                                28s
v2                                         2Gi        RWX            Delete           Available                                                                28s
v3                                         3Gi        ROX            Retain           Available                                                                28s
v4                                         4Gi        RWO,RWX        Retain           Available                                                                28s
v5                                         5Gi        RWO,RWX        Retain           Available                                                                28s
v6                                         6Gi        RWO,RWX        Retain           Available                                                                28s
v7                                         7Gi        RWO,RWX        Retain           Available                                                                28s
v8                                         8Gi        RWO,RWX        Retain           Available                                                                28s
v9                                         9Gi        RWO,RWX        Retain           Available                                                                28s

#STATUS是Available,表示pv是可用的

4、创建pvc,和符合条件的pv绑定,会自动匹配大小相同的PV

[root@master01 volumes ]#cat pvc.yaml 
apiVersion: v1
kind: PersistentVolumeClaim
metadata:name: my-pvc
spec:accessModes: ["ReadWriteMany"]resources:requests:storage: 2Gi

#查看pv和pvc

[root@master01 volumes ]#kubectl get pv
NAME                                       CAPACITY   ACCESS MODES   RECLAIM POLICY   STATUS      CLAIM                            STORAGECLASS       REASON   AGE
v1                                         1Gi        RWO            Retain           Available                                                                3m29s
v10                                        10Gi       RWO,RWX        Retain           Available                                                                3m29s
v2                                         2Gi        RWX            Delete           Bound       default/my-pvc                                               3m29s
v3                                         3Gi        ROX            Retain           Available                                                                3m29s
v4                                         4Gi        RWO,RWX        Retain           Available                                                                3m29s
v5                                         5Gi        RWO,RWX        Retain           Available                                                                3m29s
v6                                         6Gi        RWO,RWX        Retain           Available                                                                3m29s
v7                                         7Gi        RWO,RWX        Retain           Available                                                                3m29s
v8                                         8Gi        RWO,RWX        Retain           Available                                                                3m29s
v9                                         9Gi        RWO,RWX        Retain           Available                                                                3m29s
[root@master01 volumes ]#kubectl get pvc
NAME     STATUS   VOLUME   CAPACITY   ACCESS MODES   STORAGECLASS   AGE
my-pvc   Bound    v2       2Gi        RWX                           5s

#STATUS是Bound,表示这个pv已经被my-pvc绑定了

pvc的名字-绑定到pv-绑定的是v2这个pv-pvc可使用的容量是2G

5、创建pod,挂载pvc

[root@master01 volumes ]#cat pod_pvc.yaml 
apiVersion: v1
kind: Pod
metadata:name: pod-pvc
spec:containers:- name: nginximage: nginximagePullPolicy: IfNotPresentvolumeMounts:- name: nginx-htmlmountPath: /usr/share/nginx/htmlvolumes:- name: nginx-htmlpersistentVolumeClaim:claimName: my-pvc
[root@master01 volumes ]#kubectl apply -f pod_pvc.yaml 
pod/pod-pvc created
[root@master01 volumes ]#kubectl get pods
NAME                               READY   STATUS    RESTARTS      AGE
counter                            1/1     Running   1 (18m ago)   4h10m
nfs-provisioner-685d4995b6-m56f8   1/1     Running   3 (19m ago)   18h
pod-pvc                            1/1     Running   0             6s
test-hostpath                      2/2     Running   2 (19m ago)   3h16m
test-nfs-volume                    1/1     Running   1 (19m ago)   59m

注:使用pvc和pv的注意事项
1、我们每次创建pvc的时候,需要事先有划分好的pv,这样可能不方便,
那么可以在创建pvc的时候直接动态创建一个pv这个存储类,pv事先是不存在的
2、pvc和pv绑定,如果使用默认的回收策略retain,那么删除pvc之后,pv会处于released状态,
我们想要继续使用这个pv,需要手动删除pv,kubectl delete pv pv_name,删除pv,不会删除pv里的数据,
当我们重新创建pvc时还会和这个最匹配的pv绑定,数据还是原来数据,不会丢失。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/707811.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

BOOT电路

本质&#xff1a;BOOT电路本质上是单片机的引脚 作用&#xff1a;BOOT电路的作用是用于确定单片机的启动模式 使用方法&#xff1a;在单片机上电或者复位时给BOOT管脚设置为指定电平即可将单片机设置为指定启动模式。 原理&#xff1a;单片机上电或复位后会先启动内部晶振&a…

【C++进阶】哈希 + unordered系列容器

&#x1f466;个人主页&#xff1a;Weraphael ✍&#x1f3fb;作者简介&#xff1a;目前学习C和算法 ✈️专栏&#xff1a;C航路 &#x1f40b; 希望大家多多支持&#xff0c;咱一起进步&#xff01;&#x1f601; 如果文章对你有帮助的话 欢迎 评论&#x1f4ac; 点赞&#x1…

华为 OD 一面算法原题

2.2 亿彩票公布调查结果 昨天&#xff0c;闹得沸沸扬扬的《10 万中 2.2 亿》的彩票事件&#xff0c;迎来了官方公告。 简单来说&#xff0c;调查结果就是&#xff1a;一切正常&#xff0c;合规合法。 关于福利彩票事件&#xff0c;之前的推文我们已经分析过。 甚至在后面出现《…

IP地址(YACS)

题目描述 IP地址是一个长度固定为 3232 位 的 01 序列&#xff0c;给定一个IP地址&#xff0c;请将它转成点分十进制后输出。 点分十进制的转化方法如下&#xff1a;首先将IP地址分割成长度相等的四个二进制数字&#xff08;每个二进制数字的长度为 88&#xff09;&#xff0…

鸿运(通天星CMSV6车载)主动安全监控云平台敏感信息泄露漏洞

文章目录 前言声明一、系统简介二、漏洞描述三、影响版本四、漏洞复现五、修复建议 前言 鸿运主动安全监控云平台实现对计算资源、存储资源、网络资源、云应用服务进行7*24小时全时区、多地域、全方位、立体式、智能化的IT运维监控&#xff0c;保障IT系统安全、稳定、可靠运行…

unity初学问题:如何修改图片的坐标

如图&#xff0c;我们想要修改图片的轴心点坐标&#xff08;Pivot&#xff09; 选择图片组 打开编辑器在里面修改即可&#xff08;最下面的Custom Pivot&#xff09;

golang使用gorm操作mysql1

1.mysql连接配置 package daoimport ("fmt""gorm.io/driver/mysql""gorm.io/gorm""gorm.io/gorm/logger" )var DB *gorm.DB// 连接数据库&#xff0c;启动服务的时候&#xff0c;init方法就会执行 func init() {username : "roo…

浅谈 Linux 网络编程 - 网络字节序

文章目录 前言核心知识关于 小端法关于 大端法网络字节序的转换 函数 前言 在进行 socket 网络编程时&#xff0c;会用到字节流的转换函数、例如 inet_pton、htons 等&#xff0c;那么为什么要用到这些函数呢&#xff0c;本篇主要就是对这部分进行介绍。 核心知识 重点需要记…

数仓项目6.0(二)数仓

中间的几步意义就在于&#xff0c;缓存中间处理数据样式&#xff0c;避免重复计算浪费算力 分层 ODS&#xff08;Operate Data Store&#xff09; Spark计算过程中&#xff0c;存在shuffle的操作&#xff0c;而shuffle会将计算过程一分为二&#xff0c;前一阶段不执行完&…

链表之“带头双向循环链表”

目录 ​编辑 1.链表的分类 2.带头双向循环链表的实现 1.创建结构体 2.创建返回链表的头节点 3.双向链表销毁 4.双向链表打印 5.双向链表尾插 6.双向链表尾删 7.双向链表头插 8.双向链表头删 9.双向链表查找 10.双向链表在pos的前面进行插入 11.双向链表删除pos位…

ECLIP

denote the representation of the positive prompt produced by the momentum model as h ξ i h_{\xi}^{i} hξi​ 辅助信息 作者未提供代码

二刷代码随想录算法训练营第七天 |454.四数相加II 383. 赎金信 15. 三数之和 18. 四数之和

目录 一、454. 四数相加 II 二、383. 赎金信 三、15. 三数之和18. 四数之和 一、454. 四数相加 II 题目链接&#xff1a;力扣 文章讲解&#xff1a;代码随想录 视频讲解&#xff1a; 学透哈希表&#xff0c;map使用有技巧&#xff01;LeetCode&#xff1a;454.四数相加II…

蓝桥杯前端Web赛道-课程列表

蓝桥杯前端Web赛道-课程列表 题目链接&#xff1a;0课程列表 - 蓝桥云课 (lanqiao.cn) 题目要求如下&#xff1a; 分析题目我们发现其实就是需要我们手写一个分页的功能&#xff0c;根据题目的要求&#xff0c;分析如下 需要通过axios获取数据每页显示5条数据&#xff0c;默…

P1927 防护伞

题目传送门 题目描述 据说 2012 的灾难和太阳黑子的爆发有关。于是地球防卫小队决定制造一个特殊防护伞&#xff0c;挡住太阳黑子爆发的区域&#xff0c;减少其对地球的影响。由于太阳相对于地球来说实在是太大了&#xff0c;我们可以把太阳表面看作一个平面&#xff0c;中心…

黑马程序员java部分笔记(持续更新)九点六:数组的常见操作

数组的常见操作&#xff1a; 求最值 求和 交换数据 打乱数据 ---------------------------------------------------------------------------------------------------------------------------------1.求最值&#xff1a;【个人建议看看B站上的视频&#xff0c;提有意思的】…

11.vue学习笔记(组件生命周期+生命周期应用+动态组件+组件保持存活)

文章目录 1.组件生命周期2.生命周期应用2.1通过ref获取元素DOM结构2.2.模拟网络请求渲染数据 3.动态组件3.1.A&#xff0c;B两个组件 4.组件保持存活&#xff08;销毁期&#xff09; 1.组件生命周期 每个Vue组件实例在创建时都需要经历一系列的初始化步骤&#xff0c;比如设置…

Android摄像头横屏的时候_人脸预览横向显示_问题解决---Android原生开发工作笔记164

在Android系统的平板中发现一个问题,我们做的一个Android程序,横屏的时候,摄像头在上面, 然后这个时候程序中的一个人脸预览页面,横向手持平板,摄像头在上面,但是这个时候预览的摄像头画面却是很像头像朝左,也是横过来的. private int getCameraOrientation(int cameraId) {Ca…

Rocky Linux安装部署Elasticsearch(ELK日志服务器)

一、Elasticsearch的简介 Elasticsearch是一个强大的开源搜索和分析引擎&#xff0c;可用于实时处理和查询大量数据。它具有高性能、可扩展性和分布式特性&#xff0c;支持全文搜索、聚合分析、地理空间搜索等功能&#xff0c;是构建实时应用和大规模数据分析平台的首选工具。 …

Linux学习之system V

目录 一&#xff0c;system V共享内存 快速认识接口 shmget(shared memory get) shmat(shared memory attach) shmdt(shared memory delete) shmctl (shared memory control) 编写代码 综上那么共享内存与管道通信有什么区别&#xff1f; system v消息队列 system v信号…

《Effective C++》- 极精简版 41-55条

本文章属于专栏《业界Cpp进阶建议整理》 继续上篇《Effective C》- 极精简版 31-40条。本文列出《Effective C》的41-55条的个人理解的极精简版本。 40、谨慎使用多重继承 个人见解&#xff1a;这是一个性价比不高的功能&#xff0c;容易出错&#xff0c;且收益不高。java语言…