Change Task titles to imperative: Inject. (#4024)

This commit is contained in:
Steve Perry
2017-06-08 12:12:52 -07:00
committed by GitHub
parent e1e00561f3
commit 962989b443
7 changed files with 22 additions and 22 deletions
@@ -1,5 +1,5 @@
---
title: Distributing Credentials Securely Using Secrets
title: Distribute Credentials Securely Using Secrets
redirect_from:
- "/docs/user-guide/secrets/walkthrough/"
- "/docs/user-guide/secrets/walkthrough.html"
@@ -20,7 +20,7 @@ encryption keys, into Pods.
{% capture steps %}
## Converting your secret data to a base-64 representation
## Convert your secret data to a base-64 representation
Suppose you want to have two pieces of secret data: a username `my-app` and a password
`39528$vdg7Jb`. First, use [Base64 encoding](https://www.base64encode.org/) to
@@ -33,7 +33,7 @@ example:
The output shows that the base-64 representation of your username is `bXktYXBw`,
and the base-64 representation of your password is `Mzk1MjgkdmRnN0pi`.
## Creating a Secret
## Create a Secret
Here is a configuration file you can use to create a Secret that holds your
username and password:
@@ -77,7 +77,7 @@ username and password:
password: 13 bytes
username: 7 bytes
## Creating a Pod that has access to the secret data through a Volume
## Create a Pod that has access to the secret data through a Volume
Here is a configuration file you can use to create a Pod:
@@ -124,7 +124,7 @@ is exposed:
my-app
39528$vdg7Jb
## Creating a Pod that has access to the secret data through environment variables
## Create a Pod that has access to the secret data through environment variables
Here is a configuration file you can use to create a Pod: