Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 11 - 20 of 630 for host:kubernetes.io (0.03 sec)

  1. 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: Fri May 10 08:11:42 UTC 2024
    - 430.3K bytes
    - Viewed (0)
  2. kubectl create service clusterip | Kubernetes

    Synopsis Create a ClusterIP service with the specified name. kubectl create service clusterip NAME [--tcp=<port>:<targetPort>] [--dry-run=server|client|none] Examples # Create a new ClusterIP service named my-cs kubectl create service clusterip my-cs --tcp=5678:8080 # Create a new ClusterIP service named my-cs (in headless mode) kubectl create service clusterip my-cs --clusterip="None" 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. Only applies to golang and jsonpath output formats.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_service_clusterip/
    Registered: Fri May 10 08:11:51 UTC 2024
    - 428.4K bytes
    - Viewed (0)
  3. kubectl get | Kubernetes

    Synopsis Display one or many resources. Prints a table of the most important information about the specified resources. You can filter the list using a label selector and the --selector flag. If the desired resource type is namespaced you will only see results in your current namespace unless you pass --all-namespaces. By specifying the output as 'template' and providing a Go template as the value of the --template flag, you can filter the attributes of the fetched resources.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_get/
    Registered: Fri May 10 08:13:20 UTC 2024
    - 430K bytes
    - Viewed (0)
  4. 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: Fri May 10 08:12:53 UTC 2024
    - 427.9K bytes
    - Viewed (0)
  5. Event Rate Limit Configuration (v1alpha1) | Kub...

    Resource Types Configuration Configuration Configuration provides configuration for the EventRateLimit admission controller. FieldDescription apiVersionstringeventratelimit.admission.k8s.io/v1alpha1 kindstringConfiguration limits [Required] []Limit limits are the limits to place on event queries received. Limits can be placed on events received server-wide, per namespace, per user, and per source+object. At least one limit is required. Limit Appears in: Configuration Limit is the configuration for a particular limit type FieldDescription type [Required] LimitType type is the type of limit to which this configuration applies
    kubernetes.io/docs/reference/config-api/apiserver-eventratelimit.v1alpha1/
    Registered: Fri May 10 08:15:48 UTC 2024
    - 419.2K bytes
    - Viewed (0)
  6. 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: Fri May 10 08:15:16 UTC 2024
    - 428.4K bytes
    - Viewed (0)
  7. kubectl | Kubernetes

    Synopsis kubectl controls the Kubernetes cluster manager. Find more information in Command line tool (kubectl). kubectl [flags] Options --add-dir-header If true, adds the file directory to the header of the log messages --alsologtostderr log to standard error as well as files --as string Username to impersonate for the operation --as-group stringArray Group to impersonate for the operation, this flag can be repeated to specify multiple groups. --azure-container-registry-config string Path to the file containing Azure container registry configuration information.
    kubernetes.io/docs/reference/kubectl/kubectl/
    Registered: Fri May 10 08:15:01 UTC 2024
    - 432.5K bytes
    - Viewed (0)
  8. kubeadm Configuration (v1beta3) | Kubernetes

    Overview Package v1beta3 defines the v1beta3 version of the kubeadm configuration file format. This version improves on the v1beta2 format by fixing some minor issues and adding a few new fields. A list of changes since v1beta2: The deprecated "ClusterConfiguration.useHyperKubeImage" field has been removed. Kubeadm no longer supports the hyperkube image. The "ClusterConfiguration.DNS.Type" field has been removed since CoreDNS is the only supported DNS server type by kubeadm. Include "datapolicy" tags on the fields that hold secrets.
    kubernetes.io/docs/reference/config-api/kubeadm-config.v1beta3/
    Registered: Fri May 10 08:18:16 UTC 2024
    - 475.7K bytes
    - Viewed (0)
  9. kubectl config set-credentials | Kubernetes

    Synopsis Set a user entry in kubeconfig. Specifying a name that already exists will merge new fields on top of existing values. Client-certificate flags: --client-certificate=certfile --client-key=keyfile Bearer token flags: --token=bearer_token Basic auth flags: --username=basic_user --password=basic_password Bearer token and basic auth are mutually exclusive. kubectl config set-credentials NAME [--client-certificate=path/to/certfile] [--client-key=path/to/keyfile] [--token=bearer_token] [--username=basic_user] [--password=basic_password] [--auth-provider=provider_name] [--auth-provider-arg=key=value] [--exec-command=exec_command] [--exec-api-version=exec_api_version] [--exec-arg=arg] [--exec-env=key=value] Examples # Set only the "client-key" field on the "cluster-admin" # entry, without touching other values kubectl config set-credentials cluster-admin --client-key=~/.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_set-credentials/
    Registered: Fri May 10 08:05:40 UTC 2024
    - 431.1K bytes
    - Viewed (0)
  10. kubectl auth reconcile | Kubernetes

    Synopsis Reconciles rules for RBAC role, role binding, cluster role, and cluster role binding objects. Missing objects are created, and the containing namespace is created for namespaced objects, if required. Existing roles are updated to include the permissions in the input objects, and remove extra permissions if --remove-extra-permissions is specified. Existing bindings are updated to include the subjects in the input objects, and remove extra subjects if --remove-extra-subjects is specified.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_auth/kubectl_auth_reconcile/
    Registered: Fri May 10 08:07:37 UTC 2024
    - 427.1K bytes
    - Viewed (0)
Back to top