We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This is a...
Problem: kubectl get secret regcred --output="jsonpath={.data..dockerconfigjson}" | base64 -d
Proposed Solution: Should be with capital D kubectl get secret regcred --output="jsonpath={.data..dockerconfigjson}" | base64 -D
Page to Update: https://kubernetes.io/...
The text was updated successfully, but these errors were encountered:
@gkaleta what OS version are you using? It seems like -d works on ubuntu and -D is not allowed.
:~# cat encrypted-file | base64 -D base64: invalid option -- 'D' Try 'base64 --help' for more information. :~# cat encrypted-file | base64 -d <works>
We can look at adding a flag to warn users.
Edit: I did find this online "Note: if on OS X, use capital D" - can you confirm?
Sorry, something went wrong.
Sorry for the late reply - i am running MacOS. I need to use capital D
This was fixed by https://github.com/kubernetes/website/pull/9153/files
No branches or pull requests
This is a...
Problem:
kubectl get secret regcred --output="jsonpath={.data..dockerconfigjson}" | base64 -d
Proposed Solution:
Should be with capital D
kubectl get secret regcred --output="jsonpath={.data..dockerconfigjson}" | base64 -D
Page to Update:
https://kubernetes.io/...
The text was updated successfully, but these errors were encountered: