2015-07-12 04:04:52 +00:00
|
|
|
<!-- BEGIN MUNGE: UNVERSIONED_WARNING -->
|
|
|
|
|
|
|
|
<!-- BEGIN STRIP_FOR_RELEASE -->
|
|
|
|
|
2015-07-16 17:02:26 +00:00
|
|
|
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
|
|
|
|
width="25" height="25">
|
|
|
|
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
|
|
|
|
width="25" height="25">
|
|
|
|
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
|
|
|
|
width="25" height="25">
|
|
|
|
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
|
|
|
|
width="25" height="25">
|
|
|
|
<img src="http://kubernetes.io/img/warning.png" alt="WARNING"
|
|
|
|
width="25" height="25">
|
|
|
|
|
|
|
|
<h2>PLEASE NOTE: This document applies to the HEAD of the source tree</h2>
|
|
|
|
|
|
|
|
If you are using a released version of Kubernetes, you should
|
|
|
|
refer to the docs that go with that version.
|
|
|
|
|
|
|
|
<strong>
|
|
|
|
The latest 1.0.x release of this document can be found
|
|
|
|
[here](http://releases.k8s.io/release-1.0/docs/user-guide/volumes.md).
|
|
|
|
|
|
|
|
Documentation for other releases can be found at
|
|
|
|
[releases.k8s.io](http://releases.k8s.io).
|
|
|
|
</strong>
|
|
|
|
--
|
2015-07-13 22:15:35 +00:00
|
|
|
|
2015-07-12 04:04:52 +00:00
|
|
|
<!-- END STRIP_FOR_RELEASE -->
|
|
|
|
|
|
|
|
<!-- END MUNGE: UNVERSIONED_WARNING -->
|
2015-07-17 22:35:41 +00:00
|
|
|
|
2014-09-18 21:11:50 +00:00
|
|
|
# Volumes
|
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
On-disk files in a container are ephemeral, which presents some problems for
|
|
|
|
non-trivial applications when running in containers. First, when a container
|
2015-07-13 14:11:07 +00:00
|
|
|
crashes kubelet will restart it, but the files will be lost - the
|
|
|
|
container starts with a clean slate. Second, when running containers together
|
2015-07-07 01:49:52 +00:00
|
|
|
in a `Pod` it is often necessary to share files between those containers. The
|
|
|
|
Kubernetes `Volume` abstraction solves both of these problems.
|
|
|
|
|
2015-07-10 01:02:10 +00:00
|
|
|
Familiarity with [pods](pods.md) is suggested.
|
2015-07-07 01:49:52 +00:00
|
|
|
|
2015-07-13 17:57:44 +00:00
|
|
|
**Table of Contents**
|
|
|
|
<!-- BEGIN MUNGE: GENERATED_TOC -->
|
2015-07-17 16:20:19 +00:00
|
|
|
|
2015-07-13 17:57:44 +00:00
|
|
|
- [Volumes](#volumes)
|
|
|
|
- [Background](#background)
|
|
|
|
- [Types of Volumes](#types-of-volumes)
|
|
|
|
- [emptyDir](#emptydir)
|
|
|
|
- [hostPath](#hostpath)
|
|
|
|
- [gcePersistentDisk](#gcepersistentdisk)
|
|
|
|
- [Creating a PD](#creating-a-pd)
|
|
|
|
- [Example pod](#example-pod)
|
|
|
|
- [awsElasticBlockStore](#awselasticblockstore)
|
|
|
|
- [Creating an EBS volume](#creating-an-ebs-volume)
|
2015-07-13 22:57:31 +00:00
|
|
|
- [AWS EBS Example configuration](#aws-ebs-example-configuration)
|
2015-07-13 17:57:44 +00:00
|
|
|
- [nfs](#nfs)
|
|
|
|
- [iscsi](#iscsi)
|
|
|
|
- [glusterfs](#glusterfs)
|
|
|
|
- [rbd](#rbd)
|
|
|
|
- [gitRepo](#gitrepo)
|
2015-07-27 22:52:11 +00:00
|
|
|
- [secret](#secret)
|
2015-07-13 17:57:44 +00:00
|
|
|
- [persistentVolumeClaim](#persistentvolumeclaim)
|
|
|
|
- [Resources](#resources)
|
|
|
|
|
|
|
|
<!-- END MUNGE: GENERATED_TOC -->
|
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
## Background
|
|
|
|
|
|
|
|
Docker also has a concept of
|
|
|
|
[volumes](https://docs.docker.com/userguide/dockervolumes/), though it is
|
|
|
|
somewhat looser and less managed. In Docker, a volume is simply a directory on
|
|
|
|
disk or in another container. Lifetimes are not managed and until very
|
|
|
|
recently there were only local-disk-backed volumes. Docker now provides volume
|
|
|
|
drivers, but the functionality is very limited for now (e.g. as of Docker 1.7
|
|
|
|
only one volume driver is allowed per container and there is no way to pass
|
|
|
|
parameters to volumes).
|
|
|
|
|
|
|
|
A Kubernetes volume, on the other hand, has an explicit lifetime - the same as
|
|
|
|
the pod that encloses it. Consequently, a volume outlives any containers that run
|
|
|
|
within the Pod, and data is preserved across Container restarts. Of course, when a
|
|
|
|
Pod ceases to exist, the volume will cease to exist, too. Perhaps more
|
|
|
|
importantly than this, Kubernetes supports many type of volumes, and a Pod can
|
|
|
|
use any number of them simultaneously.
|
|
|
|
|
|
|
|
At its core, a volume is just a directory, possibly with some data in it, which
|
|
|
|
is accessible to the containers in a pod. How that directory comes to be, the
|
|
|
|
medium that backs it, and the contents of it are determined by the particular
|
|
|
|
volume type used.
|
|
|
|
|
|
|
|
To use a volume, a pod specifies what volumes to provide for the pod (the
|
|
|
|
[spec.volumes](http://kubernetes.io/third_party/swagger-ui/#!/v1/createPod)
|
|
|
|
field) and where to mount those into containers(the
|
|
|
|
[spec.containers.volumeMounts](http://kubernetes.io/third_party/swagger-ui/#!/v1/createPod)
|
|
|
|
field).
|
|
|
|
|
|
|
|
A process in a container sees a filesystem view composed from their Docker
|
|
|
|
image and volumes. The [Docker
|
|
|
|
image](https://docs.docker.com/userguide/dockerimages/) is at the root of the
|
|
|
|
filesystem hierarchy, and any volumes are mounted at the specified paths within
|
|
|
|
the image. Volumes can not mount onto other volumes or have hard links to
|
|
|
|
other volumes. Each container in the Pod must independently specify where to
|
|
|
|
mount each volume.
|
2014-09-18 21:11:50 +00:00
|
|
|
|
|
|
|
## Types of Volumes
|
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
Kubernetes supports several types of Volumes:
|
|
|
|
* emptyDir
|
|
|
|
* hostPath
|
|
|
|
* gcePersistentDisk
|
|
|
|
* awsElasticBlockStore
|
|
|
|
* nfs
|
|
|
|
* iscsi
|
|
|
|
* glusterfs
|
|
|
|
* rbd
|
|
|
|
* gitRepo
|
|
|
|
* secret
|
|
|
|
* persistentVolumeClaim
|
|
|
|
|
|
|
|
We welcome additional contributions.
|
|
|
|
|
|
|
|
### emptyDir
|
|
|
|
|
|
|
|
An `emptyDir` volume is first created when a Pod is assigned to a Node, and
|
|
|
|
exists as long as that Pod is running on that node. As the name says, it is
|
|
|
|
initially empty. Containers in the pod can all read and write the same
|
|
|
|
files in the `emptyDir` volume, though that volume can be mounted at the same
|
|
|
|
or different paths in each container. When a Pod is removed from a node for
|
|
|
|
any reason, the data in the `emptyDir` is deleted forever. NOTE: a container
|
|
|
|
crashing does *NOT* remove a pod from a node, so the data in an `emptyDir`
|
|
|
|
volume is safe across container crashes.
|
|
|
|
|
|
|
|
Some uses for an `emptyDir` are:
|
|
|
|
|
|
|
|
* scratch space, such as for a disk-based mergesortcw
|
|
|
|
* checkpointing a long computation for recovery from crashes
|
|
|
|
* holding files that a content-manager container fetches while a webserver
|
|
|
|
container serves the data
|
|
|
|
|
|
|
|
By default, `emptyDir` volumes are stored on whatever medium is backing the
|
|
|
|
machine - that might be disk or SSD or network storage, depending on your
|
|
|
|
environment. However, you can set the `emptyDir.medium` field to `"Memory"`
|
|
|
|
to tell Kubernetes to mount a tmpfs (RAM-backed filesystem) for you instead.
|
|
|
|
While tmpfs is very fast, be aware that unlike disks, tmpfs is cleared on
|
|
|
|
machine reboot and any files you write will count against your container's
|
|
|
|
memory limit.
|
|
|
|
|
|
|
|
### hostPath
|
|
|
|
|
|
|
|
A `hostPath` volume mounts a file or directory from the host node's filesystem
|
|
|
|
into your pod. This is not something that most Pods will need, but it offers a
|
|
|
|
powerful escape hatch for some applications.
|
|
|
|
|
|
|
|
For example, some uses for a `hostPath` are:
|
|
|
|
|
|
|
|
* running a container that needs access to Docker internals; use a `hostPath`
|
|
|
|
of `/var/lib/docker`
|
|
|
|
* running cAdvisor in a container; use a `hostPath` of `/dev/cgroups`
|
2015-06-17 15:59:05 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
Watch out when using this type of volume, because:
|
2014-09-18 21:11:50 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
* pods with identical configuration (such as created from a podTemplate) may
|
|
|
|
behave differently on different nodes due to different files on the nodes
|
|
|
|
* when Kubernetes adds resource-aware scheduling, as is planned, it will not be
|
|
|
|
able to account for resources used by a `hostPath`
|
2014-09-18 21:11:50 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
### gcePersistentDisk
|
2015-06-17 15:59:05 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
A `gcePersistentDisk` volume mounts a Google Compute Engine (GCE) [Persistent
|
|
|
|
Disk](http://cloud.google.com/compute/docs/disks) into your pod. Unlike
|
|
|
|
`emptyDir`, which is erased when a Pod is removed, the contents of a PD are
|
|
|
|
preserved and the volume is merely unmounted. This means that a PD can be
|
|
|
|
pre-populated with data, and that data can be "handed off" between pods.
|
2014-09-18 21:11:50 +00:00
|
|
|
|
2015-07-19 05:58:13 +00:00
|
|
|
__Important: You must create a PD using `gcloud` or the GCE API or UI
|
2015-07-07 01:49:52 +00:00
|
|
|
before you can use it__
|
2015-06-17 15:59:05 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
There are some restrictions when using a `gcePersistentDisk`:
|
2014-09-18 21:11:50 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
* the nodes on which pods are running must be GCE VMs
|
|
|
|
* those VMs need to be in the same GCE project and zone as the PD
|
2014-11-24 18:17:24 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
A feature of PD is that they can be mounted as read-only by multiple consumers
|
|
|
|
simultaneously. This means that you can pre-populate a PD with your dataset
|
|
|
|
and then serve it in parallel from as many pods as you need. Unfortunately,
|
|
|
|
PDs can only be mounted by a single consumer in read-write mode - no
|
|
|
|
simultaneous readers allowed.
|
2014-10-09 16:30:13 +00:00
|
|
|
|
2015-07-13 14:11:07 +00:00
|
|
|
Using a PD on a pod controlled by a ReplicationController will fail unless
|
2015-07-07 01:49:52 +00:00
|
|
|
the PD is read-only or the replica count is 0 or 1.
|
2014-11-24 18:05:07 +00:00
|
|
|
|
2014-11-24 18:17:24 +00:00
|
|
|
#### Creating a PD
|
2015-07-07 01:49:52 +00:00
|
|
|
|
2015-02-07 04:24:45 +00:00
|
|
|
Before you can use a GCE PD with a pod, you need to create it.
|
2014-11-24 18:17:24 +00:00
|
|
|
|
|
|
|
```sh
|
2015-02-07 04:24:45 +00:00
|
|
|
gcloud compute disks create --size=500GB --zone=us-central1-a my-data-disk
|
2014-11-24 18:17:24 +00:00
|
|
|
```
|
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
#### Example pod
|
|
|
|
|
2014-11-24 18:05:07 +00:00
|
|
|
```yaml
|
2015-06-05 19:47:15 +00:00
|
|
|
apiVersion: v1
|
2014-11-24 18:18:07 +00:00
|
|
|
kind: Pod
|
2015-05-20 00:34:16 +00:00
|
|
|
metadata:
|
2015-07-07 01:49:52 +00:00
|
|
|
name: test-pd
|
2015-05-20 00:34:16 +00:00
|
|
|
spec:
|
|
|
|
containers:
|
2015-07-07 01:49:52 +00:00
|
|
|
- image: gcr.io/google_containers/test-webserver
|
|
|
|
name: test-container
|
2015-05-20 00:34:16 +00:00
|
|
|
volumeMounts:
|
2015-07-07 01:49:52 +00:00
|
|
|
- mountPath: /test-pd
|
|
|
|
name: test-volume
|
2015-05-20 00:34:16 +00:00
|
|
|
volumes:
|
2015-07-07 01:49:52 +00:00
|
|
|
- name: test-volume
|
|
|
|
# This GCE PD must already exist.
|
2015-05-20 00:34:16 +00:00
|
|
|
gcePersistentDisk:
|
2015-07-07 01:49:52 +00:00
|
|
|
pdName: my-data-disk
|
2015-05-20 00:34:16 +00:00
|
|
|
fsType: ext4
|
2014-11-24 18:18:07 +00:00
|
|
|
```
|
2015-07-05 13:27:53 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
### awsElasticBlockStore
|
2015-07-05 13:27:53 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
An `awsElasticBlockStore` volume mounts an Amazon Web Services (AWS) [EBS
|
|
|
|
Volume](http://aws.amazon.com/ebs/) into your pod. Unlike
|
|
|
|
`emptyDir`, which is erased when a Pod is removed, the contents of an EBS
|
|
|
|
volume are preserved and the volume is merely unmounted. This means that an
|
|
|
|
EBS volume can be pre-populated with data, and that data can be "handed off"
|
|
|
|
between pods.
|
|
|
|
|
2015-07-19 05:58:13 +00:00
|
|
|
__Important: You must create an EBS volume using `aws ec2 create-volume` or
|
2015-07-07 01:49:52 +00:00
|
|
|
the AWS API before you can use it__
|
2015-07-05 13:27:53 +00:00
|
|
|
|
|
|
|
There are some restrictions when using an awsElasticBlockStore volume:
|
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
* the nodes on which pods are running must be AWS EC2 instances
|
2015-07-05 13:27:53 +00:00
|
|
|
* those instances need to be in the same region and availability-zone as the EBS volume
|
|
|
|
* EBS only supports a single EC2 instance mounting a volume
|
|
|
|
|
|
|
|
#### Creating an EBS volume
|
2015-07-07 01:49:52 +00:00
|
|
|
|
2015-07-05 13:27:53 +00:00
|
|
|
Before you can use a EBS volume with a pod, you need to create it.
|
|
|
|
|
|
|
|
```sh
|
|
|
|
aws ec2 create-volume --availability-zone eu-west-1a --size 10 --volume-type gp2
|
|
|
|
```
|
|
|
|
|
|
|
|
Make sure the zone matches the zone you brought up your cluster in. (And also check that the size and EBS volume
|
|
|
|
type are suitable for your use!)
|
|
|
|
|
2015-07-13 18:11:34 +00:00
|
|
|
#### AWS EBS Example configuration
|
2015-07-07 01:49:52 +00:00
|
|
|
|
2015-07-05 13:27:53 +00:00
|
|
|
```yaml
|
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
2015-07-07 01:49:52 +00:00
|
|
|
name: test-ebs
|
2015-07-05 13:27:53 +00:00
|
|
|
spec:
|
|
|
|
containers:
|
2015-07-07 01:49:52 +00:00
|
|
|
- image: gcr.io/google_containers/test-webserver
|
|
|
|
name: test-container
|
2015-07-05 13:27:53 +00:00
|
|
|
volumeMounts:
|
2015-07-07 01:49:52 +00:00
|
|
|
- mountPath: /test-ebs
|
|
|
|
name: test-volume
|
2015-07-05 13:27:53 +00:00
|
|
|
volumes:
|
2015-07-07 01:49:52 +00:00
|
|
|
- name: test-volume
|
2015-07-05 13:27:53 +00:00
|
|
|
# This AWS EBS volume must already exist.
|
|
|
|
awsElasticBlockStore:
|
|
|
|
volumeID: aws://<availability-zone>/<volume-id>
|
|
|
|
fsType: ext4
|
|
|
|
```
|
|
|
|
|
|
|
|
(Note: the syntax of volumeID is currently awkward; #10181 fixes it)
|
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
### nfs
|
|
|
|
|
|
|
|
An `nfs` volume allows an existing NFS (Network File System) share to be
|
|
|
|
mounted into your pod. Unlike `emptyDir`, which is erased when a Pod is
|
|
|
|
removed, the contents of an `nfs` volume are preserved and the volume is merely
|
|
|
|
unmounted. This means that an NFS volume can be pre-populated with data, and
|
|
|
|
that data can be "handed off" between pods. NFS can be mounted by multiple
|
2015-07-13 02:03:06 +00:00
|
|
|
writers simultaneously.
|
2015-07-07 01:49:52 +00:00
|
|
|
|
|
|
|
__Important: You must have your own NFS server running with the share exported
|
|
|
|
before you can use it__
|
|
|
|
|
2015-07-14 16:37:37 +00:00
|
|
|
See the [NFS example](../../examples/nfs/) for more details.
|
2015-07-07 01:49:52 +00:00
|
|
|
|
2015-07-14 16:37:37 +00:00
|
|
|
For example, [this file](../../examples/nfs/nfs-web-pod.yaml) demonstrates how to
|
2015-07-07 01:49:52 +00:00
|
|
|
specify the usage of an NFS volume within a pod.
|
2014-11-24 18:05:07 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
In this example one can see that a `volumeMount` called "nfs" is being mounted
|
|
|
|
onto `/var/www/html` in the container "web". The volume "nfs" is defined as
|
|
|
|
type `nfs`, with the NFS server serving from `nfs-server.default.kube.local`
|
|
|
|
and exporting directory `/` as the share. The mount being created in this
|
|
|
|
example is writeable.
|
2015-03-30 21:29:48 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
### iscsi
|
|
|
|
|
|
|
|
An `iscsi` volume allows an existing iSCSI (SCSI over IP) volume to be mounted
|
|
|
|
into your pod. Unlike `emptyDir`, which is erased when a Pod is removed, the
|
|
|
|
contents of an `iscsi` volume are preserved and the volume is merely
|
|
|
|
unmounted. This means that an iscsi volume can be pre-populated with data, and
|
|
|
|
that data can be "handed off" between pods.
|
|
|
|
|
|
|
|
__Important: You must have your own iSCSI server running with the volume
|
|
|
|
created before you can use it__
|
|
|
|
|
|
|
|
A feature of iSCSI is that it can be mounted as read-only by multiple consumers
|
|
|
|
simultaneously. This means that you can pre-populate a volume with your dataset
|
|
|
|
and then serve it in parallel from as many pods as you need. Unfortunately,
|
|
|
|
iSCSI volumes can only be mounted by a single consumer in read-write mode - no
|
|
|
|
simultaneous readers allowed.
|
|
|
|
|
2015-07-14 16:37:37 +00:00
|
|
|
See the [iSCSI example](../../examples/iscsi/) for more details.
|
2015-07-07 01:49:52 +00:00
|
|
|
|
|
|
|
### glusterfs
|
|
|
|
|
|
|
|
A `glusterfs` volume allows an [Glusterfs](http://www.gluster.org) (an open
|
|
|
|
source networked filesystem) volume to be mounted into your pod. Unlike
|
|
|
|
`emptyDir`, which is erased when a Pod is removed, the contents of a
|
|
|
|
`glusterfs` volume are preserved and the volume is merely unmounted. This
|
|
|
|
means that a glusterfs volume can be pre-populated with data, and that data can
|
|
|
|
be "handed off" between pods. GlusterFS can be mounted by multiple writers
|
2015-07-13 02:03:06 +00:00
|
|
|
simultaneously.
|
2015-07-07 01:49:52 +00:00
|
|
|
|
|
|
|
__Important: You must have your own GlusterFS installation running before you
|
|
|
|
can use it__
|
|
|
|
|
2015-07-14 16:37:37 +00:00
|
|
|
See the [GlusterFS example](../../examples/glusterfs/) for more details.
|
2015-07-07 01:49:52 +00:00
|
|
|
|
|
|
|
### rbd
|
|
|
|
|
|
|
|
An `rbd` volume allows a [Rados Block
|
|
|
|
Device](http://ceph.com/docs/master/rbd/rbd/) volume to be mounted into your
|
|
|
|
pod. Unlike `emptyDir`, which is erased when a Pod is removed, the contents of
|
|
|
|
an `rbd` volume are preserved and the volume is merely unmounted. This
|
2015-07-21 04:45:49 +00:00
|
|
|
means that a RBD volume can be pre-populated with data, and that data can
|
2015-07-07 01:49:52 +00:00
|
|
|
be "handed off" between pods.
|
|
|
|
|
|
|
|
__Important: You must have your own Ceph installation running before you
|
|
|
|
can use RBD__
|
|
|
|
|
|
|
|
A feature of RBD is that it can be mounted as read-only by multiple consumers
|
|
|
|
simultaneously. This means that you can pre-populate a volume with your dataset
|
|
|
|
and then serve it in parallel from as many pods as you need. Unfortunately,
|
|
|
|
RBD volumes can only be mounted by a single consumer in read-write mode - no
|
|
|
|
simultaneous readers allowed.
|
|
|
|
|
2015-07-14 16:37:37 +00:00
|
|
|
See the [RBD example](../../examples/rbd/) for more details.
|
2015-07-07 01:49:52 +00:00
|
|
|
|
|
|
|
### gitRepo
|
|
|
|
|
|
|
|
A `gitRepo` volume is an example of what can be done as a volume plugin. It
|
|
|
|
mounts an empty directory and clones a git repository into it for your pod to
|
|
|
|
use. In the future, such volumes may be moved to an even more decoupled model,
|
|
|
|
rather than extending the Kubernetes API for every such use case.
|
2015-05-14 22:12:45 +00:00
|
|
|
|
2015-07-27 22:52:11 +00:00
|
|
|
### secret
|
2015-06-16 17:10:20 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
A `secret` volume is used to pass sensitive information, such as passwords, to
|
|
|
|
pods. You can store secrets in the Kubernetes API and mount them as files for
|
|
|
|
use by pods without coupling to Kubernetes directly. `secret` volumes are
|
|
|
|
backed by tmpfs (a RAM-backed filesystem) so they are never written to
|
|
|
|
non-volatile storage.
|
2015-06-16 17:10:20 +00:00
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
__Important: You must create a secret in the Kubernetes API before you can use
|
|
|
|
it__
|
|
|
|
|
|
|
|
Secrets are described in more detail [here](secrets.md).
|
|
|
|
|
|
|
|
### persistentVolumeClaim
|
|
|
|
|
|
|
|
A `persistentVolumeClaim` volume is used to mount a
|
|
|
|
[PersistentVolume](persistent-volumes.md) into a pod. PersistentVolumes are a
|
|
|
|
way for users to "claim" durable storage (such as a GCE PersistentDisk or an
|
|
|
|
iSCSI volume) without knowing the details of the particular cloud environment.
|
|
|
|
|
2015-07-14 16:37:37 +00:00
|
|
|
See the [PersistentVolumes example](persistent-volumes/) for more
|
2015-07-07 01:49:52 +00:00
|
|
|
details.
|
2015-06-16 17:10:20 +00:00
|
|
|
|
|
|
|
## Resources
|
|
|
|
|
2015-07-07 01:49:52 +00:00
|
|
|
The storage media (Disk, SSD, etc) of an `emptyDir` volume is determined by the
|
|
|
|
medium of the filesystem holding the kubelet root dir (typically
|
|
|
|
`/var/lib/kubelet`). There is no limit on how much space an `emptyDir` or
|
|
|
|
`hostPath` volume can consume, and no isolation between containers or between
|
|
|
|
pods.
|
|
|
|
|
|
|
|
In the future, we expect that `emptyDir` and `hostPath` volumes will be able to
|
2015-07-10 19:39:25 +00:00
|
|
|
request a certain amount of space using a [resource](compute-resources.md)
|
2015-07-07 01:49:52 +00:00
|
|
|
specification, and to select the type of media to use, for clusters that have
|
|
|
|
several media types.
|
2015-06-16 17:10:20 +00:00
|
|
|
|
2015-05-14 22:12:45 +00:00
|
|
|
|
2015-07-14 00:13:09 +00:00
|
|
|
<!-- BEGIN MUNGE: GENERATED_ANALYTICS -->
|
2015-07-14 16:37:37 +00:00
|
|
|
[![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/docs/user-guide/volumes.md?pixel)]()
|
2015-07-14 00:13:09 +00:00
|
|
|
<!-- END MUNGE: GENERATED_ANALYTICS -->
|