From 937177b9914da0ec13d61b54670731f58df5dfeb Mon Sep 17 00:00:00 2001 From: Everett Toews Date: Mon, 1 May 2017 12:22:51 -0500 Subject: [PATCH] Link to appropriate docs for Automatic Mounting of Manually Created Secrets (#3571) * Update link to Adding ImagePullSecrets to a service account * Link to appropriate docs for Automatic Mounting of Manually Created Secrets * Replace here w/ title of pages --- docs/concepts/configuration/secret.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/docs/concepts/configuration/secret.md b/docs/concepts/configuration/secret.md index 3740d10d44..ef52bb423d 100644 --- a/docs/concepts/configuration/secret.md +++ b/docs/concepts/configuration/secret.md @@ -136,7 +136,7 @@ encoded as base64 strings. Newlines are not valid within these strings and must be omitted. When using the `base64` utility on Darwin/OS X users should avoid using the `-b` option to split long lines. Conversely Linux users *should* add the option `-w 0` to `base64` commands or the pipeline `base64 | tr -d '\n'` if -`-w` option is not available. +`-w` option is not available. #### Decoding a Secret @@ -440,15 +440,14 @@ You can manually create an imagePullSecret, and reference it from a serviceAccount. Any pods created with that serviceAccount or that default to use that serviceAccount, will get their imagePullSecret field set to that of the service account. -See [here](/docs/user-guide/service-accounts/#adding-imagepullsecrets-to-a-service-account) +See [Adding ImagePullSecrets to a service account](/docs/tasks/configure-pod-container/configure-service-account/#adding-imagepullsecrets-to-a-service-account) for a detailed explanation of that process. #### Automatic Mounting of Manually Created Secrets -We plan to extend the service account behavior so that manually created -secrets (e.g. one containing a token for accessing a github account) +Manually created secrets (e.g. one containing a token for accessing a github account) can be automatically attached to pods based on their service account. -*This is not implemented yet. See [issue 9902](http://issue.k8s.io/9902).* +See [Injecting Information into Pods Using a PodPreset](/docs/tasks/run-application/podpreset/) for a detailed explanation of that process. ## Details