better compat when decoding base64

This commit is contained in:
djalal
2019-03-14 19:32:37 +01:00
parent 3351cf2d13
commit 5977b11f33

View File

@@ -260,7 +260,7 @@ class: extra-details
- Extract the token and decode it:
```bash
TOKEN=$(kubectl get secret $SECRET -o json \
| jq -r .data.token | base64 -d)
| jq -r .data.token | openssl base64 -d -A)
```
]