Merge pull request #6353 from StuartHarris/patch-1

Use `echo -n` rather than `echo` to avoid trailing newline...
This commit is contained in:
Qiming
2017-11-17 13:09:57 +08:00
committed by GitHub
+2 -2
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
```