Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: [xss] %27 test テスト

Results 521 - 530 of 686 for host:kubernetes.io (0.04 sec)

  1. Namespaces Walkthrough | Kubernetes

    Kubernetes namespaces help different projects, teams, or customers to share a Kubernetes cluster. It does this by providing the following: A scope for Names. A mechanism to attach authorization and policy to a subsection of the cluster. Use of multiple namespaces is optional. This example demonstrates how to use Kubernetes namespaces to subdivide your cluster. 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/administer-cluster/namespaces-walkthrough/
    Registered: Mon Mar 31 06:18:30 UTC 2025
    - 462.4K bytes
    - Viewed (0)
  2. kubectl diff | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/reference/kubectl/generated/kubectl_diff/
    Registered: Wed Jun 04 07:30:15 UTC 2025
    - 455.6K bytes
    - Viewed (0)
  3. 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: Wed Jun 04 07:29:53 UTC 2025
    - 459.2K bytes
    - Viewed (0)
  4. kubectl top pod | Kubernetes

    Synopsis Display resource (CPU/memory) usage of pods. The 'top pod' command allows you to see the resource consumption of pods. Due to the metrics pipeline delay, they may be unavailable for a few minutes since pod creation. kubectl top pod [NAME | -l label] Examples # Show metrics for all pods in the default namespace kubectl top pod # Show metrics for all pods in the given namespace kubectl top pod --namespace=NAMESPACE # Show metrics for a given pod and its containers kubectl top pod POD_NAME --containers # Show metrics for the pods defined by label name=myLabel kubectl top pod -l name=myLabel Options -A, --all-namespaces If present, list the requested object(s) across all namespaces.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_top/kubectl_top_pod/
    Registered: Wed Jun 04 07:30:34 UTC 2025
    - 456.1K bytes
    - Viewed (0)
  5. kubectl create secret tls | Kubernetes

    Synopsis Create a TLS secret from the given public/private key pair. The public/private key pair must exist beforehand. The public key certificate must be .PEM encoded and match the given private key. kubectl create secret tls NAME --cert=path/to/cert/file --key=path/to/key/file [--dry-run=server|client|none] Examples # Create a new TLS secret named tls-secret with the given key pair kubectl create secret tls tls-secret --cert=path/to/tls.crt --key=path/to/tls.key 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_secret_tls/
    Registered: Wed Jun 04 07:31:43 UTC 2025
    - 457.5K bytes
    - Viewed (0)
  6. kubectl set | Kubernetes

    Production-Grade Container Orchestration
    kubernetes.io/docs/reference/kubectl/generated/kubectl_set/
    Registered: Wed Jun 04 07:32:00 UTC 2025
    - 452.9K bytes
    - Viewed (0)
  7. kubectl create quota | Kubernetes

    Synopsis Create a resource quota with the specified name, hard limits, and optional scopes. kubectl create quota NAME [--hard=key1=value1,key2=value2] [--scopes=Scope1,Scope2] [--dry-run=server|client|none] Examples # Create a new resource quota named my-quota kubectl create quota my-quota --hard=cpu=1,memory=1G,pods=2,services=3,replicationcontrollers=2,resourcequotas=1,secrets=5,persistentvolumeclaims=10 # Create a new resource quota named best-effort kubectl create quota best-effort --hard=pods=100 --scopes=BestEffort 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_quota/
    Registered: Wed Jun 04 07:31:36 UTC 2025
    - 457.6K bytes
    - Viewed (0)
  8. Opening a pull request | Kubernetes

    Note:Code developers: If you are documenting a new feature for an upcoming Kubernetes release, see Document a new feature. To contribute new content pages or improve existing content pages, open a pull request (PR). Make sure you follow all the requirements in the Before you begin section. If your change is small, or you're unfamiliar with git, read Changes using GitHub to learn how to edit a page. If your changes are large, read Work from a local fork to learn how to make changes locally on your computer.
    kubernetes.io/docs/contribute/new-content/open-a-pr/
    Registered: Wed Jun 04 07:33:44 UTC 2025
    - 476.7K bytes
    - Viewed (0)
  9. Reviewing pull requests | Kubernetes

    Anyone can review a documentation pull request. Visit the pull requests section in the Kubernetes website repository to see open pull requests. Reviewing documentation pull requests is a great way to introduce yourself to the Kubernetes community. It helps you learn the code base and build trust with other contributors. Before reviewing, it's a good idea to: Read the content guide and style guide so you can leave informed comments.
    kubernetes.io/docs/contribute/review/reviewing-prs/
    Registered: Wed Jun 04 07:33:50 UTC 2025
    - 457.5K bytes
    - Viewed (0)
  10. Kubelet Configuration (v1alpha1) | Kubernetes

    Resource Types CredentialProviderConfig ImagePullIntent ImagePulledRecord CredentialProviderConfig CredentialProviderConfig is the configuration containing information about each exec credential provider. Kubelet reads this configuration from disk and enables each provider as specified by the CredentialProvider type. FieldDescription apiVersionstringkubelet.config.k8s.io/v1alpha1 kindstringCredentialProviderConfig providers [Required] []CredentialProvider providers is a list of credential provider plugins that will be enabled by the kubelet. Multiple providers may match against a single image, in which case credentials from all providers will be returned to the kubelet.
    kubernetes.io/docs/reference/config-api/kubelet-config.v1alpha1/
    Registered: Wed Jun 04 07:36:12 UTC 2025
    - 456.7K bytes
    - Viewed (0)
Back to top