From 69d621140bdfba15c48a96f041be1d3f0b11bcc1 Mon Sep 17 00:00:00 2001 From: Owain Lewis Date: Thu, 19 Jul 2018 14:13:22 +0100 Subject: [PATCH] Use --decode for cross OS compatibility --- docs/tutorial.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.md b/docs/tutorial.md index 63c19c4fa..a3daa6556 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -141,7 +141,7 @@ The first thing you need to do is fetch the MySQL root password which is auto-generated for us by default and stored in a Secret named `-root-password` ```console -$ kubectl -n my-namespace get secret my-app-db-root-password -o jsonpath="{.data.password}" | base64 -D +$ kubectl -n my-namespace get secret my-app-db-root-password -o jsonpath="{.data.password}" | base64 --decode ETdmMKh2UuDq9m7y ```