Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

Results 191 - 200 of 705 for host:kubernetes.io (0.03 sec)

  1. kubectl create deployment | Kubernetes

    Synopsis Create a deployment with the specified name. kubectl create deployment NAME --image=image -- [COMMAND] [args...] Examples # Create a deployment named my-dep that runs the busybox image kubectl create deployment my-dep --image=busybox # Create a deployment with a command kubectl create deployment my-dep --image=busybox -- date # Create a deployment named my-dep that runs the nginx image with 3 replicas kubectl create deployment my-dep --image=nginx --replicas=3 # Create a deployment named my-dep that runs the busybox image and expose port 5701 kubectl create deployment my-dep --image=busybox --port=5701 # Create a deployment named my-dep that runs multiple containers kubectl create deployment my-dep --image=busybox:latest --image=ubuntu:latest --image=nginx Options --allow-missing-template-keys     Default: true If true, ignore any errors in templates when a field or map key is missing in the template.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_deployment/
    Registered: Fri Nov 21 10:11:50 UTC 2025
    - 471.2K bytes
    - Viewed (0)
  2. kubectl create rolebinding | Kubernetes

    Synopsis Create a role binding for a particular role or cluster role. kubectl create rolebinding NAME --clusterrole=NAME|--role=NAME [--user=username] [--group=groupname] [--serviceaccount=namespace:serviceaccountname] [--dry-run=server|client|none] Examples # Create a role binding for user1, user2, and group1 using the admin cluster role kubectl create rolebinding admin --clusterrole=admin --user=user1 --user=user2 --group=group1 # Create a role binding for service account monitoring:sa-dev using the admin role kubectl create rolebinding admin-binding --role=admin --serviceaccount=monitoring:sa-dev Options --allow-missing-template-keys     Default: true If true, ignore any errors in templates when a field or map key is missing in the template.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_rolebinding/ Similar Results (1)
    Registered: Fri Nov 21 10:17:19 UTC 2025
    - 470.6K bytes
    - Viewed (0)
  3. kubectl explain | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/reference/kubectl/generated/kubectl_explain/
    Registered: Fri Nov 21 10:17:24 UTC 2025
    - 467.2K bytes
    - Viewed (0)
  4. kubectl rollout restart | Kubernetes

    Synopsis Restart a resource. Resource rollout will be restarted. kubectl rollout restart RESOURCE Examples # Restart all deployments in the test-namespace namespace kubectl rollout restart deployment -n test-namespace # Restart a deployment kubectl rollout restart deployment/nginx # Restart a daemon set kubectl rollout restart daemonset/abc # Restart deployments with the app=nginx label kubectl rollout restart deployment --selector=app=nginx Options --allow-missing-template-keys     Default: true If true, ignore any errors in templates when a field or map key is missing in the template.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_rollout/kubectl_rollout_restart/ Similar Results (1)
    Registered: Fri Nov 21 10:17:28 UTC 2025
    - 468.5K bytes
    - Viewed (0)
  5. Operator pattern | Kubernetes

    Operators are software extensions to Kubernetes that make use of custom resources to manage applications and their components. Operators follow Kubernetes principles, notably the control loop. Motivation The operator pattern aims to capture the key aim of a human operator who is managing a service or set of services. Human operators who look after specific applications and services have deep knowledge of how the system ought to behave, how to deploy it, and how to react if there are problems.
    kubernetes.io/docs/concepts/extend-kubernetes/operator/
    Registered: Fri Nov 21 09:22:02 UTC 2025
    - 468.5K bytes
    - Viewed (0)
  6. Resource Management for Windows nodes | Kubernetes

    This page outlines the differences in how resources are managed between Linux and Windows. On Linux nodes, cgroups are used as a pod boundary for resource control. Containers are created within that boundary for network, process and file system isolation. The Linux cgroup APIs can be used to gather CPU, I/O, and memory use statistics. In contrast, Windows uses a job object per container with a system namespace filter to contain all processes in a container and provide logical isolation from the host.
    kubernetes.io/docs/concepts/configuration/windows-resource-management/
    Registered: Fri Nov 21 09:22:50 UTC 2025
    - 463.2K bytes
    - Viewed (0)
  7. Compute, Storage, and Networking Extensions | K...

    Production-Grade Container Orchestration
    kubernetes.io/docs/concepts/extend-kubernetes/compute-storage-net/
    Registered: Fri Nov 21 09:24:19 UTC 2025
    - 462.4K bytes
    - Viewed (0)
  8. Linux kernel security constraints for Pods and ...

    Overview of Linux kernel security modules and constraints that you can use to harden your Pods and containers.
    kubernetes.io/docs/concepts/security/linux-kernel-security-constraints/
    Registered: Fri Nov 21 09:26:00 UTC 2025
    - 472.5K bytes
    - Viewed (0)
  9. Assigning Pods to Nodes | Kubernetes

    You can constrain a Pod so that it is restricted to run on particular node(s), or to prefer to run on particular nodes. There are several ways to do this and the recommended approaches all use label selectors to facilitate the selection. Often, you do not need to set any such constraints; the scheduler will automatically do a reasonable placement (for example, spreading your Pods across nodes so as not place Pods on a node with insufficient free resources).
    kubernetes.io/docs/concepts/scheduling-eviction/assign-pod-node/
    Registered: Fri Nov 21 09:26:19 UTC 2025
    - 539.4K bytes
    - Viewed (0)
  10. Installing Addons | Kubernetes

    Note: This section links to third party projects that provide functionality required by Kubernetes. The Kubernetes project authors aren't responsible for these projects, which are listed alphabetically. To add a project to this list, read the content guide before submitting a change. More information. Add-ons extend the functionality of Kubernetes. This page lists some of the available add-ons and links to their respective installation instructions. The list does not try to be exhaustive.
    kubernetes.io/docs/concepts/cluster-administration/addons/
    Registered: Fri Nov 21 09:25:19 UTC 2025
    - 468.2K bytes
    - Viewed (0)
Back to top