Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test %27 テスト [xss]

Results 271 - 280 of 686 for host:kubernetes.io (0.03 sec)

  1. Configure a kubelet image credential provider |...

    FEATURE STATE: Kubernetes v1.26 [stable] Starting from Kubernetes v1.20, the kubelet can dynamically retrieve credentials for a container image registry using exec plugins. The kubelet and the exec plugin communicate through stdio (stdin, stdout, and stderr) using Kubernetes versioned APIs. These plugins allow the kubelet to request credentials for a container registry dynamically as opposed to storing static credentials on disk. For example, the plugin may talk to a local metadata server to retrieve short-lived credentials for an image that is being pulled by the kubelet.
    kubernetes.io/docs/tasks/administer-cluster/kubelet-credential-provider/
    Registered: Wed Jun 04 06:54:00 UTC 2025
    - 477K bytes
    - Viewed (0)
  2. 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: Wed Jun 04 06:55:00 UTC 2025
    - 470.1K bytes
    - Viewed (0)
  3. 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: Wed Jun 04 06:54:48 UTC 2025
    - 468.9K bytes
    - Viewed (0)
  4. Exposing an External IP Address to Access an Ap...

    This page shows how to create a Kubernetes Service object that exposes an external IP address. Before you begin Install kubectl. Use a cloud provider like Google Kubernetes Engine or Amazon Web Services to create a Kubernetes cluster. This tutorial creates an external load balancer, which requires a cloud provider. Configure kubectl to communicate with your Kubernetes API server. For instructions, see the documentation for your cloud provider. Objectives Run five instances of a Hello World application.
    kubernetes.io/docs/tutorials/stateless-application/expose-external-ip-address/
    Registered: Wed Jun 04 07:08:27 UTC 2025
    - 463.2K bytes
    - Viewed (0)
  5. 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: Wed Jun 04 07:07:36 UTC 2025
    - 460.4K bytes
    - Viewed (0)
  6. Adopting Sidecar Containers | Kubernetes

    This section is relevant for people adopting a new built-in sidecar containers feature for their workloads. Sidecar container is not a new concept as posted in the blog post. Kubernetes allows running multiple containers in a Pod to implement this concept. However, running a sidecar container as a regular container has a lot of limitations being fixed with the new built-in sidecar containers support. FEATURE STATE: Kubernetes v1.33 [stable] (enabled by default: true) Objectives Understand the need for sidecar containers Be able to troubleshoot issues with the sidecar containers Understand options to universally "inject" sidecar containers to any workload 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/tutorials/configuration/pod-sidecar-containers/
    Registered: Wed Jun 04 07:07:42 UTC 2025
    - 459.9K bytes
    - Viewed (0)
  7. Performing a Rolling Update | Kubernetes

    Objectives Perform a rolling update using kubectl. Updating an application Rolling updates allow Deployments' update to take place with zero downtime by incrementally updating Pods instances with new ones. Users expect applications to be available all the time, and developers are expected to deploy new versions of them several times a day. In Kubernetes this is done with rolling updates. A rolling update allows a Deployment update to take place with zero downtime.
    kubernetes.io/docs/tutorials/kubernetes-basics/update/update-intro/
    Registered: Wed Jun 04 07:08:44 UTC 2025
    - 459.5K bytes
    - Viewed (0)
  8. Managing Service Accounts | Kubernetes

    A ServiceAccount provides an identity for processes that run in a Pod. A process inside a Pod can use the identity of its associated service account to authenticate to the cluster's API server. For an introduction to service accounts, read configure service accounts. This task guide explains some of the concepts behind ServiceAccounts. The guide also explains how to obtain or revoke tokens that represent ServiceAccounts, and how to (optionally) bind a ServiceAccount's validity to the lifetime of an API object.
    kubernetes.io/docs/reference/access-authn-authz/service-accounts-admin/
    Registered: Wed Jun 04 07:15:19 UTC 2025
    - 504K bytes
    - Viewed (0)
  9. kubectl create service | Kubernetes

    Synopsis Create a service using a specified subcommand. kubectl create service [flags] Options -h, --help help for service Parent Options Inherited --as string Username to impersonate for the operation. User could be a regular user or a service account in a namespace. --as-group strings Group to impersonate for the operation, this flag can be repeated to specify multiple groups. --as-uid string UID to impersonate for the operation. --cache-dir string     Default: "
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_service/ Similar Results (1)
    Registered: Wed Jun 04 07:28:48 UTC 2025
    - 453.6K bytes
    - Viewed (0)
  10. kubectl set subject | Kubernetes

    Synopsis Update the user, group, or service account in a role binding or cluster role binding. kubectl set subject (-f FILENAME | TYPE NAME) [--user=username] [--group=groupname] [--serviceaccount=namespace:serviceaccountname] [--dry-run=server|client|none] Examples # Update a cluster role binding for serviceaccount1 kubectl set subject clusterrolebinding admin --serviceaccount=namespace:serviceaccount1 # Update a role binding for user1, user2, and group1 kubectl set subject rolebinding admin --user=user1 --user=user2 --group=group1 # Print the result (in YAML format) of updating rolebinding subjects from a local, without hitting the server kubectl create rolebinding admin --role=admin --user=admin -o yaml --dry-run=client | kubectl set subject --local -f - --user=foo -o yaml Options --all Select all resources, in the namespace of the specified resource types
    kubernetes.io/docs/reference/kubectl/generated/kubectl_set/kubectl_set_subject/
    Registered: Wed Jun 04 07:27:55 UTC 2025
    - 458.6K bytes
    - Viewed (0)
Back to top