Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Results 51 - 60 of 664 for host:kubernetes.io (0.02 sec)

  1. kubectl api-versions | Kubernetes

    Synopsis Print the supported API versions on the server, in the form of "group/version". kubectl api-versions Examples # Print the supported API versions kubectl api-versions Options -h, --help help for api-versions --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.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_api-versions/
    Registered: Fri Sep 20 07:00:42 UTC 2024
    - 429K bytes
    - Viewed (0)
  2. Configure a Pod to Use a Volume for Storage | K...

    This page shows how to configure a Pod to use a Volume for storage. A Container's file system lives only as long as the Container does. So when a Container terminates and restarts, filesystem changes are lost. For more consistent storage that is independent of the Container, you can use a Volume. This is especially important for stateful applications, such as key-value stores (such as Redis) and databases. Before you begin 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/configure-pod-container/configure-volume-storage/
    Registered: Fri Sep 20 06:37:40 UTC 2024
    - 435.7K bytes
    - Viewed (0)
  3. Share Process Namespace between Containers in a...

    This page shows how to configure process namespace sharing for a pod. When process namespace sharing is enabled, processes in a container are visible to all other containers in the same pod. You can use this feature to configure cooperating containers, such as a log handler sidecar container, or to troubleshoot container images that don't include debugging utilities like a shell. Before you begin 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/configure-pod-container/share-process-namespace/
    Registered: Fri Sep 20 06:36:46 UTC 2024
    - 434.1K bytes
    - Viewed (0)
  4. Declarative Management of Kubernetes Objects Us...

    Kubernetes objects can be created, updated, and deleted by storing multiple object configuration files in a directory and using kubectl apply to recursively create and update those objects as needed. This method retains writes made to live objects without merging the changes back into the object configuration files. kubectl diff also gives you a preview of what changes apply will make. 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/declarative-config/
    Registered: Fri Sep 20 06:36:50 UTC 2024
    - 556.6K bytes
    - Viewed (0)
  5. 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.31.0/bin/linux/amd64 BINARY=kubectl FILES=( "$BINARY" "$BINARY.sig" "$BINARY.
    kubernetes.io/docs/tasks/administer-cluster/verify-signed-artifacts/
    Registered: Fri Sep 20 06:37:44 UTC 2024
    - 437.4K bytes
    - Viewed (0)
  6. Configure Liveness, Readiness and Startup Probe...

    This page shows how to configure liveness, readiness and startup probes for containers. For more information about probes, see Liveness, Readiness and Startup Probes 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.
    kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/
    Registered: Fri Sep 20 06:37:49 UTC 2024
    - 484.4K bytes
    - Viewed (0)
  7. 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 Sep 20 06:40:03 UTC 2024
    - 438K bytes
    - Viewed (0)
  8. Inject Data Into Applications | Kubernetes

    Specify configuration and other data for the Pods that run your workload.
    kubernetes.io/docs/tasks/inject-data-application/
    Registered: Fri Sep 20 06:40:26 UTC 2024
    - 421.2K bytes
    - Viewed (0)
  9. Scale Your App | Kubernetes

    Scale Your App Running Multiple Instances of Your App Scale an existing app manually using kubectl. Feedback Was this...
    kubernetes.io/docs/tutorials/kubernetes-basics/scale/
    Registered: Fri Sep 20 06:47:43 UTC 2024
    - 421.2K bytes
    - Viewed (0)
  10. Hello Minikube | Kubernetes

    This tutorial shows you how to run a sample app on Kubernetes using minikube. The tutorial provides a container image that uses NGINX to echo back all the requests. Objectives Deploy a sample application to minikube. Run the app. View application logs. Before you begin This tutorial assumes that you have already set up minikube. See Step 1 in minikube start for installation instructions. Note:Only execute the instructions in Step 1, Installation.
    kubernetes.io/docs/tutorials/hello-minikube/
    Registered: Fri Sep 20 06:47:29 UTC 2024
    - 440.5K bytes
    - Viewed (0)
Back to top