Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 1 - 10 of 719 for host:kubernetes.io (0.04 sec)

  1. kubectl create ingress | Kubernetes

    Synopsis Create an ingress with the specified name. kubectl create ingress NAME --rule=host/path=service:port[,tls[=secret]] Examples # Create a single ingress called 'simple' that directs requests to foo.com/bar to svc # svc1:8080 with a TLS secret "my-cert" kubectl create ingress simple --rule="foo.com/bar=svc1:8080,tls=my-cert" # Create a catch all ingress of "/path" pointing to service svc:port and Ingress Class as "otheringress" kubectl create ingress catch-all --class=otheringress --rule="/path=svc:port" # Create an ingress with two annotations: ingress.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create_ingress/
    Registered: Fri Jan 05 08:00:21 UTC 2024
    - 389.6K bytes
    - Viewed (0)
  2. kubectl create configmap | Kubernetes

    Synopsis Create a config map based on a file, directory, or specified literal value. A single config map may package one or more key/value pairs. When creating a config map based on a file, the key will default to the basename of the file, and the value will default to the file content. If the basename is an invalid key, you may specify an alternate key. When creating a config map based on a directory, each file whose basename is a valid key in the directory will be packaged into the config map.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create_configmap/
    Registered: Fri Jan 05 08:00:16 UTC 2024
    - 388.9K bytes
    - Viewed (0)
  3. 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 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_deployment/
    Registered: Fri Jan 05 08:00:34 UTC 2024
    - 389.3K bytes
    - Viewed (0)
  4. kubectl auth whoami | Kubernetes

    Synopsis Experimental: Check who you are and your attributes (groups, extra). This command is helpful to get yourself aware of the current user attributes, especially when dynamic authentication, e.g., token webhook, auth proxy, or OIDC provider, is enabled in the Kubernetes cluster. kubectl auth whoami Examples # Get your subject attributes. kubectl auth whoami # Get your subject attributes in JSON format. kubectl auth whoami -o json 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_auth_whoami/
    Registered: Fri Jan 05 07:57:29 UTC 2024
    - 385.7K bytes
    - Viewed (0)
  5. kubectl config set-context | Kubernetes

    Synopsis Set a context entry in kubeconfig. Specifying a name that already exists will merge new fields on top of existing values for those fields. kubectl config set-context [NAME | --current] [--cluster=cluster_nickname] [--user=user_nickname] [--namespace=namespace] Examples # Set the user field on the gce context entry without touching other values kubectl config set-context gce --user=cluster-admin Options --cluster string cluster for the context entry in kubeconfig --current Modify the current context
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config_set-context/
    Registered: Fri Jan 05 07:54:55 UTC 2024
    - 384.3K bytes
    - Viewed (0)
  6. kubectl config delete-cluster | Kubernetes

    Synopsis Delete the specified cluster from the kubeconfig. kubectl config delete-cluster NAME Examples # Delete the minikube cluster kubectl config delete-cluster minikube Options -h, --help help for delete-cluster --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.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config_delete-cluster/
    Registered: Fri Jan 05 07:54:35 UTC 2024
    - 383.9K bytes
    - Viewed (0)
  7. kubectl config delete-user | Kubernetes

    Synopsis Delete the specified user from the kubeconfig. kubectl config delete-user NAME Examples # Delete the minikube user kubectl config delete-user minikube Options -h, --help help for delete-user --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.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config_delete-user/
    Registered: Fri Jan 05 07:54:41 UTC 2024
    - 383.7K bytes
    - Viewed (0)
  8. kubectl alpha | Kubernetes

    Synopsis These commands correspond to alpha features that are not enabled in Kubernetes clusters by default. Options -h, --help help for alpha --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. --azure-container-registry-config string Path to the file containing Azure container registry configuration information.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_alpha/
    Registered: Fri Jan 05 07:53:54 UTC 2024
    - 383.7K bytes
    - Viewed (0)
  9. 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 serviceaccount 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_rolebinding/
    Registered: Fri Jan 05 08:29:41 UTC 2024
    - 389.5K bytes
    - Viewed (0)
  10. kubectl plugin list | Kubernetes

    Synopsis List all available plugin files on a user's PATH. Available plugin files are those that are: - executable - anywhere on the user's PATH - begin with "kubectl-" kubectl plugin list [flags] Examples # List all available plugins kubectl plugin list Options -h, --help help for list --name-only If true, display only the binary name of each plugin, rather than its full path --as string Username to impersonate for the operation.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_plugin_list/
    Registered: Fri Jan 05 08:32:39 UTC 2024
    - 383.7K bytes
    - Viewed (0)
Back to top