Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 211 - 220 of 673 for host:kubernetes.io (0.03 sec)

  1. kubectl config set-cluster | Kubernetes

    Synopsis Set a cluster entry in kubeconfig. Specifying a name that already exists will merge new fields on top of existing values for those fields. kubectl config set-cluster NAME [--server=server] [--certificate-authority=path/to/certificate/authority] [--insecure-skip-tls-verify=true] [--tls-server-name=example.com] Examples # Set only the server field on the e2e cluster entry without touching other values kubectl config set-cluster e2e --server=https://1.2.3.4 # Embed certificate authority data for the e2e cluster entry kubectl config set-cluster e2e --embed-certs --certificate-authority=~/.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_set-cluster/
    Registered: Wed Feb 12 06:26:25 UTC 2025
    - 436.8K bytes
    - Viewed (0)
  2. Garbage Collection | Kubernetes

    Garbage collection is a collective term for the various mechanisms Kubernetes uses to clean up cluster resources. This allows the clean up of resources like the following: Terminated pods Completed Jobs Objects without owner references Unused containers and container images Dynamically provisioned PersistentVolumes with a StorageClass reclaim policy of Delete Stale or expired CertificateSigningRequests (CSRs) Nodes deleted in the following scenarios: On a cloud when the cluster uses a cloud controller manager On-premises when the cluster uses an addon similar to a cloud controller manager Node Lease objects Owners and dependents Many objects in Kubernetes link to each other through owner references.
    kubernetes.io/docs/concepts/architecture/garbage-collection/
    Registered: Wed Feb 12 05:52:57 UTC 2025
    - 442.7K bytes
    - Viewed (0)
  3. Resource Management for Pods and Containers | K...

    When you specify a Pod, you can optionally specify how much of each resource a container needs. The most common resources to specify are CPU and memory (RAM); there are others. When you specify the resource request for containers in a Pod, the kube-scheduler uses this information to decide which node to place the Pod on. When you specify a resource limit for a container, the kubelet enforces those limits so that the running container is not allowed to use more of that resource than the limit you set.
    kubernetes.io/docs/concepts/configuration/manage-resources-containers/
    Registered: Wed Feb 12 05:50:14 UTC 2025
    - 501.7K bytes
    - Viewed (0)
  4. Container Environment | Kubernetes

    This page describes the resources available to Containers in the Container environment. Container environment The Kubernetes Container environment provides several important resources to Containers: A filesystem, which is a combination of an image and one or more volumes. Information about the Container itself. Information about other objects in the cluster. Container information The hostname of a Container is the name of the Pod in which the Container is running. It is available through the hostname command or the gethostname function call in libc.
    kubernetes.io/docs/concepts/containers/container-environment/
    Registered: Wed Feb 12 05:53:45 UTC 2025
    - 432K bytes
    - Viewed (0)
  5. Securing a Cluster | Kubernetes

    This document covers topics related to protecting a cluster from accidental or malicious access and provides recommendations on overall security. 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/securing-a-cluster/
    Registered: Wed Feb 12 06:03:50 UTC 2025
    - 447.4K bytes
    - Viewed (0)
  6. Upgrade A Cluster | Kubernetes

    This page provides an overview of the steps you should follow to upgrade a Kubernetes cluster. The Kubernetes project recommends upgrading to the latest patch releases promptly, and to ensure that you are running a supported minor release of Kubernetes. Following this recommendation helps you to to stay secure. The way that you upgrade a cluster depends on how you initially deployed it and on any subsequent changes. At a high level, the steps you perform are:
    kubernetes.io/docs/tasks/administer-cluster/cluster-upgrade/
    Registered: Wed Feb 12 06:04:00 UTC 2025
    - 433.4K bytes
    - Viewed (0)
  7. Using a Service to Expose Your App | Kubernetes

    Learn about a Service in Kubernetes. Understand how labels and selectors relate to a Service. Expose an application outside a Kubernetes cluster.
    kubernetes.io/docs/tutorials/kubernetes-basics/expose/expose-intro/
    Registered: Wed Feb 12 06:20:22 UTC 2025
    - 439.7K bytes
    - Viewed (0)
  8. Use Port Forwarding to Access Applications in a...

    This page shows how to use kubectl port-forward to connect to a MongoDB server running in a Kubernetes cluster. This type of connection can be useful for database debugging. 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.
    kubernetes.io/docs/tasks/access-application-cluster/port-forward-access-application-cluster/
    Registered: Wed Feb 12 06:20:39 UTC 2025
    - 438.6K bytes
    - Viewed (0)
  9. Hello Minikube | Kubernetes

    This tutorial shows you how to run a sample app on Kubernetes using minikube. The tutorial provides a container image that uses NGINX to echo back all the requests. Objectives Deploy a sample application to minikube. Run the app. View application logs. Before you begin This tutorial assumes that you have already set up minikube. See Step 1 in minikube start for installation instructions. Note:Only execute the instructions in Step 1, Installation.
    kubernetes.io/docs/tutorials/hello-minikube/
    Registered: Wed Feb 12 06:19:26 UTC 2025
    - 446.3K bytes
    - Viewed (0)
  10. Parallel Processing using Expansions | Kubernetes

    This task demonstrates running multiple Jobs based on a common template. You can use this approach to process batches of work in parallel. For this example there are only three items: apple, banana, and cherry. The sample Jobs process each item by printing a string then pausing. See using Jobs in real workloads to learn about how this pattern fits more realistic use cases. Before you begin You should be familiar with the basic, non-parallel, use of Job.
    kubernetes.io/docs/tasks/job/parallel-processing-expansion/
    Registered: Wed Feb 12 06:19:36 UTC 2025
    - 449.1K bytes
    - Viewed (0)
Back to top