- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 181 - 190 of 705 for host:kubernetes.io (0.03 sec)
-
Adopting Sidecar Containers | Kubernetes
This section is relevant for people adopting a new built-in sidecar containers feature for their workloads. Sidecar container is not a new concept as posted in the blog post. Kubernetes allows running multiple containers in a Pod to implement this concept. However, running a sidecar container as a regular container has a lot of limitations being fixed with the new built-in sidecar containers support. FEATURE STATE: Kubernetes v1.33 [stable](enabled by default) Objectives Understand the need for sidecar containers Be able to troubleshoot issues with the sidecar containers Understand options to universally "inject" sidecar containers to any workload 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/pod-sidecar-containers/Registered: Fri Dec 05 09:26:51 UTC 2025 - 471.3K bytes - Viewed (0) -
kubectl auth can-i | Kubernetes
Synopsis Check whether an action is allowed. VERB is a logical Kubernetes API verb like 'get', 'list', 'watch', 'delete', etc. TYPE is a Kubernetes resource. Shortcuts and groups will be resolved. NONRESOURCEURL is a partial URL that starts with "/". NAME is the name of a particular Kubernetes resource. This command pairs nicely with impersonation. See --as global flag. kubectl auth can-i VERB [TYPE | TYPE/NAME | NONRESOURCEURL] Examples # Check to see if I can create pods in any namespace kubectl auth can-i create pods --all-namespaces # Check to see if I can list deployments in my current namespace kubectl auth can-i list deployments.kubernetes.io/docs/reference/kubectl/generated/kubectl_auth/kubectl_auth_can-i/Registered: Fri Dec 05 09:38:45 UTC 2025 - 467K bytes - Viewed (0) -
kubectl rollout restart | Kubernetes
Synopsis Restart a resource. Resource rollout will be restarted. kubectl rollout restart RESOURCE Examples # Restart all deployments in the test-namespace namespace kubectl rollout restart deployment -n test-namespace # Restart a deployment kubectl rollout restart deployment/nginx # Restart a daemon set kubectl rollout restart daemonset/abc # Restart deployments with the app=nginx label kubectl rollout restart deployment --selector=app=nginx 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_rollout/kubectl_rollout_restart/ Similar Results (1)Registered: Fri Dec 05 09:39:29 UTC 2025 - 467.4K bytes - Viewed (0) -
kubectl expose | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/reference/kubectl/generated/kubectl_expose/Registered: Fri Dec 05 09:38:41 UTC 2025 - 471.1K bytes - Viewed (0) -
kubectl create service loadbalancer | Kubernetes
Synopsis Create a LoadBalancer service with the specified name. kubectl create service loadbalancer NAME [--tcp=port:targetPort] [--dry-run=server|client|none] Examples # Create a new LoadBalancer service named my-lbs kubectl create service loadbalancer my-lbs --tcp=5678:8080 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. Only applies to golang and jsonpath output formats. --dry-run string[="unchanged"] Default: "none" Must be "none", "server", or "client". If client strategy, only print the object that would be sent, without sending it.kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_service_loadbalancer/Registered: Fri Dec 05 09:38:25 UTC 2025 - 468.3K bytes - Viewed (0) -
kubectl set selector | Kubernetes
Synopsis Set the selector on a resource. Note that the new selector will overwrite the old selector if the resource had one prior to the invocation of 'set selector'. A selector must begin with a letter or number, and may contain letters, numbers, hyphens, dots, and underscores, up to 63 characters. If --resource-version is specified, then updates will use this resource version, otherwise the existing resource-version will be used. Note: currently selectors can only be set on Service objects.kubernetes.io/docs/reference/kubectl/generated/kubectl_set/kubectl_set_selector/Registered: Fri Dec 05 09:49:29 UTC 2025 - 467.8K bytes - Viewed (0) -
Workload Management | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/concepts/workloads/controllers/Registered: Fri Dec 05 08:39:36 UTC 2025 - 463.1K bytes - Viewed (0) -
Creating Highly Available Clusters with kubeadm...
This page explains two different approaches to setting up a highly available Kubernetes cluster using kubeadm: With stacked control plane nodes. This approach requires less infrastructure. The etcd members and control plane nodes are co-located. With an external etcd cluster. This approach requires more infrastructure. The control plane nodes and etcd members are separated. Before proceeding, you should carefully consider which approach best meets the needs of your applications and environment.kubernetes.io/docs/setup/production-environment/tools/kubeadm/high-availability/Registered: Fri Dec 05 08:35:01 UTC 2025 - 492.6K bytes - Viewed (0) -
Kubernetes Components | Kubernetes
An overview of the key components that make up a Kubernetes cluster.kubernetes.io/docs/concepts/overview/components/Registered: Fri Dec 05 08:35:19 UTC 2025 - 462.3K bytes - Viewed (0) -
Customizing components with the kubeadm API | K...
This page covers how to customize the components that kubeadm deploys. For control plane components you can use flags in the ClusterConfiguration structure or patches per-node. For the kubelet and kube-proxy you can use KubeletConfiguration and KubeProxyConfiguration, accordingly. All of these options are possible via the kubeadm configuration API. For more details on each field in the configuration you can navigate to our API reference pages. Note:To reconfigure a cluster that has already been created see Reconfiguring a kubeadm cluster.kubernetes.io/docs/setup/production-environment/tools/kubeadm/control-plane-flags/Registered: Fri Dec 05 08:34:54 UTC 2025 - 479.4K bytes - Viewed (0)