- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 181 - 190 of 686 for host:kubernetes.io (0.03 sec)
-
Fine Parallel Processing Using a Work Queue | K...
In this example, you will run a Kubernetes Job that runs multiple parallel tasks as worker processes, each running as a separate Pod. In this example, as each pod is created, it picks up one unit of work from a task queue, processes it, and repeats until the end of the queue is reached. Here is an overview of the steps in this example: Start a storage service to hold the work queue.kubernetes.io/docs/tasks/job/fine-parallel-processing-work-queue/Registered: Fri Jun 27 07:00:26 UTC 2025 - 469.4K bytes - Viewed (0) -
Delete a StatefulSet | Kubernetes
This task shows you how to delete a StatefulSet. Before you begin This task assumes you have an application running on your cluster represented by a StatefulSet. Deleting a StatefulSet You can delete a StatefulSet in the same way you delete other resources in Kubernetes: use the kubectl delete command, and specify the StatefulSet either by file or by name. kubectl delete -f <file.yaml> kubectl delete statefulsets <statefulset-name> You may need to delete the associated headless service separately after the StatefulSet itself is deleted.kubernetes.io/docs/tasks/run-application/delete-stateful-set/Registered: Fri Jun 27 07:00:35 UTC 2025 - 452.6K bytes - Viewed (0) -
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: Fri Jun 27 07:01:37 UTC 2025 - 460.4K bytes - Viewed (0) -
Managing Secrets using kubectl | Kubernetes
Creating Secret objects using kubectl command line.kubernetes.io/docs/tasks/configmap-secret/managing-secret-using-kubectl/Registered: Fri Jun 27 07:00:49 UTC 2025 - 460K 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: Fri Jun 27 07:22:03 UTC 2025 - 460.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: Fri Jun 27 07:21:58 UTC 2025 - 454.8K bytes - Viewed (0) -
Guaranteed Scheduling For Critical Add-On Pods ...
Kubernetes core components such as the API server, scheduler, and controller-manager run on a control plane node. However, add-ons must run on a regular cluster node. Some of these add-ons are critical to a fully functional cluster, such as metrics-server, DNS, and UI. A cluster may stop working properly if a critical add-on is evicted (either manually or as a side effect of another operation like upgrade) and becomes pending (for example when the cluster is highly utilized and either there are other pending pods that schedule into the space vacated by the evicted critical add-on pod or the amount of resources available on the node changed for some other reason).kubernetes.io/docs/tasks/administer-cluster/guaranteed-scheduling-critical-addon-pods/Registered: Fri Jun 27 06:51:29 UTC 2025 - 449.2K bytes - Viewed (0) -
IP Masquerade Agent User Guide | Kubernetes
This page shows how to configure and enable the ip-masq-agent. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster. It is recommended to run this tutorial on a cluster with at least two nodes that are not acting as control plane hosts. If you do not already have a cluster, you can create one by using minikube or you can use one of these Kubernetes playgrounds:kubernetes.io/docs/tasks/administer-cluster/ip-masq-agent/Registered: Fri Jun 27 06:51:35 UTC 2025 - 458K bytes - Viewed (0) -
Declare Network Policy | Kubernetes
This document helps you get started using the Kubernetes NetworkPolicy API to declare network policies that govern how pods communicate with each other. Note: This section links to third party projects that provide functionality required by Kubernetes. The Kubernetes project authors aren't responsible for these projects, which are listed alphabetically. To add a project to this list, read the content guide before submitting a change. More information. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster.kubernetes.io/docs/tasks/administer-cluster/declare-network-policy/Registered: Fri Jun 27 06:50:41 UTC 2025 - 461.8K bytes - Viewed (0) -
Updating Configuration via a ConfigMap | Kubern...
This page provides a step-by-step example of updating configuration within a Pod via a ConfigMap and builds upon the Configure a Pod to Use a ConfigMap task. At the end of this tutorial, you will understand how to change the configuration for a running application. This tutorial uses the alpine and nginx images as examples. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster.kubernetes.io/docs/tutorials/configuration/updating-configuration-via-a-configmap/Registered: Fri Jun 27 07:11:56 UTC 2025 - 539.9K bytes - Viewed (0)