- Sort Score
- Result 10 results
- Languages All
- Labels All
Results 471 - 480 of 685 for host:kubernetes.io (0.02 sec)
-
Update Your App | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/tutorials/kubernetes-basics/update/Registered: Wed Apr 16 06:18:32 UTC 2025 - 432.4K bytes - Viewed (0) -
Create a Cluster | Kubernetes
Production-Grade Container Orchestrationkubernetes.io/docs/tutorials/kubernetes-basics/create-cluster/Registered: Wed Apr 16 06:20:33 UTC 2025 - 433.7K bytes - Viewed (0) -
Set up Konnectivity service | Kubernetes
The Konnectivity service provides a TCP level proxy for the control plane to cluster communication. 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.kubernetes.io/docs/tasks/extend-kubernetes/setup-konnectivity/Registered: Wed Apr 16 06:19:32 UTC 2025 - 477.7K 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: Wed Apr 16 06:19:43 UTC 2025 - 438.3K bytes - Viewed (0) -
Configure Access to Multiple Clusters | Kubernetes
This page shows how to configure access to multiple clusters by using configuration files. After your clusters, users, and contexts are defined in one or more configuration files, you can quickly switch between clusters by using the kubectl config use-context command. Note:A file that is used to configure access to a cluster is sometimes called a kubeconfig file. This is a generic way of referring to configuration files. It does not mean that there is a file named kubeconfig.kubernetes.io/docs/tasks/access-application-cluster/configure-access-multiple-clusters/Registered: Wed Apr 16 06:20:21 UTC 2025 - 475.6K bytes - Viewed (0) -
Accessing the Kubernetes API from a Pod | Kuber...
This guide demonstrates how to access the Kubernetes API from within a pod. 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/run-application/access-api-from-pod/Registered: Wed Apr 16 06:19:48 UTC 2025 - 442.3K bytes - Viewed (0) -
Admission Control in Kubernetes | Kubernetes
This page provides an overview of admission controllers. An admission controller is a piece of code that intercepts requests to the Kubernetes API server prior to persistence of the resource, but after the request is authenticated and authorized. Several important features of Kubernetes require an admission controller to be enabled in order to properly support the feature. As a result, a Kubernetes API server that is not properly configured with the right set of admission controllers is an incomplete server that will not support all the features you expect.kubernetes.io/docs/reference/access-authn-authz/admission-controllers/Registered: Wed Apr 16 06:22:36 UTC 2025 - 497.5K bytes - Viewed (0) -
TLS | Kubernetes
Understand how to protect traffic within your cluster using Transport Layer Security (TLS).kubernetes.io/docs/tasks/tls/Registered: Wed Apr 16 06:22:27 UTC 2025 - 431.1K bytes - Viewed (0) -
Dual-stack support with kubeadm | Kubernetes
FEATURE STATE: Kubernetes v1.23 [stable] Your Kubernetes cluster includes dual-stack networking, which means that cluster networking lets you use either address family. In a cluster, the control plane can assign both an IPv4 address and an IPv6 address to a single Pod or a Service. Before you begin You need to have installed the kubeadm tool, following the steps from Installing kubeadm. For each server that you want to use as a node, make sure it allows IPv6 forwarding.kubernetes.io/docs/setup/production-environment/tools/kubeadm/dual-stack-support/Registered: Wed Apr 16 05:49:12 UTC 2025 - 452.2K bytes - Viewed (0) -
Init Containers | Kubernetes
This page provides an overview of init containers: specialized containers that run before app containers in a Pod. Init containers can contain utilities or setup scripts not present in an app image. You can specify init containers in the Pod specification alongside the containers array (which describes app containers). In Kubernetes, a sidecar container is a container that starts before the main application container and continues to run. This document is about init containers: containers that run to completion during Pod initialization.kubernetes.io/docs/concepts/workloads/pods/init-containers/Registered: Wed Apr 16 05:49:40 UTC 2025 - 461.4K bytes - Viewed (0)