Skip to content

Commit

Permalink
Remove contradictory statements (kubernetes#19321)
Browse files Browse the repository at this point in the history
Remove contradictory statements (Use a local tool trusted by your OS vs. recommend to use online base64 tool)
  • Loading branch information
ricsam authored Feb 27, 2020
1 parent 91333c4 commit 844803a
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,7 @@ encryption keys, into Pods.
## 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 online Base 64 Encoding Tool [Base64 encoding](https://www.base64encode.org/), [Base64 encode](https://goonlinetools.com/base64-encode/) to
convert your username and password to a base-64 representation. Here's a Linux
example:
`39528$vdg7Jb`. First, use a base64 encoding tool to convert your username and password to a base64 representation. Here's an example using the commonly available base64 program:

```shell
echo -n 'my-app' | base64
Expand Down

0 comments on commit 844803a

Please sign in to comment.