k8s volume
emptyDir
hostPath
gcePersistentDisk
awsElasticBlockStore
nfs
iscsi
flocker
glusterfs
rbd
cephfs
gitRepo
secret
persistentVolumeClaim
downwardAPI
azureFileVolume
vsphereVolume
Some uses for an emptyDir
are:
- scratch space, such as for a disk-based merge sort
- checkpointing a long computation for recovery from crashes
- holding files that a content-manager container fetches while a webserver container serves the data
- 运行一个容器,需要访问Docker的内部,则用hostPath挂载/var/lib/docker
- 在container中运行一个cAdvisor,使用hostPath挂载 /dev/cgroups
- 因为在不同的node中,文件不同,所以使用相同配置的pod(比如,从podTemplate创建的)可能在不同的node上,有不同的行为。
- 当k8s添加 resource-aware scheduling,就不能认为资源是由hostPath使用( when Kubernetes adds resource-aware scheduling, as is planned, it will not be able to account for resources used by a
hostPath
) - 在underlying hosts创建的文件夹,只能被root写,你需要在一个特权容器中,使用root运行你的进程,或者更改host的文件权限,以便可以写入hostPath volume
name: test-pdspec:
containers:
- image: gcr.io/google_containers/test-webserver
name: test-container
volumeMounts:
- mountPath: /test-pd
name: test-volume
volumes:
- name: test-volume
hostPath:
# directory location on host
name: test-hostpathspec:
containers:
- image: myimage
name: test-container
volumeMounts:
- mountPath: /test-hostpath
name: test-volume
volumes:
- name: test-volume
hostPath:
path: /path/to/my/dir
- Persistent Volumes定义一个持久的disk(disk的生命周期不和Pod相关联)
- Services to enable Pods to locate one another.
- 前台的web Pod使用一个基于NFS服务的PV
- NFS服务使用一个被GCE PD或者AWS EBS自动分配的 persistent volume
$ kubectl create -f examples/volumes/nfs/nfs-server-rc.yaml
$ kubectl create -f examples/volumes/nfs/nfs-server-service.yaml
# get the cluster IP of the server using the following command
$ kubectl describe services nfs-server
# use the NFS server IP to update nfs-pv.yaml and execute the following
$ kubectl create -f examples/volumes/nfs/nfs-pv.yaml
$ kubectl create -f examples/volumes/nfs/nfs-pvc.yaml
# run a fake backend
$ kubectl create -f examples/volumes/nfs/nfs-busybox-rc.yaml
# get pod name from this command
$ kubectl get pod -l name=nfs-busybox
# use the pod name to check the test file
$ kubectl exec nfs-busybox-jdhf3 -- cat /mnt/index.html
$ kubectl create -f examples/volumes/nfs/nfs-pvc.yaml
describe services
command above had endpoints listed) (表明这个service和运行的Pod关联起来)。- nitors: ceph的monitors
- pool: RADOS pool的名称,如果没有提供的话,将会使用默认的rdb pool
- image: rdb创建的image的名称
- user: RADOS用户名称,如果没有提供,将会使用默认的admin
- keyring: keyring文件的路径,如果没有提供,将会使用默认的/etc/ceph/keyring
- secretName: 验证密码的名称,如果提供了,secretName将会重写keyring。注意: 看下面如何创建一个secret
- fsType: 文件系统的类型(ext4, xfs等),对应的是设备上的格式
- readOnly: 这个文件系统是不是被用作只读的在容器中磁盘文件寿命是短暂的,当在容器中运行一些重要程序时,这会产生一些问题。 首先,当一个容器崩溃后,kubelet将重新启动该容器,但是文件将会丢失 - 容器将会以最初的状态启动。 第二,当在一个Pod中运行多个容器的时候,它需要在多个容器中共享文件。 k8s的Volume就是为了解决这些问题
BackgroundDocker也有 volumes的概念, 尽管它点失败和缺乏有效的管理。 在Docker里, 一个volume是一个简单的磁盘上的目录或者在其他容器中。 Lifetimes are not managed and until very recently there were only local-disk-backed volumes。 Docker现在开始提供新的存储驱动,但是这个功能是被限制的(例如,在Docker1.7中,每一个container只允许有一个volume,而且也没有什么办法向volume传递参数)一个K8s的Volume,有一个明确的生命周期,和它所在的Pod一样。 因此,一个Volume和任何container无关,而是在Pod中存在,所以即使contaner重启了,数据也保存着。当然,当一个Pod不再存在,这个volume也不再存在。也许比这更重要的是,k8s支持多类型的volume,一个Pod可以同时使用任意数量的volume.它的核心概念是,一个volume仅仅是一个目录,可能在其中有一些数据,这些数据对pod中的container是可访问的。这是目录是怎么来的,背后的媒介是什么,正在使用volume的特定类型所决定的内容是什么( the contents of it are determined by the particular volume type used.)为了使用volume,一个pod需要指定什么样的volume提供给pod(spec.volumes字段),把他们挂载到容器的哪里(在spec.containers.volumeMounts中设置)。A process in a container sees a filesystem view composed from their Docker image and volumes。 Docker iamge位于文件系统的最低层, 在image中,任何volume都可以挂载到指定路径。Volume不能挂载到其他的volume(目录不可重复挂载volume),不能和其他的volume有hard link( Volumes can not mount onto other volumes or have hard links to other volumes)。每一个在pod中的container必须独立的指定每一个volume的挂载点。Types of Volumesk8s支持以下类型的volume:
emptyDir
hostPath
gcePersistentDisk
awsElasticBlockStore
nfs
iscsi
flocker
glusterfs
rbd
cephfs
gitRepo
secret
persistentVolumeClaim
downwardAPI
azureFileVolume
vsphereVolume
当一个pod指定到一个node的时候,一个emptyDir volumn就会被创建,只要pod在node上运行,该volume就会一直存在。就像他的名称一样,初始化的时候是个空的目录。在这个emptyDir中,该Pod中的所有容器可以读写到相同的文件虽然,这个emptyDir会被挂载到每一个容器相同或者不同的目录。当一个Pod被从node移除后,对应的emptyDir中的数据会被永久删除。 注意:一个容器崩溃不会将pod从node上移除,所以一个container崩溃,在emptyDir中的数据是安全的。Some uses for an
emptyDir
are:- scratch space, such as for a disk-based merge sort
- checkpointing a long computation for recovery from crashes
- holding files that a content-manager container fetches while a webserver container serves the data
默认情况下,emptyDir volume are stored 不论你后台机器的存储媒介是什么。媒介可能是磁盘或SSD,或者网络存储,这依赖于你的环境。你可以通过把emptyDir.medium设置成"memory"来告诉k8s, 挂载一个tmpfs(RAM-backed filesystem)。tmpfs非常快,但是它不像disk,当你的物理机重启后,tmpfs将会被清空,你所生成的任何文件,都会对你的container的内存限制造成影响。hostPath一个hostPath Volume 挂载一个来自host node的文件系统的一个文件或者目录到你的pod,这里不需要pod做什么, it offers a powerful escape hatch for some applications下面是,一些使用hostPath的例子- 运行一个容器,需要访问Docker的内部,则用hostPath挂载/var/lib/docker
- 在container中运行一个cAdvisor,使用hostPath挂载 /dev/cgroups
当使用hostPath的时候需要注意,因为:- 因为在不同的node中,文件不同,所以使用相同配置的pod(比如,从podTemplate创建的)可能在不同的node上,有不同的行为。
- 当k8s添加 resource-aware scheduling,就不能认为资源是由hostPath使用( when Kubernetes adds resource-aware scheduling, as is planned, it will not be able to account for resources used by a
hostPath
) - 在underlying hosts创建的文件夹,只能被root写,你需要在一个特权容器中,使用root运行你的进程,或者更改host的文件权限,以便可以写入hostPath volume
Example podapiVersion: v1kind: Podmetadata:name: test-pdspec:
containers:
- image: gcr.io/google_containers/test-webserver
name: test-container
volumeMounts:
- mountPath: /test-pd
name: test-volume
volumes:
- name: test-volume
hostPath:
# directory location on hostpath: /dataExample podapiVersion: v1kind: Podmetadata:name: test-hostpathspec:
containers:
- image: myimage
name: test-container
volumeMounts:
- mountPath: /test-hostpath
name: test-volume
volumes:
- name: test-volume
hostPath:
path: /path/to/my/dirNFS一个nfs volume允许一个已存在的NFS(Network file system) 可以共享的挂载到你的pod, 不像emptyDir, 当一个Pod移除的时候,就会被擦出, nfs volume中的内容是保留的,volume仅仅是变为unmounted,这意味着一个NFS volume可以在其中预先放入一些数据。这些数据可以被"handed off" 在pod之间。 NFS可以被多个写入着同时挂载( NFS can be mounted by multiple writers simultaneously)。重要: 在你可以使用share exports前,你必须让你自己的NFS 服务器运行起来。更多的细节请参考 NFS exampleNFS example这里的实例展示了如何创建一个前台的web服务,一个用GCE自动预分配持久存储,一个支持NFS的持久存储请求(an NFS-backed persistent claim)一些k8s的概念- Persistent Volumes定义一个持久的disk(disk的生命周期不和Pod相关联)
- Services to enable Pods to locate one another.
就像上面图展示的一样,这个例子使用了两个PV- 前台的web Pod使用一个基于NFS服务的PV
- NFS服务使用一个被GCE PD或者AWS EBS自动分配的 persistent volume
注意:这个例子里使用的NFS container不支持NFSv4QuickStart$ kubectl create -f examples/volumes/nfs/provisioner/nfs-server-gce-pv.yaml
$ kubectl create -f examples/volumes/nfs/nfs-server-rc.yaml
$ kubectl create -f examples/volumes/nfs/nfs-server-service.yaml
# get the cluster IP of the server using the following command
$ kubectl describe services nfs-server
# use the NFS server IP to update nfs-pv.yaml and execute the following
$ kubectl create -f examples/volumes/nfs/nfs-pv.yaml
$ kubectl create -f examples/volumes/nfs/nfs-pvc.yaml
# run a fake backend
$ kubectl create -f examples/volumes/nfs/nfs-busybox-rc.yaml
# get pod name from this command
$ kubectl get pod -l name=nfs-busybox
# use the pod name to check the test file
$ kubectl exec nfs-busybox-jdhf3 -- cat /mnt/index.htmlExample of NFS based persistent volume可以参考 NFS Service and Replication Controller中的在RC中如何使用NFS volume claimIt relies on the NFS persistent volume and NFS persistent volume claim in this example as wellComplete setup这下面的例子展示了如何从一个pod rc导出一个NFS share,并把它导入两个rc中NFS server part定义NFS Service、rc和NFS service( Define the NFS Service and Replication Controller and NFS service):NFS server导出一个自动预先分配的由GCE PD提供支持的持久存储$ kubectl create -f examples/volumes/nfs/provisioner/nfs-server-gce-pv.yaml(创建一个PVC)$ kubectl create -f examples/volumes/nfs/nfs-server-rc.yaml(创建以RC,在RC中指定了PVC的名称,来使用对应的PVC)$ kubectl create -f examples/volumes/nfs/nfs-server-service.yaml(创建一个service)这个目录包含虚拟的index.html。 等到Pod运行的时候,使用kubctl get pods -l role=nfs-server来查看Create the NFS based persistent volume claim刚开始的时候,NFS busybox controller使用一个简单的脚本来生成数据写入NFS server. 你需要找的找到server的cluster IP$ kubectl describe services nfs-server在nfs pv中替换无效的ip(未来,我们将会使用service names来把它们聚集到一起,但是现在,你不得不硬编码IP)用你的NFS server创建persistent volume和pvc, pv和pvc提供了一种迂回的方法来允许多个pod关联到NFS server, 那就是使用一个虚拟的名称,而不是硬编码的server address.$ kubectl create -f examples/volumes/nfs/nfs-pv.yaml
$ kubectl create -f examples/volumes/nfs/nfs-pvc.yamlSetup the fake backendNFS busybox controller在NFS server每10秒更新一次index.html。$ kubectl create -f examples/volumes/nfs/nfs-busybox-rc.yaml这是一个busybox的pod, 所以我们可以很简单的查看到我们的挂载正在运行。 找到一个busybox pod,然后exec:$ kubectl get pod -l name=nfs-busyboxNAME READY STATUS RESTARTS AGEnfs-busybox-jdhf3 1/1 Running 0 25mnfs-busybox-w3s4t 1/1 Running 0 25m$ kubectl exec nfs-busybox-jdhf3 -- cat /mnt/index.htmlThu Oct 22 19:20:18 UTC 2015nfs-busybox-w3s4t如果一切正常的话,你可以看到和上面相似的输出。 如果不一样,请确认一下,你在NFS PV文件中是不是使用了无效的IP,确定一下上述的describe services命令已经在endpoint列出来( make sure thedescribe services
command above had endpoints listed) (表明这个service和运行的Pod关联起来)。Setup the web serverweb server controller是另一个简单的RC ,展示了使用了在上面的NFS导出的作为一个NFS volume,并运行了一个简单的web server。定义Pod$ kubectl create -f examples/volumes/nfs/nfs-web-rc.yaml这将会创建两个pod, 每一个pod都对外提供上面提到的index.html,我们可以使用一个简单的server来放到pod的前面kubectl create -f examples/volumes/nfs/nfs-web-service.yaml我们可以使用busybos容器,然后检测nginx是否提供了适当的数据$ kubectl get pod -l name=nfs-busyboxNAME READY STATUS RESTARTS AGEnfs-busybox-jdhf3 1/1 Running 0 1hnfs-busybox-w3s4t 1/1 Running 0 1h$ kubectl get services nfs-webNAME LABELS SELECTOR IP(S) PORT(S)nfs-web <none> role=web-frontend 10.0.68.37 80/TCP$ kubectl exec nfs-busybox-jdhf3 -- wget -qO- http://10.0.68.37Thu Oct 22 19:28:55 UTC 2015nfs-busybox-w3s4trbd一个rdb存储允许一个 Rados Block Device volume挂载到你的pod,不像emptyDir当pod被移除后被擦除,rdb中的内容会被保留,volume的状态变为unmounted,这以为这RDB bolume可以预先存储一些数据,这些数据可以在pod之间"handed off"重要的是: 当你在使用RBD之前,你必须让你自己的Ceph installation运行RBD的一个特点是,他只能同时被多个消费者同时挂载为只读的。这意味着你可以在一个volume中预先放入一些设置数据,然后让其并行的为多个你需要的pod提供数据。更多的详细信息参考 RBD examplerdb exampleHow to use it在你的k8s host上安装Ceph, 例如在Fedora 21上# yun -y install ceph-common如果你没有一个Ceph集群,你可以设置一个容器化的Ceph集群从Ceph得到keyring,并把它复制到/etc/ceph/keyring一旦你安装了新的Ceph和新的k8s,利用 rbd.json rbd-with-secret.json来创建一个pod在这个JSON中,你需要提供一下信息:- monitors: ceph的monitors
- pool: RADOS pool的名称,如果没有提供的话,将会使用默认的rdb pool
- image: rdb创建的image的名称
- user: RADOS用户名称,如果没有提供,将会使用默认的admin
- keyring: keyring文件的路径,如果没有提供,将会使用默认的/etc/ceph/keyring
- secretName: 验证密码的名称,如果提供了,secretName将会重写keyring。注意: 看下面如何创建一个secret
- fsType: 文件系统的类型(ext4, xfs等),对应的是设备上的格式
- readOnly: 这个文件系统是不是被用作只读的
emptyDir
hostPath
gcePersistentDisk
awsElasticBlockStore
nfs
iscsi
flocker
glusterfs
rbd
cephfs
gitRepo
secret
persistentVolumeClaim
downwardAPI
azureFileVolume
vsphereVolume
Some uses for an emptyDir
are:
- scratch space, such as for a disk-based merge sort
- checkpointing a long computation for recovery from crashes
- holding files that a content-manager container fetches while a webserver container serves the data
- 运行一个容器,需要访问Docker的内部,则用hostPath挂载/var/lib/docker
- 在container中运行一个cAdvisor,使用hostPath挂载 /dev/cgroups
- 因为在不同的node中,文件不同,所以使用相同配置的pod(比如,从podTemplate创建的)可能在不同的node上,有不同的行为。
- 当k8s添加 resource-aware scheduling,就不能认为资源是由hostPath使用( when Kubernetes adds resource-aware scheduling, as is planned, it will not be able to account for resources used by a
hostPath
) - 在underlying hosts创建的文件夹,只能被root写,你需要在一个特权容器中,使用root运行你的进程,或者更改host的文件权限,以便可以写入hostPath volume
name: test-pdspec:
containers:
- image: gcr.io/google_containers/test-webserver
name: test-container
volumeMounts:
- mountPath: /test-pd
name: test-volume
volumes:
- name: test-volume
hostPath:
# directory location on host
name: test-hostpathspec:
containers:
- image: myimage
name: test-container
volumeMounts:
- mountPath: /test-hostpath
name: test-volume
volumes:
- name: test-volume
hostPath:
path: /path/to/my/dir
- Persistent Volumes定义一个持久的disk(disk的生命周期不和Pod相关联)
- Services to enable Pods to locate one another.
- 前台的web Pod使用一个基于NFS服务的PV
- NFS服务使用一个被GCE PD或者AWS EBS自动分配的 persistent volume
$ kubectl create -f examples/volumes/nfs/nfs-server-rc.yaml
$ kubectl create -f examples/volumes/nfs/nfs-server-service.yaml
# get the cluster IP of the server using the following command
$ kubectl describe services nfs-server
# use the NFS server IP to update nfs-pv.yaml and execute the following
$ kubectl create -f examples/volumes/nfs/nfs-pv.yaml
$ kubectl create -f examples/volumes/nfs/nfs-pvc.yaml
# run a fake backend
$ kubectl create -f examples/volumes/nfs/nfs-busybox-rc.yaml
# get pod name from this command
$ kubectl get pod -l name=nfs-busybox
# use the pod name to check the test file
$ kubectl exec nfs-busybox-jdhf3 -- cat /mnt/index.html
$ kubectl create -f examples/volumes/nfs/nfs-pvc.yaml
describe services
command above had endpoints listed) (表明这个service和运行的Pod关联起来)。- monitors: ceph的monitors
- pool: RADOS pool的名称,如果没有提供的话,将会使用默认的rdb pool
- image: rdb创建的image的名称
- user: RADOS用户名称,如果没有提供,将会使用默认的admin
- keyring: keyring文件的路径,如果没有提供,将会使用默认的/etc/ceph/keyring
- secretName: 验证密码的名称,如果提供了,secretName将会重写keyring。注意: 看下面如何创建一个secret
- fsType: 文件系统的类型(ext4, xfs等),对应的是设备上的格式
- readOnly: 这个文件系统是不是被用作只读的
k8s volume的更多相关文章
- k8s volume存储卷
k8s volume存储卷 介绍 volume存储卷是Pod中能够被多个容器访问的共享目录,kubernetes的volume概念,用途和目的与docker的volume比较类似,但两者不能等价, ...
- k8s volume存储卷(四)
介绍 volume存储卷是Pod中能够被多个容器访问的共享目录,kubernetes的volume概念,用途和目的与docker的volume比较类似,但两者不能等价,首先,kubernetes中的v ...
- k8s volume 基本类型分类
volume 类型 静态volume emptyDir 临时空目录, 用途,pod内多用户同享一个目录.与POD的生命周期一至,POD创建时创建,删除时删除. Hostpath 宿主机1:1映射,用途 ...
- 理解OpenShift(5):从 Docker Volume 到 OpenShift Persistent Volume
理解OpenShift(1):网络之 Router 和 Route 理解OpenShift(2):网络之 DNS(域名服务) 理解OpenShift(3):网络之 SDN 理解OpenShift(4) ...
- 从零开始入门 K8s | 应用存储和持久化数据卷:核心知识
作者 | 至天 阿里巴巴高级研发工程师 一.Volumes 介绍 Pod Volumes 首先来看一下 Pod Volumes 的使用场景: 场景一:如果 pod 中的某一个容器在运行时异常退出,被 ...
- ASP.NET Core on K8S深入学习(8)数据管理
本篇已加入<.NET Core on K8S学习实践系列文章索引>,可以点击查看更多容器化技术相关系列文章. 在Docker中我们知道,要想实现数据的持久化(所谓Docker的数据持久化即 ...
- Kubernetes 笔记 07 豌豆荚之旅(二)
本文首发于我的公众号 Linux云计算网络(id: cloud_dev),专注于干货分享,号内有 10T 书籍和视频资源,后台回复「1024」即可领取,欢迎大家关注,二维码文末可以扫. Hi,大家好, ...
- kubernetes使用ceph
一.有一个ceph cluster,假设已经准备好了,文档网上一大堆 二.开始集成ceph和kuberntes 2.1 禁用rbd features rbd image有4个 features,lay ...
- kubernetes 实践一:基本概念和架构
这里记录kubernetes学习和使用过程中的内容. CentOS7 k8s-1.13 flanneld-0.10 docker-18.06 etcd-3.3 kubernetes基本概念 kuber ...
随机推荐
- Hibernate ManyToOne, OneToMany的理解
User to Group, Many to One的关系 Test Case 1: session.beginTransaction(); user.setGroup(group); session ...
- Javascript学习笔记:3种递归函数中调用自身的写法
①一般的通过名字调用自身 function sum(num){ if(num<=1){ return 1; }else{ return num+sum(num-1); } } console.l ...
- 手势(UIGestureRecognizer)
通过继承 UIGestureRecognizer 类,实现自定义手势(手势识别器类). PS:自定义手势时,需要 #import <UIKit/UIGestureRecognizerSubcla ...
- T-Sql 递归查询(给定节点查所有父节点、所有子节点的方法)
-- 查找所有父节点with tab as( select Type_Id,ParentId,Type_Name from Sys_ParamType_V2_0 where Type_Id=316-- ...
- M2事后分析报告
设想和目标 1.我们的软件要解决什么问题?是否定义得很清楚?是否对典型用户和典型场景有清晰的描述? 这次M2预想的就是解决3个主要问题,1:增加查询自己购买或者发布记录的功能,2:优化 所有的网络连接 ...
- Scope 安装和使用
Scope 安装和使用 一.安装 1. 软件下载 https://sourceforge.net/projects/cscope/files/ 2. 解压 3. 安装 ./configure --pr ...
- [SoapUI] 在SoapUI里获取Excel中多行数据并存入List
ArrayList<ArrayList<String>> getCellValuesH( String filePath, String sheetName,int tr1,i ...
- 【算法】Hough变换
终于看懂点了霍夫变换,以下内容来源为吉大的硕士论文,作者王阳阳 上图引用自 http://www.cnblogs.com/Ponys/p/3146753.html
- linux 记录用户操作记录日志
####################################################################################historyUSER_IP=$ ...
- [转载] Jenkins入门总结
转载自http://www.cnblogs.com/itech/archive/2011/11/23/2260009.html 在网上貌似没有找到Jenkins的中文的太多的文档,有的都是关于Huds ...