Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 171 - 180 of 686 for host:kubernetes.io (0.02 sec)

  1. Running Kubelet in Standalone Mode | Kubernetes

    This tutorial shows you how to run a standalone kubelet instance. You may have different motivations for running a standalone kubelet. This tutorial is aimed at introducing you to Kubernetes, even if you don't have much experience with it. You can follow this tutorial and learn about node setup, basic (static) Pods, and how Kubernetes manages containers. Once you have followed this tutorial, you could try using a cluster that has a control plane to manage pods and nodes, and other types of objects.
    kubernetes.io/docs/tutorials/cluster-management/kubelet-standalone/
    Registered: Wed Jun 04 07:09:10 UTC 2025
    - 479K bytes
    - Viewed (0)
  2. Using Minikube to Create a Cluster | Kubernetes

    Objectives Learn what a Kubernetes cluster is. Learn what Minikube is. Start a Kubernetes cluster on your computer. Kubernetes Clusters Kubernetes is a production-grade, open-source platform that orchestrates the placement (scheduling) and execution of application containers within and across computer clusters. Kubernetes coordinates a highly available cluster of computers that are connected to work as a single unit. The abstractions in Kubernetes allow you to deploy containerized applications to a cluster without tying them specifically to individual machines.
    kubernetes.io/docs/tutorials/kubernetes-basics/create-cluster/cluster-intro/
    Registered: Wed Jun 04 07:09:16 UTC 2025
    - 453.7K bytes
    - Viewed (0)
  3. Translate a Docker Compose File to Kubernetes R...

    What's Kompose? It's a conversion tool for all things compose (namely Docker Compose) to container orchestrators (Kubernetes or OpenShift). More information can be found on the Kompose website at https://kompose.io/. 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/configure-pod-container/translate-compose-kubernetes/
    Registered: Wed Jun 04 06:54:52 UTC 2025
    - 481.4K bytes
    - Viewed (0)
  4. Share Process Namespace between Containers in a...

    This page shows how to configure process namespace sharing for a pod. When process namespace sharing is enabled, processes in a container are visible to all other containers in the same pod. You can use this feature to configure cooperating containers, such as a log handler sidecar container, or to troubleshoot container images that don't include debugging utilities like a shell. 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/share-process-namespace/
    Registered: Wed Jun 04 06:54:11 UTC 2025
    - 458.2K bytes
    - Viewed (0)
  5. 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 Jun 04 07:04:45 UTC 2025
    - 467.2K bytes
    - Viewed (0)
  6. Inject Data Into Applications | Kubernetes

    Specify configuration and other data for the Pods that run your workload.
    kubernetes.io/docs/tasks/inject-data-application/
    Registered: Wed Jun 04 07:04:32 UTC 2025
    - 445.7K bytes
    - Viewed (0)
  7. Dynamic Admission Control | Kubernetes

    In addition to compiled-in admission plugins, admission plugins can be developed as extensions and run as webhooks configured at runtime. This page describes how to build, configure, use, and monitor admission webhooks. What are admission webhooks? Admission webhooks are HTTP callbacks that receive admission requests and do something with them. You can define two types of admission webhooks, validating admission webhook and mutating admission webhook. Mutating admission webhooks are invoked first, and can modify objects sent to the API server to enforce custom defaults.
    kubernetes.io/docs/reference/access-authn-authz/extensible-admission-controllers/
    Registered: Wed Jun 04 07:14:32 UTC 2025
    - 582.1K bytes
    - Viewed (0)
  8. Audit Annotations | Kubernetes

    This page serves as a reference for the audit annotations of the kubernetes.io namespace. These annotations apply to Event object from API group audit.k8s.io. Note:The following annotations are not used within the Kubernetes API. When you enable auditing in your cluster, audit event data is written using Event from API group audit.k8s.io. The annotations apply to audit events. Audit events are different from objects in the Event API (API group events.
    kubernetes.io/docs/reference/labels-annotations-taints/audit-annotations/
    Registered: Wed Jun 04 07:15:00 UTC 2025
    - 454.9K bytes
    - Viewed (0)
  9. kubeadm join | Kubernetes

    This command initializes a new Kubernetes node and joins it to the existing cluster. Run this on any machine you wish to join an existing cluster Synopsis When joining a kubeadm initialized cluster, we need to establish bidirectional trust. This is split into discovery (having the Node trust the Kubernetes Control Plane) and TLS bootstrap (having the Kubernetes Control Plane trust the Node). There are 2 main schemes for discovery.
    kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-join/
    Registered: Wed Jun 04 07:20:29 UTC 2025
    - 473.4K bytes
    - Viewed (0)
  10. 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 Jun 04 07:20:35 UTC 2025
    - 454.9K bytes
    - Viewed (0)
Back to top