kubernetes学习 数据管理 Volume (一)

1、Volumejava

      为了持久化保存容器的数据,能够使用 Kubernetes Volume。api

      Volume的生命周期独立于容器,Pod中的容器可能被销毁和重建,但Volume会被保存。spa

  本质上,Kubernetes Volume 是一个目录,这一点与 Docker Volume 相似。当 Volume mount Pod,Pod 中的全部容器均可以访问这个 Volume。3d

      Kubernetes 也支持多种 backend 类型, 包括 emptyDir、hostPath、GCEPersistent Disk、AWS Elastic Block Store、NFS、Ceph等。Volume提供了对各类 backend 的抽象,容器在使用 Volume 读写数据的时候不须要关心数据究竟是存放在本地节点的文件系统中仍是云硬盘中。对它来讲,全部类型的 Volume 都只是一个目录。
blog

 

2、emptyDir生命周期

  emptyDIr 是最基础的 Volume 类型。正如其名字所示,一个 emptyDir Volume 是 Host 上的一个空目录。io

  empty Volume 对于容器来讲是持久的,对于 Pod 则不是。当 Pod 从节点删除时,Volume 的内容也会被删除。但若是只是容器被销毁而 Pod 还在,则 Volume 不受影响。ast

  也就是说: emptyDir Volume 的生命周期与 Pod 一致。class

  Pod 中全部的容器能够共享 Volume,他们能够制定各自的 mount 路径。容器

apiVersion: v1
kind: Pod
metadata:
  name: producer-consumer
spec:
  containers:
  - image: busybox
    name: producer-consumer
spec:
  containers:
  - image: busybox
    name: producer
    volumeMounts:
    - mountPath: /producer_dir
      name: shared-volume
    args:
    - /bin/sh
    - -c
    - echo "hello world" > /producer_dir/hello ; sleep 30000

  - image: busybox
    name: consumer
    volumeMounts:
    - mountPath: /consumer_dir
      name: shared-volume
    args:
    - /bin/sh
    - -c
    - cat /consumer_dir/hello ; sleep 30000

  volumes:
  - name: shared-volume
    emptyDir: {}

  模拟一个producer-consumer场景。Pod 有两个容器 producer 和 consumer,他们共享一个 Volume。producer 负责往 Volume中写数据, consumer 负责从 Volume 中读取数据。

    1) 文件最底部 volumes 定义一个 emptyDir 类型的 Volume shared-volume 

    2) producer 容器将 shared-volume mount /producer_dir 目录

    3) producer 经过 echo 将数据写到文件 hello

    4) consumer 容器将 shared-volume mount/consumer_dir 目录

    5) consumer 经过 cat 从文件 hello 读取数据

  执行建立 Pod:    

  

相关文章
相关标签/搜索