Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 51 - 60 of 659 for timestamp:[now/d-1M TO *] (0.03 sec)

  1. kubectl reference | Kubernetes

    kubectl reference kubectl kubectl annotate kubectl api-resources kubectl api-versions kubectl apply kubectl attach ku...
    kubernetes.io/docs/reference/kubectl/generated/
    Registered: Fri May 10 08:03:37 UTC 2024
    - 417.4K bytes
    - Viewed (0)
  2. kubectl create serviceaccount | Kubernetes

    Synopsis Create a service account with the specified name. kubectl create serviceaccount NAME [--dry-run=server|client|none] Examples # Create a new service account named my-service-account kubectl create serviceaccount my-service-account 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. --dry-run string[="unchanged"]     Default: "none" Must be "none", "server", or "client". If client strategy, only print the object that would be sent, without sending it.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_serviceaccount/
    Registered: Fri May 10 08:09:20 UTC 2024
    - 428.3K bytes
    - Viewed (0)
  3. kubectl config current-context | Kubernetes

    Synopsis Display the current-context. kubectl config current-context [flags] Examples # Display the current-context kubectl config current-context Options -h, --help help for current-context --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_config/kubectl_config_current-context/
    Registered: Fri May 10 08:07:53 UTC 2024
    - 424.5K bytes
    - Viewed (0)
  4. 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 --as string Username to impersonate for the operation.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_unset/
    Registered: Fri May 10 08:07:59 UTC 2024
    - 424.1K bytes
    - Viewed (0)
  5. kubectl edit | Kubernetes

    Synopsis Edit a resource from the default editor. The edit command allows you to directly edit any API resource you can retrieve via the command-line tools. It will open the editor defined by your KUBE_EDITOR, or EDITOR environment variables, or fall back to 'vi' for Linux or 'notepad' for Windows. When attempting to open the editor, it will first attempt to use the shell that has been defined in the 'SHELL' environment variable.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_edit/
    Registered: Fri May 10 08:09:57 UTC 2024
    - 427.5K bytes
    - Viewed (0)
  6. kubeadm upgrade phase | Kubernetes

    In v1.15.0, kubeadm introduced preliminary support for kubeadm upgrade node phases. Phases for other kubeadm upgrade sub-commands such as apply, could be added in the following releases. kubeadm upgrade node phase Using this phase you can choose to execute the separate steps of the upgrade of secondary control-plane or worker nodes. Please note that kubeadm upgrade apply still has to be called on a primary control-plane node. phase preflight control-plane kubelet-config Use this command to invoke single phase of the node workflow
    kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-upgrade-phase/
    Registered: Fri May 10 08:08:39 UTC 2024
    - 424.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top