summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsaadali <saadali@google.com>2016-03-22 22:12:21 -0700
committersaadali <saadali@google.com>2016-03-25 11:29:58 -0700
commit3dc5930b7ffcb40de988b3d72cc9086e65ca296e (patch)
treee1c436158d13487d7b674b85966ebb8587eb63a6
parenta40a5ee54f6762a2fc2919e1d835c5941334d74f (diff)
Rename volume.Builder to Mounter and volume.Cleaner to Unmounter
-rw-r--r--secrets.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/secrets.md b/secrets.md
index f73c1c22..a403ce4f 100644
--- a/secrets.md
+++ b/secrets.md
@@ -391,11 +391,11 @@ type Host interface {
The secret volume plugin will be responsible for:
-1. Returning a `volume.Builder` implementation from `NewBuilder` that:
+1. Returning a `volume.Mounter` implementation from `NewMounter` that:
1. Retrieves the secret data for the volume from the API server
2. Places the secret data onto the container's filesystem
3. Sets the correct security attributes for the volume based on the pod's `SecurityContext`
-2. Returning a `volume.Cleaner` implementation from `NewClear` that cleans the volume from the
+2. Returning a `volume.Unmounter` implementation from `NewUnmounter` that cleans the volume from the
container's filesystem
### Kubelet: Node-level secret storage