diff --git a/docs/tutorial.md b/docs/tutorial.md index a3daa6556..668d91090 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 --decode +$ kubectl -n my-namespace get secret my-app-db-root-password --template='{{ .data.password | base64decode }}' ETdmMKh2UuDq9m7y ```