Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: テスト test

Results 21 - 30 of 658 for host:kubernetes.io (0.02 sec)

  1. API Overview | Kubernetes

    This section provides reference information for the Kubernetes API. The REST API is the fundamental fabric of Kubernetes. All operations and communications between components, and external user commands are REST API calls that the API Server handles. Consequently, everything in the Kubernetes platform is treated as an API object and has a corresponding entry in the API. The Kubernetes API reference lists the API for Kubernetes version v1.30. For general background information, read The Kubernetes API.
    kubernetes.io/docs/reference/using-api/
    Registered: Fri May 17 08:05:38 UTC 2024
    - 422K bytes
    - Viewed (0)
  2. Certificates and Certificate Signing Requests |...

    Kubernetes certificate and trust bundle APIs enable automation of X.509 credential provisioning by providing a programmatic interface for clients of the Kubernetes API to request and obtain X.509 certificates from a Certificate Authority (CA). There is also experimental (alpha) support for distributing trust bundles. Certificate signing requests FEATURE STATE: Kubernetes v1.19 [stable] A CertificateSigningRequest (CSR) resource is used to request that a certificate be signed by a denoted signer, after which the request may be approved or denied before finally being signed.
    kubernetes.io/docs/reference/access-authn-authz/certificate-signing-requests/
    Registered: Fri May 17 08:05:48 UTC 2024
    - 478.1K bytes
    - Viewed (0)
  3. Example: Deploying WordPress and MySQL with Per...

    This tutorial shows you how to deploy a WordPress site and a MySQL database using Minikube. Both applications use PersistentVolumes and PersistentVolumeClaims to store data. A PersistentVolume (PV) is a piece of storage in the cluster that has been manually provisioned by an administrator, or dynamically provisioned by Kubernetes using a StorageClass. A PersistentVolumeClaim (PVC) is a request for storage by a user that can be fulfilled by a PV.
    kubernetes.io/docs/tutorials/stateful-application/mysql-wordpress-persistent-volume/
    Registered: Fri May 17 08:05:58 UTC 2024
    - 458.8K bytes
    - Viewed (0)
  4. Using a Service to Expose Your App | Kubernetes

    Learn about a Service in Kubernetes. Understand how labels and selectors relate to a Service. Expose an application outside a Kubernetes cluster.
    kubernetes.io/docs/tutorials/kubernetes-basics/expose/expose-intro/
    Registered: Fri May 17 08:04:31 UTC 2024
    - 427.4K bytes
    - Viewed (0)
  5. kubectl create clusterrolebinding | Kubernetes

    Synopsis Create a cluster role binding for a particular cluster role. kubectl create clusterrolebinding NAME --clusterrole=NAME [--user=username] [--group=groupname] [--serviceaccount=namespace:serviceaccountname] [--dry-run=server|client|none] Examples # Create a cluster role binding for user1, user2, and group1 using the cluster-admin cluster role kubectl create clusterrolebinding cluster-admin --clusterrole=cluster-admin --user=user1 --user=user2 --group=group1 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.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_create/kubectl_create_clusterrolebinding/
    Registered: Fri May 17 08:14:15 UTC 2024
    - 430.1K bytes
    - Viewed (0)
  6. kubectl certificate deny | Kubernetes

    Synopsis Deny a certificate signing request. kubectl certificate deny allows a cluster admin to deny a certificate signing request (CSR). This action tells a certificate signing controller to not to issue a certificate to the requester. kubectl certificate deny (-f FILENAME | NAME) Examples # Deny CSR 'csr-sqgzp' kubectl certificate deny csr-sqgzp 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_certificate/kubectl_certificate_deny/
    Registered: Fri May 17 08:14:38 UTC 2024
    - 427.3K bytes
    - Viewed (0)
  7. kubectl rollout status | Kubernetes

    Synopsis Show the status of the rollout. By default 'rollout status' will watch the status of the latest rollout until it's done. If you don't want to wait for the rollout to finish then you can use --watch=false. Note that if a new rollout starts in-between, then 'rollout status' will continue watching the latest revision. If you want to pin to a specific revision and abort if it is rolled over by another revision, use --revision=N where N is the revision you need to watch for.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_rollout/kubectl_rollout_status/
    Registered: Fri May 17 08:18:27 UTC 2024
    - 427K bytes
    - Viewed (0)
  8. kubectl exec | Kubernetes

    Synopsis Execute a command in a container. kubectl exec (POD | TYPE/NAME) [-c CONTAINER] [flags] -- COMMAND [args...] Examples # Get output from running the 'date' command from pod mypod, using the first container by default kubectl exec mypod -- date # Get output from running the 'date' command in ruby-container from pod mypod kubectl exec mypod -c ruby-container -- date # Switch to raw terminal mode; sends stdin to 'bash' in ruby-container from pod mypod # and sends stdout/stderr from 'bash' back to the client kubectl exec mypod -c ruby-container -i -t -- bash -il # List contents of /usr from the first container of pod mypod and sort by modification time # If the command you want to execute in the pod has any flags in common (e.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_exec/
    Registered: Fri May 17 08:18:34 UTC 2024
    - 426.1K bytes
    - Viewed (0)
  9. kubectl annotate | Kubernetes

    Synopsis Update the annotations on one or more resources. All Kubernetes objects support the ability to store additional data with the object as annotations. Annotations are key/value pairs that can be larger than labels and include arbitrary string values such as structured JSON. Tools and system extensions may use annotations to store their own data. Attempting to set an annotation that already exists will fail unless --overwrite is set. If --resource-version is specified and does not match the current resource version on the server the command will fail.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_annotate/
    Registered: Fri May 17 08:09:43 UTC 2024
    - 428.5K bytes
    - Viewed (0)
  10. kubectl certificate approve | Kubernetes

    Synopsis Approve a certificate signing request. kubectl certificate approve allows a cluster admin to approve a certificate signing request (CSR). This action tells a certificate signing controller to issue a certificate to the requester with the attributes requested in the CSR. SECURITY NOTICE: Depending on the requested attributes, the issued certificate can potentially grant a requester access to cluster resources or to authenticate as a requested identity. Before approving a CSR, ensure you understand what the signed certificate can do.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_certificate/kubectl_certificate_approve/
    Registered: Fri May 17 08:10:20 UTC 2024
    - 427.9K bytes
    - Viewed (0)
Back to top