Merge pull request #6353 from StuartHarris/patch-1

Use `echo -n` rather than `echo` to avoid trailing newline...
pull/6361/head
Qiming 2017-11-17 13:09:57 +08:00 committed by GitHub
commit fcab77df75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -90,8 +90,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
```