From 160ba58d45fb7bfb1e18e158f626c72eceac136a Mon Sep 17 00:00:00 2001 From: Luna Stadler Date: Tue, 25 Apr 2023 09:35:47 +0200 Subject: [PATCH] Update kubectl-request readme example for renamed command Most of the info was already correct, but some things were missing. Putting the output of `kubectl request --help` in the README again fixes that. --- cmd/kubectl-request/README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/cmd/kubectl-request/README.md b/cmd/kubectl-request/README.md index d4ce919..bebd7e3 100644 --- a/cmd/kubectl-request/README.md +++ b/cmd/kubectl-request/README.md @@ -24,7 +24,7 @@ Here's the full `kubectl request --help` message for reference: Request and grant access to `kubectl exec` and friends Usage: - request [command] + kubectl-request [command] Examples: @@ -36,7 +36,7 @@ Examples: Available Commands: - request Request access to `kubectl ` + exec Request access to execute a command in a container. grant Grant access to the given request help Help about any command completion generate the autocompletion script for the specified shell @@ -51,7 +51,7 @@ Flags: --client-key string Path to a client key file for TLS --cluster string The name of the kubeconfig cluster to use --context string The name of the kubeconfig context to use - -h, --help help for access + -h, --help help for kubectl-request --insecure-skip-tls-verify If true, the server's certificate will not be checked for validity. This will make your HTTPS connections insecure --kubeconfig string Path to the kubeconfig file to use for CLI requests. -n, --namespace string If present, the namespace scope for this CLI request @@ -60,6 +60,7 @@ Flags: --tls-server-name string Server name to use for server certificate validation. If it is not provided, the hostname used to contact the server is used --token string Bearer token for authentication to the API server --user string The name of the kubeconfig user to use + -v, --version version for kubectl-request -Use "access [command] --help" for more information about a command. +Use "kubectl-request [command] --help" for more information about a command. ```