Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

Results 511 - 520 of 685 for host:kubernetes.io (0.03 sec)

  1. kubectl create cronjob | Kubernetes

    Synopsis Create a cron job with the specified name. kubectl create cronjob NAME --image=image --schedule='0/5 * * * ?' -- [COMMAND] [args...] [flags] Examples # Create a cron job kubectl create cronjob my-job --image=busybox --schedule="*/1 * * * *" # Create a cron job with a command kubectl create cronjob my-job --image=busybox --schedule="*/1 * * * *" -- date 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_cronjob/
    Registered: Wed Apr 16 06:41:41 UTC 2025
    - 443.6K bytes
    - Viewed (0)
  2. kubectl create clusterrole | Kubernetes

    Synopsis Create a cluster role. kubectl create clusterrole NAME --verb=verb --resource=resource.group [--resource-name=resourcename] [--dry-run=server|client|none] Examples # Create a cluster role named "pod-reader" that allows user to perform "get", "watch" and "list" on pods kubectl create clusterrole pod-reader --verb=get,list,watch --resource=pods # Create a cluster role named "pod-reader" with ResourceName specified kubectl create clusterrole pod-reader --verb=get --resource=pods --resource-name=readablepod --resource-name=anotherpod # Create a cluster role named "foo" with API Group specified kubectl create clusterrole foo --verb=get,list,watch --resource=rs.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_clusterrole/
    Registered: Wed Apr 16 06:41:16 UTC 2025
    - 445.5K bytes
    - Viewed (0)
  3. kubectl set image | Kubernetes

    Synopsis Update existing container image(s) of resources. Possible resources include (case insensitive): pod (po), replicationcontroller (rc), deployment (deploy), daemonset (ds), statefulset (sts), cronjob (cj), replicaset (rs) kubectl set image (-f FILENAME | TYPE NAME) CONTAINER_NAME_1=CONTAINER_IMAGE_1 ... CONTAINER_NAME_N=CONTAINER_IMAGE_N Examples # Set a deployment's nginx container image to 'nginx:1.9.1', and its busybox container image to 'busybox' kubectl set image deployment/nginx busybox=busybox nginx=nginx:1.9.1 # Update all deployments' and rc's nginx container's image to 'nginx:1.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_set/kubectl_set_image/
    Registered: Wed Apr 16 06:40:52 UTC 2025
    - 444.1K bytes
    - Viewed (0)
  4. Validating Admission Policy | Kubernetes

    FEATURE STATE: Kubernetes v1.30 [stable] This page provides an overview of Validating Admission Policy. What is Validating Admission Policy? Validating admission policies offer a declarative, in-process alternative to validating admission webhooks. Validating admission policies use the Common Expression Language (CEL) to declare the validation rules of a policy. Validation admission policies are highly configurable, enabling policy authors to define policies that can be parameterized and scoped to resources as needed by cluster administrators.
    kubernetes.io/docs/reference/access-authn-authz/validating-admission-policy/
    Registered: Wed Apr 16 06:26:35 UTC 2025
    - 523.7K bytes
    - Viewed (0)
  5. kubectl config unset | Kubernetes

    Synopsis Unset an individual value in a kubeconfig file. PROPERTY_NAME is a dot delimited name where each token represents either an attribute name or a map key. Map keys may not contain dots. kubectl config unset PROPERTY_NAME Examples # Unset the current-context kubectl config unset current-context # Unset namespace in foo context kubectl config unset contexts.foo.namespace Options -h, --help help for unset Parent Options Inherited --as string Username to impersonate for the operation.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_unset/
    Registered: Wed Apr 16 06:42:14 UTC 2025
    - 440.1K bytes
    - Viewed (0)
  6. Diagram Guide | Kubernetes

    This guide shows you how to create, edit and share diagrams using the Mermaid JavaScript library. Mermaid.js allows you to generate diagrams using a simple markdown-like syntax inside Markdown files. You can also use Mermaid to generate .svg or .png image files that you can add to your documentation. The target audience for this guide is anybody wishing to learn about Mermaid and/or how to create and add diagrams to Kubernetes documentation.
    kubernetes.io/docs/contribute/style/diagram-guide/
    Registered: Wed Apr 16 06:45:59 UTC 2025
    - 498.6K bytes
    - Viewed (0)
  7. kubelet | Kubernetes

    Synopsis The kubelet is the primary "node agent" that runs on each node. It can register the node with the apiserver using one of: the hostname; a flag to override the hostname; or specific logic for a cloud provider. The kubelet works in terms of a PodSpec. A PodSpec is a YAML or JSON object that describes a pod. The kubelet takes a set of PodSpecs that are provided through various mechanisms (primarily through the apiserver) and ensures that the containers described in those PodSpecs are running and healthy.
    kubernetes.io/docs/reference/command-line-tools-reference/kubelet/
    Registered: Wed Apr 16 06:46:29 UTC 2025
    - 510.5K bytes
    - Viewed (0)
  8. Scheduling Policies | Kubernetes

    In Kubernetes versions before v1.23, a scheduling policy can be used to specify the predicates and priorities process. For example, you can set a scheduling policy by running kube-scheduler --policy-config-file <filename> or kube-scheduler --policy-configmap <ConfigMap>. This scheduling policy is not supported since Kubernetes v1.23. Associated flags policy-config-file, policy-configmap, policy-configmap-namespace and use-legacy-policy-config are also not supported. Instead, use the Scheduler Configuration to achieve similar behavior. What's next Learn about scheduling Learn about kube-scheduler Configuration Read the kube-scheduler configuration reference (v1)
    kubernetes.io/docs/reference/scheduling/policies/
    Registered: Wed Apr 16 06:45:55 UTC 2025
    - 433.9K bytes
    - Viewed (0)
  9. Cluster Autoscaling | Kubernetes

    Automatically manage the nodes in your cluster to adapt to demand.
    kubernetes.io/docs/concepts/cluster-administration/cluster-autoscaling/
    Registered: Wed Feb 12 05:56:26 UTC 2025
    - 433.4K bytes
    - Viewed (0)
  10. Namespaces Walkthrough | Kubernetes

    Kubernetes namespaces help different projects, teams, or customers to share a Kubernetes cluster. It does this by providing the following: A scope for Names. A mechanism to attach authorization and policy to a subsection of the cluster. Use of multiple namespaces is optional. This example demonstrates how to use Kubernetes namespaces to subdivide your cluster. 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/administer-cluster/namespaces-walkthrough/
    Registered: Mon Mar 31 06:18:30 UTC 2025
    - 462.4K bytes
    - Viewed (0)
Back to top