- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 191 - 200 of 705 for host:kubernetes.io (1.3 sec)
-
kubeadm alpha | Kubernetes
Caution:kubeadm alpha provides a preview of a set of features made available for gathering feedback from the community. Please try it out and give us feedback! Currently there are no experimental commands under kubeadm alpha. What's next kubeadm init to bootstrap a Kubernetes control-plane node kubeadm join to connect a node to the cluster kubeadm reset to revert any changes made to this host by kubeadm init or kubeadm joinkubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-alpha/Registered: Fri Dec 12 09:00:27 UTC 2025 - 458.8K bytes - Viewed (0) -
Kubernetes Metrics Reference | Kubernetes
Details of the metric data that Kubernetes components export.kubernetes.io/docs/reference/instrumentation/metrics/Registered: Fri Dec 12 09:03:40 UTC 2025 - 743.8K bytes - Viewed (0) -
kubectl attach | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/reference/kubectl/generated/kubectl_attach/Registered: Fri Dec 12 09:05:29 UTC 2025 - 466.9K bytes - Viewed (0) -
kubectl expose | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/reference/kubectl/generated/kubectl_expose/Registered: Fri Dec 12 09:06:22 UTC 2025 - 472.2K bytes - Viewed (0) -
kubectl create poddisruptionbudget | Kubernetes
Synopsis Create a pod disruption budget with the specified name, selector, and desired minimum available pods. kubectl create poddisruptionbudget NAME --selector=SELECTOR --min-available=N [--dry-run=server|client|none] Examples # Create a pod disruption budget named my-pdb that will select all pods with the app=rails label # and require at least one of them being available at any point in time kubectl create poddisruptionbudget my-pdb --selector=app=rails --min-available=1 # Create a pod disruption budget named my-pdb that will select all pods with the app=nginx label # and require at least half of the pods selected to be available at any point in time kubectl create pdb my-pdb --selector=app=nginx --min-available=50% 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_poddisruptionbudget/Registered: Fri Dec 12 09:06:28 UTC 2025 - 471.2K bytes - Viewed (0) -
kubectl config set | Kubernetes
Synopsis Set an individual value in a kubeconfig file. PROPERTY_NAME is a dot delimited name where each token represents either an attribute name or a map key. Map keys may not contain dots. PROPERTY_VALUE is the new value you want to set. Binary fields such as 'certificate-authority-data' expect a base64 encoded string unless the --set-raw-bytes flag is used. Specifying an attribute name that already exists will merge new fields on top of existing values.kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_set/Registered: Fri Dec 12 09:05:47 UTC 2025 - 466.4K bytes - Viewed (0) -
kubectl create deployment | Kubernetes
Synopsis Create a deployment with the specified name. kubectl create deployment NAME --image=image -- [COMMAND] [args...] Examples # Create a deployment named my-dep that runs the busybox image kubectl create deployment my-dep --image=busybox # Create a deployment with a command kubectl create deployment my-dep --image=busybox -- date # Create a deployment named my-dep that runs the nginx image with 3 replicas kubectl create deployment my-dep --image=nginx --replicas=3 # Create a deployment named my-dep that runs the busybox image and expose port 5701 kubectl create deployment my-dep --image=busybox --port=5701 # Create a deployment named my-dep that runs multiple containers kubectl create deployment my-dep --image=busybox:latest --image=ubuntu:latest --image=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_create/kubectl_create_deployment/Registered: Fri Dec 12 09:08:36 UTC 2025 - 471.3K 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 12 08:05:22 UTC 2025 - 463.4K 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 12 08:07:28 UTC 2025 - 493.8K 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 12 08:05:55 UTC 2025 - 480.5K bytes - Viewed (0)