Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 161 - 170 of 704 for host:kubernetes.io (0.03 sec)

  1. Pull an Image from a Private Registry | Kubernetes

    This page shows how to create a Pod that uses a Secret to pull an image from a private container image registry or repository. There are many private registries in use. This task uses Docker Hub as an example registry. ๐Ÿ›‡ This item links to a third party project or product that is not part of Kubernetes itself. 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/configure-pod-container/pull-image-private-registry/
    Registered: Mon Nov 17 09:27:42 UTC 2025
    - 482.1K bytes
    - Viewed (0)
  2. Create a Windows HostProcess Pod | Kubernetes

    FEATURE STATE: Kubernetes v1.26 [stable] Windows HostProcess containers enable you to run containerized workloads on a Windows host. These containers operate as normal processes but have access to the host network namespace, storage, and devices when given the appropriate user privileges. HostProcess containers can be used to deploy network plugins, storage configurations, device plugins, kube-proxy, and other components to Windows nodes without the need for dedicated proxies or the direct installation of host services.
    kubernetes.io/docs/tasks/configure-pod-container/create-hostprocess-pod/
    Registered: Mon Nov 17 09:28:19 UTC 2025
    - 475.3K bytes
    - Viewed (0)
  3. Decrypt Confidential Data that is Already Encry...

    All of the APIs in Kubernetes that let you write persistent API resource data support at-rest encryption. For example, you can enable at-rest encryption for Secrets. This at-rest encryption is additional to any system-level encryption for the etcd cluster or for the filesystem(s) on hosts where you are running the kube-apiserver. This page shows how to switch from encryption of API data at rest, so that API data are stored unencrypted.
    kubernetes.io/docs/tasks/administer-cluster/decrypt-data/
    Registered: Mon Nov 17 09:27:31 UTC 2025
    - 470.7K bytes
    - Viewed (0)
  4. Tools for Monitoring Resources | Kubernetes

    To scale an application and provide a reliable service, you need to understand how the application behaves when it is deployed. You can examine application performance in a Kubernetes cluster by examining the containers, pods, services, and the characteristics of the overall cluster. Kubernetes provides detailed information about an application's resource usage at each of these levels. This information allows you to evaluate your application's performance and where bottlenecks can be removed to improve overall performance.
    kubernetes.io/docs/tasks/debug/debug-cluster/resource-usage-monitoring/
    Registered: Mon Nov 17 09:30:42 UTC 2025
    - 464.2K bytes
    - Viewed (0)
  5. Update API Objects in Place Using kubectl patch...

    Use kubectl patch to update Kubernetes API objects in place. Do a strategic merge patch or a JSON merge patch.
    kubernetes.io/docs/tasks/manage-kubernetes-objects/update-api-object-kubectl-patch/
    Registered: Mon Nov 17 09:30:24 UTC 2025
    - 510.8K bytes
    - Viewed (0)
  6. Assign Pod-level CPU and memory resources | Kub...

    FEATURE STATE: Kubernetes v1.34 [beta](enabled by default) This page shows how to specify CPU and memory resources for a Pod at pod-level in addition to container-level resource specifications. A Kubernetes node allocates resources to a pod based on the pod's resource requests. These requests can be defined at the pod level or individually for containers within the pod. When both are present, the pod-level requests take precedence. Similarly, a pod's resource usage is restricted by limits, which can also be set at the pod-level or individually for containers within the pod.
    kubernetes.io/docs/tasks/configure-pod-container/assign-pod-level-resources/
    Registered: Mon Nov 17 09:29:15 UTC 2025
    - 494.7K bytes
    - Viewed (0)
  7. Create static Pods | Kubernetes

    Static Pods are managed directly by the kubelet daemon on a specific node, without the API server observing them. Unlike Pods that are managed by the control plane (for example, a Deployment); instead, the kubelet watches each static Pod (and restarts it if it fails). Static Pods are always bound to one Kubelet on a specific node. The kubelet automatically tries to create a mirror Pod on the Kubernetes API server for each static Pod.
    kubernetes.io/docs/tasks/configure-pod-container/static-pod/
    Registered: Mon Nov 17 09:30:51 UTC 2025
    - 481.7K bytes
    - Viewed (0)
  8. Run a Single-Instance Stateful Application | Ku...

    This page shows you how to run a single-instance stateful application in Kubernetes using a PersistentVolume and a Deployment. The application is MySQL. Objectives Create a PersistentVolume referencing a disk in your environment. Create a MySQL Deployment. Expose MySQL to other pods in the cluster at a known DNS name. 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/run-application/run-single-instance-stateful-application/
    Registered: Mon Nov 17 09:30:56 UTC 2025
    - 483.4K bytes
    - Viewed (0)
  9. Running Multiple Instances of Your App | Kubern...

    Objectives Scale an existing app manually using kubectl. Scaling an application You can create from the start a Deployment with multiple instances using the --replicas parameter for the kubectl create deployment command. Previously we created a Deployment, and then exposed it publicly via a Service. The Deployment created only one Pod for running our application. When traffic increases, we will need to scale the application to keep up with user demand.
    kubernetes.io/docs/tutorials/kubernetes-basics/scale/scale-intro/
    Registered: Mon Nov 17 09:55:42 UTC 2025
    - 472.3K bytes
    - Viewed (0)
  10. Explore Termination Behavior for Pods And Their...

    Once you connected your Application with Service following steps like those outlined in Connecting Applications with Services, you have a continuously running, replicated application, that is exposed on a network. This tutorial helps you look at the termination flow for Pods and to explore ways to implement graceful connection draining. Termination process for Pods and their endpoints There are often cases when you need to terminate a Pod - be it to upgrade or scale down.
    kubernetes.io/docs/tutorials/services/pods-and-endpoint-termination-flow/
    Registered: Mon Nov 17 09:56:22 UTC 2025
    - 476.5K bytes
    - Viewed (0)
Back to top