Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test テスト

Results 51 - 60 of 628 for content_length:[100000 TO 499999] (0.03 sec)

  1. Dynamic Resource Allocation | Kubernetes

    FEATURE STATE: Kubernetes v1.26 [alpha] Dynamic resource allocation is an API for requesting and sharing resources between pods and containers inside a pod. It is a generalization of the persistent volumes API for generic resources. Third-party resource drivers are responsible for tracking and allocating resources, with additional support provided by Kubernetes via structured parameters (introduced in Kubernetes 1.30). When a driver uses structured parameters, Kubernetes handles scheduling and resource allocation without having to communicate with the driver.
    kubernetes.io/docs/concepts/scheduling-eviction/dynamic-resource-allocation/
    Registered: Fri May 10 07:27:45 UTC 2024
    - 440.1K bytes
    - Viewed (0)
  2. Cloud Native Security and Kubernetes | Kubernetes

    Concepts for keeping your cloud-native workload secure.
    kubernetes.io/docs/concepts/security/cloud-native-security/
    Registered: Fri May 10 07:26:53 UTC 2024
    - 426.5K bytes
    - Viewed (0)
  3. kubectl debug | Kubernetes

    Synopsis Debug cluster resources using interactive debugging containers. 'debug' provides automation for common debugging tasks for cluster objects identified by resource and name. Pods will be used by default if no resource is specified. The action taken by 'debug' varies depending on what resource is specified. Supported actions include: Workload: Create a copy of an existing pod with certain attributes changed, for example changing the image tag to a new version.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_debug/
    Registered: Fri May 10 08:13:36 UTC 2024
    - 427.2K bytes
    - Viewed (0)
  4. kubectl logs | Kubernetes

    Synopsis Print the logs for a container in a pod or specified resource. If the pod has only one container, the container name is optional. kubectl logs [-f] [-p] (POD | TYPE/NAME) [-c CONTAINER] Examples # Return snapshot logs from pod nginx with only one container kubectl logs nginx # Return snapshot logs from pod nginx with multi containers kubectl logs nginx --all-containers=true # Return snapshot logs from all containers in pods defined by label app=nginx kubectl logs -l app=nginx --all-containers=true # Return snapshot of previous terminated ruby container logs from pod web-1 kubectl logs -p -c ruby web-1 # Begin streaming the logs of the ruby container in pod web-1 kubectl logs -f -c ruby web-1 # Begin streaming the logs from all containers in pods defined by label app=nginx kubectl logs -f -l app=nginx --all-containers=true # Display only the most recent 20 lines of output in pod nginx kubectl logs --tail=20 nginx # Show all logs from pod nginx written in the last hour kubectl logs --since=1h nginx # Show logs from a kubelet with an expired serving certificate kubectl logs --insecure-skip-tls-verify-backend nginx # Return snapshot logs from first container of a job named hello kubectl logs job/hello # Return snapshot logs from container nginx-1 of a deployment named nginx kubectl logs deployment/nginx -c nginx-1 Options --all-containers Get all containers' logs in the pod(s).
    kubernetes.io/docs/reference/kubectl/generated/kubectl_logs/
    Registered: Fri May 10 08:12:24 UTC 2024
    - 429.3K bytes
    - Viewed (0)
  5. kubectl create namespace | Kubernetes

    Synopsis Create a namespace with the specified name. kubectl create namespace NAME [--dry-run=server|client|none] Examples # Create a new namespace named my-namespace kubectl create namespace my-namespace 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_namespace/
    Registered: Fri May 10 08:13:50 UTC 2024
    - 427.9K bytes
    - Viewed (0)
  6. 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 May 10 08:13:15 UTC 2024
    - 430K bytes
    - Viewed (0)
  7. kubectl plugin | Kubernetes

    Synopsis Provides utilities for interacting with plugins. Plugins provide extended functionality that is not part of the major command-line distribution. Please refer to the documentation and examples for more information about how write your own plugins. The easiest way to discover and install plugins is via the kubernetes sub-project krew. To install krew, visit https://krew.sigs.k8s.io/docs/user-guide/setup/install/ krew.sigs.k8s.io https://krew.sigs.k8s.io/docs/user-guide/setup/install/ kubectl plugin [flags] Options -h, --help help for plugin --as string Username to impersonate for the operation.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_plugin/
    Registered: Fri May 10 08:11:36 UTC 2024
    - 423K bytes
    - Viewed (0)
  8. Container Runtimes | Kubernetes

    Note: Dockershim has been removed from the Kubernetes project as of release 1.24. Read the Dockershim Removal FAQ for further details. You need to install a container runtime into each node in the cluster so that Pods can run there. This page outlines what is involved and describes related tasks for setting up nodes. Kubernetes 1.30 requires that you use a runtime that conforms with the Container Runtime Interface (CRI).
    kubernetes.io/docs/setup/production-environment/container-runtimes/
    Registered: Fri May 10 07:20:51 UTC 2024
    - 437.7K bytes
    - Viewed (0)
  9. PKI certificates and requirements | Kubernetes

    Kubernetes requires PKI certificates for authentication over TLS. If you install Kubernetes with kubeadm, the certificates that your cluster requires are automatically generated. You can also generate your own certificates -- for example, to keep your private keys more secure by not storing them on the API server. This page explains the certificates that your cluster requires. How certificates are used by your cluster Kubernetes requires PKI for the following operations:
    kubernetes.io/docs/setup/best-practices/certificates/
    Registered: Fri May 10 07:20:55 UTC 2024
    - 430.8K bytes
    - Viewed (0)
  10. Containers | Kubernetes

    Technology for packaging an application along with its runtime dependencies.
    kubernetes.io/docs/concepts/containers/
    Registered: Fri May 10 07:21:51 UTC 2024
    - 416.8K bytes
    - Viewed (0)
Back to top