From 2ef135fcda5162b6ce6d4d1c24543eb5b07636b7 Mon Sep 17 00:00:00 2001 From: Keith Burdis Date: Tue, 5 Dec 2017 16:24:05 -0600 Subject: [PATCH 1/2] KubeCon 2017: glossary entry for Persistent Volume Claim --- _data/glossary/persistent-volume-claim.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 _data/glossary/persistent-volume-claim.yaml diff --git a/_data/glossary/persistent-volume-claim.yaml b/_data/glossary/persistent-volume-claim.yaml new file mode 100644 index 0000000000..a0e5b7219b --- /dev/null +++ b/_data/glossary/persistent-volume-claim.yaml @@ -0,0 +1,15 @@ +id: persistent-volume-claim +name: Persistent Volume Claim +full-link: /docs/concepts/storage/persistent-volumes/ +related: +- persistent-volume +- statefulset +- deployment +- pod +tags: +- core-object +- storage +short-description: > + A PersistentVolumeClaim (PVC) is used to claim storage resources defined in a PersistentVolume (PV) so that it can be mounted as a volume in a container. +long-description: | + The PersistentVolumeClaim (PVC) specifies the amount of storage, how the storage will be accessed (read-only, read-write and/or exclusive) and how it is reclaimed (retained, recycled or deleted), but no details of the storage itself (which are in the PV). From bcc2f99d761712621b1ccd5dd37f88b168f7e528 Mon Sep 17 00:00:00 2001 From: Keith Burdis Date: Wed, 6 Dec 2017 07:34:33 -0600 Subject: [PATCH 2/2] Updates based on feedback --- _data/glossary/persistent-volume-claim.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_data/glossary/persistent-volume-claim.yaml b/_data/glossary/persistent-volume-claim.yaml index a0e5b7219b..6929a7516a 100644 --- a/_data/glossary/persistent-volume-claim.yaml +++ b/_data/glossary/persistent-volume-claim.yaml @@ -10,6 +10,6 @@ tags: - core-object - storage short-description: > - A PersistentVolumeClaim (PVC) is used to claim storage resources defined in a PersistentVolume (PV) so that it can be mounted as a volume in a container. + Claims storage resources defined in a {% glossary_tooltip text="PersistentVolume (PV)" term_id="persistent-volume" %} so that it can be mounted as a volume in a container. long-description: | - The PersistentVolumeClaim (PVC) specifies the amount of storage, how the storage will be accessed (read-only, read-write and/or exclusive) and how it is reclaimed (retained, recycled or deleted), but no details of the storage itself (which are in the PV). + Specifies the amount of storage, how the storage will be accessed (read-only, read-write and/or exclusive) and how it is reclaimed (retained, recycled or deleted). Details of the storage itself are in the PersistentVolume specification.