From 93f33e1370f4380c6e83eece8b96fcf2fdd0130c Mon Sep 17 00:00:00 2001 From: Patrick Ohly Date: Mon, 18 May 2020 16:09:52 +0200 Subject: [PATCH] generic ephemeral inline volumes: more renaming --- keps/sig-storage/1698-generic-ephemeral-volumes/README.md | 6 +++--- keps/sig-storage/1698-generic-ephemeral-volumes/kep.yaml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/keps/sig-storage/1698-generic-ephemeral-volumes/README.md b/keps/sig-storage/1698-generic-ephemeral-volumes/README.md index e4f595aeedc..dd606d1fc70 100644 --- a/keps/sig-storage/1698-generic-ephemeral-volumes/README.md +++ b/keps/sig-storage/1698-generic-ephemeral-volumes/README.md @@ -233,7 +233,7 @@ type VolumeSource struct { ``` A new controller in `kube-controller-manager` is responsible for -creating new PVCs for each such inline volume. It does that: +creating new PVCs for each such ephemeral inline volume. It does that: - with a deterministic name that is a concatenation of pod name and the `Volume.Name` of the volume, - in the namespace of the pod, @@ -300,8 +300,8 @@ it to circumvent other policies. ## Example -Here is a full example for a higher-level object that uses ephemeral -inline volumes: +Here is a full example for a higher-level object that uses a generic ephemeral +inline volume: ``` apiVersion: apps/v1 diff --git a/keps/sig-storage/1698-generic-ephemeral-volumes/kep.yaml b/keps/sig-storage/1698-generic-ephemeral-volumes/kep.yaml index c9ccf5ab546..2435ed3d41a 100644 --- a/keps/sig-storage/1698-generic-ephemeral-volumes/kep.yaml +++ b/keps/sig-storage/1698-generic-ephemeral-volumes/kep.yaml @@ -1,4 +1,4 @@ -title: generic inline volumes +title: generic ephemeral inline volumes kep-number: 1698 authors: - "@pohly"