Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: ใƒ†ใ‚นใƒˆ test

Results 81 - 90 of 660 for host:kubernetes.io (0.02 sec)

  1. Configure the Aggregation Layer | Kubernetes

    Configuring the aggregation layer allows the Kubernetes apiserver to be extended with additional APIs, which are not part of the core Kubernetes APIs. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster. It is recommended to run this tutorial on a cluster with at least two nodes that are not acting as control plane hosts. If you do not already have a cluster, you can create one by using minikube or you can use one of these Kubernetes playgrounds:
    kubernetes.io/docs/tasks/extend-kubernetes/configure-aggregation-layer/
    Registered: Fri May 17 07:57:14 UTC 2024
    - 438.4K bytes
    - Viewed (0)
  2. Create an External Load Balancer | Kubernetes

    This page shows how to create an external load balancer. When creating a Service, you have the option of automatically creating a cloud load balancer. This provides an externally-accessible IP address that sends traffic to the correct port on your cluster nodes, provided your cluster runs in a supported environment and is configured with the correct cloud load balancer provider package. You can also use an Ingress in place of Service.
    kubernetes.io/docs/tasks/access-application-cluster/create-external-load-balancer/
    Registered: Fri May 17 07:57:52 UTC 2024
    - 431.9K bytes
    - Viewed (0)
  3. Manage Cluster Daemons | Kubernetes

    Perform common tasks for managing a DaemonSet, such as performing a rolling update.
    kubernetes.io/docs/tasks/manage-daemon/
    Registered: Fri May 17 07:56:25 UTC 2024
    - 414.2K bytes
    - Viewed (0)
  4. Network Policies | Kubernetes

    If you want to control traffic flow at the IP address or port level (OSI layer 3 or 4), NetworkPolicies allow you to specify rules for traffic flow within your cluster, and also between Pods and the outside world. Your cluster must use a network plugin that supports NetworkPolicy enforcement.
    kubernetes.io/docs/concepts/services-networking/network-policies/
    Registered: Fri May 17 07:33:46 UTC 2024
    - 475.3K bytes
    - Viewed (0)
  5. Pod Security Standards | Kubernetes

    A detailed look at the different policy levels defined in the Pod Security Standards.
    kubernetes.io/docs/concepts/security/pod-security-standards/
    Registered: Fri May 17 07:33:55 UTC 2024
    - 437.8K bytes
    - Viewed (0)
  6. Dynamic Volume Provisioning | Kubernetes

    Dynamic volume provisioning allows storage volumes to be created on-demand. Without dynamic provisioning, cluster administrators have to manually make calls to their cloud or storage provider to create new storage volumes, and then create PersistentVolume objects to represent them in Kubernetes. The dynamic provisioning feature eliminates the need for cluster administrators to pre-provision storage. Instead, it automatically provisions storage when users create PersistentVolumeClaim objects. Background The implementation of dynamic volume provisioning is based on the API object StorageClass from the API group storage.
    kubernetes.io/docs/concepts/storage/dynamic-provisioning/
    Registered: Fri May 17 07:34:56 UTC 2024
    - 427.6K bytes
    - Viewed (0)
  7. Configure Liveness, Readiness and Startup Probe...

    This page shows how to configure liveness, readiness and startup probes for containers. The kubelet uses liveness probes to know when to restart a container. For example, liveness probes could catch a deadlock, where an application is running, but unable to make progress. Restarting a container in such a state can help to make the application more available despite bugs. A common pattern for liveness probes is to use the same low-cost HTTP endpoint as for readiness probes, but with a higher failureThreshold.
    kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
    Registered: Fri May 17 07:47:29 UTC 2024
    - 478.3K bytes
    - Viewed (0)
  8. Auditing | Kubernetes

    Kubernetes auditing provides a security-relevant, chronological set of records documenting the sequence of actions in a cluster. The cluster audits the activities generated by users, by applications that use the Kubernetes API, and by the control plane itself. Auditing allows cluster administrators to answer the following questions: what happened? when did it happen? who initiated it? on what did it happen? where was it observed? from where was it initiated?
    kubernetes.io/docs/tasks/debug/debug-cluster/audit/
    Registered: Fri May 17 07:47:41 UTC 2024
    - 449.1K bytes
    - Viewed (0)
  9. Verify Signed Kubernetes Artifacts | Kubernetes

    FEATURE STATE: Kubernetes v1.26 [beta] Before you begin You will need to have the following tools installed: cosign (install guide) curl (often provided by your operating system) jq (download jq) Verifying binary signatures The Kubernetes release process signs all binary artifacts (tarballs, SPDX files, standalone binaries) by using cosign's keyless signing. To verify a particular binary, retrieve it together with its signature and certificate: URL=https://dl.k8s.io/release/v1.30.0/bin/linux/amd64 BINARY=kubectl FILES=( "$BINARY" "$BINARY.sig" "$BINARY.
    kubernetes.io/docs/tasks/administer-cluster/verify-signed-artifacts/
    Registered: Fri May 17 07:46:32 UTC 2024
    - 431.6K bytes
    - Viewed (0)
  10. Parallel Processing using Expansions | Kubernetes

    This task demonstrates running multiple Jobs based on a common template. You can use this approach to process batches of work in parallel. For this example there are only three items: apple, banana, and cherry. The sample Jobs process each item by printing a string then pausing. See using Jobs in real workloads to learn about how this pattern fits more realistic use cases. Before you begin You should be familiar with the basic, non-parallel, use of Job.
    kubernetes.io/docs/tasks/job/parallel-processing-expansion/
    Registered: Fri May 17 07:56:15 UTC 2024
    - 437K bytes
    - Viewed (0)
Back to top