-
Notifications
You must be signed in to change notification settings - Fork 14.5k
New issue
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
Fix: secret missing in docker-registry secret command in kubectl-comm… #43185
Conversation
✅ Pull request preview available for checkingBuilt without sensitive environment variables
To edit notification comments on pull requests, go to your Netlify site configuration. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for your contribution! The file (kubectl-commands.html) edited is generated automatically, not altered manually. For additional information, please refer to the following webpage: https://kubernetes.io/docs/contribute/generate-ref-docs/kubectl/
If this is an issue, we should fix either the generator code or the source the generator uses as its input. I'm not entirely familiar with the specifics of the generative logic. Perhaps @tengqm can provide feedback.
For review and feedback. |
Thank you for the clarification! I appreciate the information about the generation process for the documentation.Thanks again for your guidance! |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: tengqm The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
LGTM label has been added. Git tree hash: 64c80f11a01417a93eab5f39874b44df81391c06
|
Corrected the usage section for the 'kubectl create docker-registry' command to accurately reflect the command syntax.
Original:
$ kubectl create docker-registry NAME --docker-username=user --docker-password=password --docker-email=email [--docker-server=string] [--from-file=[key=]source] [--dry-run=server|client|none]
Corrected:
$ kubectl create secret docker-registry NAME --docker-username=user --docker-password=password --docker-email=email [--docker-server=string] [--from-file=[key=]source] [--dry-run=server|client|none]
#43180