Skip to content

Commit

Permalink
Merge pull request kubernetes#44621 from caarlos0/patch-1
Browse files Browse the repository at this point in the history
Improvement on Kubectl CheatSheet base64 examples
  • Loading branch information
fejta authored May 12, 2017
2 parents 7408f6b + 4b5a3d2 commit a95b5c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/user-guide/kubectl-cheatsheet.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ metadata:
name: mysecret
type: Opaque
data:
password: $(echo "s33msi4" | base64)
username: $(echo "jane" | base64)
password: $(echo -n "s33msi4" | base64)
username: $(echo -n "jane" | base64)
EOF

# TODO: kubectl-explain example
Expand Down

0 comments on commit a95b5c0

Please sign in to comment.