Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 41 - 50 of 659 for host:kubernetes.io (0.02 sec)

  1. Expose Pod Information to Containers Through Fi...

    This page shows how a Pod can use a downwardAPI volume, to expose information about itself to containers running in the Pod. A downwardAPI volume can expose Pod fields and container fields. In Kubernetes, there are two ways to expose Pod and container fields to a running container: Environment variables Volume files, as explained in this task Together, these two ways of exposing Pod and container fields are called the downward API.
    kubernetes.io/docs/tasks/inject-data-application/downward-api-volume-expose-pod-information/
    Registered: Fri Apr 19 07:47:34 UTC 2024
    - 446.4K bytes
    - Viewed (1)
  2. 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 19 07:59:01 UTC 2024
    - 428.2K bytes
    - Viewed (0)
  3. kubectl patch | Kubernetes

    Synopsis Update fields of a resource using strategic merge patch, a JSON merge patch, or a JSON patch. JSON and YAML formats are accepted. Note: Strategic merge patch is not supported for custom resources. kubectl patch (-f FILENAME | TYPE NAME) [-p PATCH|--patch-file FILE] Examples # Partially update a node using a strategic merge patch, specifying the patch as JSON kubectl patch node k8s-node-1 -p '{"spec":{"unschedulable":true}}' # Partially update a node using a strategic merge patch, specifying the patch as YAML kubectl patch node k8s-node-1 -p $'spec:\n unschedulable: true' # Partially update a node identified by the type and name specified in "node.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_patch/
    Registered: Fri Apr 19 08:15:30 UTC 2024
    - 427K bytes
    - Viewed (0)
  4. kubectl port-forward | Kubernetes

    Synopsis Forward one or more local ports to a pod. Use resource type/name such as deployment/mydeployment to select a pod. Resource type defaults to 'pod' if omitted. If there are multiple pods matching the criteria, a pod will be selected automatically. The forwarding session ends when the selected pod terminates, and a rerun of the command is needed to resume forwarding. kubectl port-forward TYPE/NAME [options] [LOCAL_PORT:]REMOTE_PORT [...[LOCAL_PORT_N:]REMOTE_PORT_N] Examples # Listen on ports 5000 and 6000 locally, forwarding data to/from ports 5000 and 6000 in the pod kubectl port-forward pod/mypod 5000 6000 # Listen on ports 5000 and 6000 locally, forwarding data to/from ports 5000 and 6000 in a pod selected by the deployment kubectl port-forward deployment/mydeployment 5000 6000 # Listen on port 8443 locally, forwarding to the targetPort of the service's port named "https" in a pod selected by the service kubectl port-forward service/myservice 8443:https # Listen on port 8888 locally, forwarding to 5000 in the pod kubectl port-forward pod/mypod 8888:5000 # Listen on port 8888 on all addresses, forwarding to 5000 in the pod kubectl port-forward --address 0.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_port-forward/
    Registered: Fri Apr 19 08:15:35 UTC 2024
    - 425.9K bytes
    - Viewed (0)
  5. Manage HugePages | Kubernetes

    Configure and manage huge pages as a schedulable resource in a cluster.
    kubernetes.io/docs/tasks/manage-hugepages/scheduling-hugepages/
    Registered: Fri Apr 19 07:55:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  6. Tutorials | Kubernetes

    This section of the Kubernetes documentation contains tutorials. A tutorial shows how to accomplish a goal that is larger than a single task. Typically a tutorial has several sections, each of which has a sequence of steps. Before walking through each tutorial, you may want to bookmark the Standardized Glossary page for later references. Basics Kubernetes Basics is an in-depth interactive tutorial that helps you understand the Kubernetes system and try out some basic Kubernetes features.
    kubernetes.io/docs/tutorials/
    Registered: Fri Apr 19 07:56:00 UTC 2024
    - 417.1K bytes
    - Viewed (0)
  7. Expose Your App Publicly | Kubernetes

    Expose Your App Publicly Using a Service to Expose Your App Learn about a Service in Kubernetes. Understand how label...
    kubernetes.io/docs/tutorials/kubernetes-basics/expose/
    Registered: Fri Apr 19 07:56:23 UTC 2024
    - 414.1K bytes
    - Viewed (0)
  8. kubectl describe | Kubernetes

    Synopsis Show details of a specific resource or group of resources. Print a detailed description of the selected resources, including related resources such as events or controllers. You may select a single object by name, all objects of that type, provide a name prefix, or label selector. For example: $ kubectl describe TYPE NAME_PREFIX will first check for an exact match on TYPE and NAME_PREFIX. If no such resource exists, it will output details for every resource that has a name prefixed with NAME_PREFIX.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_describe/
    Registered: Fri Apr 19 08:08:46 UTC 2024
    - 424.6K bytes
    - Viewed (0)
  9. kubectl create priorityclass | Kubernetes

    Synopsis Create a priority class with the specified name, value, globalDefault and description. kubectl create priorityclass NAME --value=VALUE --global-default=BOOL [--dry-run=server|client|none] Examples # Create a priority class named high-priority kubectl create priorityclass high-priority --value=1000 --description="high priority" # Create a priority class named default-priority that is considered as the global default priority kubectl create priorityclass default-priority --value=1000 --global-default=true --description="default priority" # Create a priority class named high-priority that cannot preempt pods with lower priority kubectl create priorityclass high-priority --value=1000 --description="high priority" --preemption-policy="Never" 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_priorityclass/
    Registered: Fri Apr 19 08:08:51 UTC 2024
    - 430.7K bytes
    - Viewed (0)
  10. 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 19 08:07:49 UTC 2024
    - 429.5K bytes
    - Viewed (0)
Back to top