Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 61 - 70 of 659 for host:kubernetes.io (0.02 sec)

  1. Using ABAC Authorization | Kubernetes

    Attribute-based access control (ABAC) defines an access control paradigm whereby access rights are granted to users through the use of policies which combine attributes together. Policy File Format To enable ABAC mode, specify --authorization-policy-file=SOME_FILENAME and --authorization-mode=ABAC on startup. The file format is one JSON object per line. There should be no enclosing list or map, only one map per line. Each line is a "policy object", where each such object is a map with the following properties:
    kubernetes.io/docs/reference/access-authn-authz/abac/
    Registered: Fri Apr 26 07:56:16 UTC 2024
    - 427.6K bytes
    - Viewed (0)
  2. 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/kubectl_create_ingress/
    Registered: Fri Apr 26 08:06:01 UTC 2024
    - 428.9K bytes
    - Viewed (0)
  3. kubectl cordon | Kubernetes

    Synopsis Mark node as unschedulable. kubectl cordon NODE Examples # Mark node "foo" as unschedulable kubectl cordon foo Options --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. If server strategy, submit server-side request without persisting the resource. -h, --help help for cordon -l, --selector string Selector (label query) to filter on, supports '=', '==', and '!
    kubernetes.io/docs/reference/kubectl/generated/kubectl_cordon/
    Registered: Fri Apr 26 08:05:39 UTC 2024
    - 422K bytes
    - Viewed (0)
  4. Declarative Management of Kubernetes Objects Us...

    Kustomize is a standalone tool to customize Kubernetes objects through a kustomization file. Since 1.14, Kubectl also supports the management of Kubernetes objects using a kustomization file. To view Resources found in a directory containing a kustomization file, run the following command: kubectl kustomize <kustomization_directory> To apply those Resources, run kubectl apply with --kustomize or -k flag: kubectl apply -k <kustomization_directory> Before you begin Install kubectl. 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/manage-kubernetes-objects/kustomization/
    Registered: Fri Apr 26 07:46:21 UTC 2024
    - 517.2K bytes
    - Viewed (0)
  5. Indexed Job for Parallel Processing with Static...

    FEATURE STATE: Kubernetes v1.24 [stable] In this example, you will run a Kubernetes Job that uses multiple parallel worker processes. Each worker is a different container running in its own Pod. The Pods have an index number that the control plane sets automatically, which allows each Pod to identify which part of the overall task to work on. The pod index is available in the annotation batch.kubernetes.io/job-completion-index as a string representing its decimal value.
    kubernetes.io/docs/tasks/job/indexed-parallel-processing-static/
    Registered: Fri Apr 26 07:46:28 UTC 2024
    - 438.3K bytes
    - Viewed (0)
  6. Scale a StatefulSet | Kubernetes

    This task shows how to scale a StatefulSet. Scaling a StatefulSet refers to increasing or decreasing the number of replicas. Before you begin StatefulSets are only available in Kubernetes version 1.5 or later. To check your version of Kubernetes, run kubectl version. Not all stateful applications scale nicely. If you are unsure about whether to scale your StatefulSets, see StatefulSet concepts or StatefulSet tutorial for further information. You should perform scaling only when you are confident that your stateful application cluster is completely healthy.
    kubernetes.io/docs/tasks/run-application/scale-stateful-set/
    Registered: Fri Apr 26 07:46:46 UTC 2024
    - 419.9K bytes
    - Viewed (0)
  7. Access Applications in a Cluster | Kubernetes

    Configure load balancing, port forwarding, or setup firewall or DNS configurations to access applications in a cluster.
    kubernetes.io/docs/tasks/access-application-cluster/
    Registered: Fri Apr 26 07:46:33 UTC 2024
    - 415.1K bytes
    - Viewed (0)
  8. Node Labels Populated By The Kubelet | Kubernetes

    Kubernetes nodes come pre-populated with a standard set of labels. You can also set your own labels on nodes, either through the kubelet configuration or using the Kubernetes API. Preset labels The preset labels that Kubernetes sets on nodes are: kubernetes.io/arch kubernetes.io/hostname kubernetes.io/os node.kubernetes.io/instance-type (if known to the kubelet – Kubernetes may not have this information to set the label) topology.kubernetes.io/region (if known to the kubelet – Kubernetes may not have this information to set the label) topology.
    kubernetes.io/docs/reference/node/node-labels/
    Registered: Fri Apr 26 07:59:23 UTC 2024
    - 416.7K bytes
    - Viewed (0)
  9. kubectl apply | Kubernetes

    Synopsis Apply a configuration to a resource by file name or stdin. The resource name must be specified. This resource will be created if it doesn't exist yet. To use 'apply', always create the resource initially with either 'apply' or 'create --save-config'. JSON and YAML formats are accepted. Alpha Disclaimer: the --prune functionality is not yet complete. Do not use unless you are aware of what the current state is.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_apply/
    Registered: Fri Apr 26 07:59:29 UTC 2024
    - 429K bytes
    - Viewed (0)
  10. Client Authentication (v1beta1) | Kubernetes

    Resource Types ExecCredential ExecCredential ExecCredential is used by exec-based plugins to communicate credentials to HTTP transports. FieldDescription apiVersionstringclient.authentication.k8s.io/v1beta1 kindstringExecCredential spec [Required] ExecCredentialSpec Spec holds information passed to the plugin by the transport. status ExecCredentialStatus Status is filled in by the plugin and holds the credentials that the transport should use to contact the API. Cluster Appears in: ExecCredentialSpec Cluster contains information to allow an exec plugin to communicate with the kubernetes cluster being authenticated to.
    kubernetes.io/docs/reference/config-api/client-authentication.v1beta1/
    Registered: Fri Apr 26 08:12:02 UTC 2024
    - 421.4K bytes
    - Viewed (0)
Back to top