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 the same issue raised here in the kubernetes website repo.
I'm following this documentation. Secret gets created when tried using yaml, but not using "kubectl create secret" command.
Thought this is the right forum to raise this issue.
The text was updated successfully, but these errors were encountered:
/assign It's because when using kubectl create secret tls nginxsecret --key /tmp/nginx.key --cert /tmp/nginx.crt, it creats Data with :
kubectl create secret tls nginxsecret --key /tmp/nginx.key --cert /tmp/nginx.crt
Data ==== tls.crt: 1143 bytes tls.key: 1704 bytes
But when using yaml we defines the data:
Data ==== nginx.crt: 1143 bytes nginx.key: 1704 bytes
Which would lead no such file or directory error.
no such file or directory
Sorry, something went wrong.
@gireeshp I hope this PR would help that :)kubernetes/website#17810
zhouya0
No branches or pull requests
This is the same issue raised here in the kubernetes website repo.
I'm following this documentation. Secret gets created when tried using yaml, but not using "kubectl create secret" command.
Thought this is the right forum to raise this issue.
The text was updated successfully, but these errors were encountered: