Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test テスト

Results 31 - 40 of 658 for host:kubernetes.io (0.02 sec)

  1. Kubernetes Issues and Security | Kubernetes

    Kubernetes Issues and Security Kubernetes Issue Tracker Kubernetes Security and Disclosure Information Official CVE F...
    kubernetes.io/docs/reference/issues-security/
    Registered: Fri Jun 07 06:14:38 UTC 2024
    - 414.1K bytes
    - Viewed (0)
  2. Node Reference Information | Kubernetes

    This section contains the following reference topics about nodes: the kubelet's checkpoint API a list of Articles on dockershim Removal and on Using CRI-compatible Runtimes Kubelet Device Manager API Versions Node Labels Populated By The Kubelet Node .status information You can also read node reference details from elsewhere in the Kubernetes documentation, including: Node Metrics Data. CRI Pod & Container Metrics.
    kubernetes.io/docs/reference/node/
    Registered: Fri Jun 07 06:14:42 UTC 2024
    - 414.7K bytes
    - Viewed (0)
  3. Debug a StatefulSet | Kubernetes

    This task shows you how to debug a StatefulSet. Before you begin You need to have a Kubernetes cluster, and the kubectl command-line tool must be configured to communicate with your cluster. You should have a StatefulSet running that you want to investigate. Debugging a StatefulSet In order to list all the pods which belong to a StatefulSet, which have a label app.kubernetes.io/name=MyApp set on them, you can use the following:
    kubernetes.io/docs/tasks/debug/debug-application/debug-statefulset/
    Registered: Fri Jun 07 05:56:41 UTC 2024
    - 417.7K bytes
    - Viewed (0)
  4. Kubernetes API Concepts | Kubernetes

    The Kubernetes API is a resource-based (RESTful) programmatic interface provided via HTTP. It supports retrieving, creating, updating, and deleting primary resources via the standard HTTP verbs (POST, PUT, PATCH, DELETE, GET). For some resources, the API includes additional subresources that allow fine grained authorization (such as separate views for Pod details and log retrievals), and can accept and serve those resources in different representations for convenience or efficiency. Kubernetes supports efficient change notifications on resources via watches.
    kubernetes.io/docs/reference/using-api/api-concepts/
    Registered: Fri Jun 07 06:11:59 UTC 2024
    - 495.7K bytes
    - Viewed (0)
  5. Use an HTTP Proxy to Access the Kubernetes API ...

    This page shows how to use an HTTP proxy to access the Kubernetes API. 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/http-proxy-access-api/
    Registered: Fri Jun 07 06:11:34 UTC 2024
    - 419.7K bytes
    - Viewed (0)
  6. Viewing Pods and Nodes | Kubernetes

    Learn how to troubleshoot Kubernetes applications using kubectl get, kubectl describe, kubectl logs and kubectl exec.
    kubernetes.io/docs/tutorials/kubernetes-basics/explore/explore-intro/
    Registered: Fri Jun 07 06:11:47 UTC 2024
    - 425.9K bytes
    - Viewed (0)
  7. kubectl diff | Kubernetes

    Synopsis Diff configurations specified by file name or stdin between the current online configuration, and the configuration as it would be if applied. The output is always YAML. KUBECTL_EXTERNAL_DIFF environment variable can be used to select your own diff command. Users can use external commands with params too, example: KUBECTL_EXTERNAL_DIFF="colordiff -N -u" By default, the "diff" command available in your path will be run with the "-u" (unified diff) and "-N" (treat absent files as empty) options.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_diff/
    Registered: Fri Jun 07 06:21:47 UTC 2024
    - 426.3K bytes
    - Viewed (0)
  8. kubectl drain | Kubernetes

    Synopsis Drain node in preparation for maintenance. The given node will be marked unschedulable to prevent new pods from arriving. 'drain' evicts the pods if the API server supports https://kubernetes.io/docs/concepts/workloads/pods/disruptions/ eviction https://kubernetes.io/docs/concepts/workloads/pods/disruptions/ . Otherwise, it will use normal DELETE to delete the pods. The 'drain' evicts or deletes all pods except mirror pods (which cannot be deleted through the API server). If there are daemon set-managed pods, drain will not proceed without --ignore-daemonsets, and regardless it will not delete any daemon set-managed pods, because those pods would be immediately replaced by the daemon set controller, which ignores unschedulable markings.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_drain/
    Registered: Fri Jun 07 06:21:52 UTC 2024
    - 428.2K bytes
    - Viewed (0)
  9. kubectl create secret docker-registry | Kubernetes

    Synopsis Create a new secret for use with Docker registries. Dockercfg secrets are used to authenticate against Docker registries. When using the Docker command line to push images, you can authenticate to a given registry by running: '$ docker login DOCKER_REGISTRY_SERVER --username=DOCKER_USER --password=DOCKER_PASSWORD --email=DOCKER_EMAIL'. That produces a ~/.dockercfg file that is used by subsequent 'docker push' and 'docker pull' commands to authenticate to the registry. The email address is optional.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_secret_docker-registry/
    Registered: Fri Jun 07 06:22:57 UTC 2024
    - 430.8K bytes
    - Viewed (0)
  10. kubectl create job | Kubernetes

    Synopsis Create a job with the specified name. kubectl create job NAME --image=image [--from=cronjob/name] -- [COMMAND] [args...] Examples # Create a job kubectl create job my-job --image=busybox # Create a job with a command kubectl create job my-job --image=busybox -- date # Create a job from a cron job named "a-cronjob" kubectl create job test-job --from=cronjob/a-cronjob 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_job/
    Registered: Fri Jun 07 06:23:17 UTC 2024
    - 427.9K bytes
    - Viewed (0)
Back to top