- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 401 - 410 of 673 for host:kubernetes.io (0.03 sec)
-
Deploy and Access the Kubernetes Dashboard | Ku...
Deploy the web UI (Kubernetes Dashboard) and access it.kubernetes.io/docs/tasks/access-application-cluster/web-ui-dashboard/Registered: Wed Feb 12 06:20:33 UTC 2025 - 441.3K bytes - Viewed (0) -
Force Delete StatefulSet Pods | Kubernetes
This page shows how to delete Pods which are part of a stateful set, and explains the considerations to keep in mind when doing so. Before you begin This is a fairly advanced task and has the potential to violate some of the properties inherent to StatefulSet. Before proceeding, make yourself familiar with the considerations enumerated below. StatefulSet considerations In normal operation of a StatefulSet, there is never a need to force delete a StatefulSet Pod.kubernetes.io/docs/tasks/run-application/force-delete-stateful-set-pod/Registered: Wed Feb 12 06:20:49 UTC 2025 - 435.1K bytes - Viewed (0) -
kubectl Quick Reference | Kubernetes
This page contains a list of commonly used kubectl commands and flags. Note:These instructions are for Kubernetes v1.32. To check the version, use the kubectl version command. Kubectl autocomplete BASH source <(kubectl completion bash) # set up autocomplete in bash into the current shell, bash-completion package should be installed first. echo "source <(kubectl completion bash)" >> ~/.bashrc # add autocomplete permanently to your bash shell. You can also use a shorthand alias for kubectl that also works with completion:kubernetes.io/docs/reference/kubectl/quick-reference/Registered: Wed Feb 12 06:30:14 UTC 2025 - 489.1K bytes - Viewed (0) -
kubeadm token | Kubernetes
Bootstrap tokens are used for establishing bidirectional trust between a node joining the cluster and a control-plane node, as described in authenticating with bootstrap tokens. kubeadm init creates an initial token with a 24-hour TTL. The following commands allow you to manage such a token and also to create and manage new ones. kubeadm token create Create bootstrap tokens on the server Synopsis This command will create a bootstrap token for you.kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-token/Registered: Wed Feb 12 06:29:35 UTC 2025 - 437.6K bytes - Viewed (0) -
kubectl apply view-last-applied | Kubernetes
Synopsis View the latest last-applied-configuration annotations by type/name or file. The default output will be printed to stdout in YAML format. You can use the -o option to change the output format. kubectl apply view-last-applied (TYPE [NAME | -l label] | TYPE/NAME | -f FILENAME) Examples # View the last-applied-configuration annotations by type/name in YAML kubectl apply view-last-applied deployment/nginx # View the last-applied-configuration annotations by file in JSON kubectl apply view-last-applied -f deploy.kubernetes.io/docs/reference/kubectl/generated/kubectl_apply/kubectl_apply_view-last-applied/Registered: Wed Feb 12 06:29:58 UTC 2025 - 437.3K bytes - Viewed (0) -
kubeadm reset | Kubernetes
Performs a best effort revert of changes made by kubeadm init or kubeadm join. Performs a best effort revert of changes made to this host by 'kubeadm init' or 'kubeadm join' Synopsis Performs a best effort revert of changes made to this host by 'kubeadm init' or 'kubeadm join' The "reset" command executes the following phases: preflight Run reset pre-flight checks remove-etcd-member Remove a local etcd member. cleanup-node Run cleanup node.kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-reset/Registered: Wed Feb 12 06:32:00 UTC 2025 - 437.7K bytes - Viewed (0) -
kubectl config set-credentials | Kubernetes
Synopsis Set a user entry in kubeconfig. Specifying a name that already exists will merge new fields on top of existing values. Client-certificate flags: --client-certificate=certfile --client-key=keyfile Bearer token flags: --token=bearer_token Basic auth flags: --username=basic_user --password=basic_password Bearer token and basic auth are mutually exclusive. kubectl config set-credentials NAME [--client-certificate=path/to/certfile] [--client-key=path/to/keyfile] [--token=bearer_token] [--username=basic_user] [--password=basic_password] [--auth-provider=provider_name] [--auth-provider-arg=key=value] [--exec-command=exec_command] [--exec-api-version=exec_api_version] [--exec-arg=arg] [--exec-env=key=value] Examples # Set only the "client-key" field on the "cluster-admin" # entry, without touching other values kubectl config set-credentials cluster-admin --client-key=~/.kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_set-credentials/Registered: Wed Feb 12 06:33:53 UTC 2025 - 441.4K bytes - Viewed (0) -
kubeadm upgrade phases | Kubernetes
kubeadm upgrade apply phase Using the phases of kubeadm upgrade apply, you can choose to execute the separate steps of the initial upgrade of a control plane node. phase preflight control-plane upload-config kubelet-config bootstrap-token addon post-upgrade Use this command to invoke single phase of the "apply" workflow Synopsis Use this command to invoke single phase of the "apply" workflow kubeadm upgrade apply phase [flags] Options -h, --help help for phasekubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-upgrade-phase/Registered: Wed Feb 12 06:34:04 UTC 2025 - 455.4K bytes - Viewed (0) -
kubectl config set-context | Kubernetes
Synopsis Set a context entry in kubeconfig. Specifying a name that already exists will merge new fields on top of existing values for those fields. kubectl config set-context [NAME | --current] [--cluster=cluster_nickname] [--user=user_nickname] [--namespace=namespace] Examples # Set the user field on the gce context entry without touching other values kubectl config set-context gce --user=cluster-admin Options --cluster string cluster for the context entry in kubeconfig --current Modify the current contextkubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_set-context/Registered: Wed Feb 12 06:33:47 UTC 2025 - 435.8K bytes - Viewed (0) -
kubectl create cronjob | Kubernetes
Synopsis Create a cron job with the specified name. kubectl create cronjob NAME --image=image --schedule='0/5 * * * ?' -- [COMMAND] [args...] [flags] Examples # Create a cron job kubectl create cronjob my-job --image=busybox --schedule="*/1 * * * *" # Create a cron job with a command kubectl create cronjob my-job --image=busybox --schedule="*/1 * * * *" -- date Options --allow-missing-template-keys Default: true If true, ignore any errors in templates when a field or map key is missing in the template.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_cronjob/Registered: Wed Feb 12 06:35:38 UTC 2025 - 438.9K bytes - Viewed (0)