Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

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

Results 81 - 90 of 665 for timestamp:[now/d-1M TO *] (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.31. For general background information, read The Kubernetes API.
    kubernetes.io/docs/reference/using-api/
    Registered: Fri Sep 20 06:46:16 UTC 2024
    - 429.3K bytes
    - Viewed (0)
  2. Learn Kubernetes Basics | Kubernetes

    <!DOCTYPE html> Kubernetes Basics This tutorial provides a walkthrough of the basics of the Kubernetes cluster orchestration system. Each module contains some background information on major Kubernetes features and concepts, and a tutorial for you to follow along. Using the tutorials, you can learn to: Deploy a containerized application on a cluster. Scale the deployment. Update the containerized application with a new software version. Debug the containerized application. What can Kubernetes do for you?
    kubernetes.io/docs/tutorials/kubernetes-basics/
    Registered: Fri Sep 20 06:46:32 UTC 2024
    - 427.4K bytes
    - Viewed (0)
  3. kubectl config set-cluster | Kubernetes

    Synopsis Set a cluster entry in kubeconfig. Specifying a name that already exists will merge new fields on top of existing values for those fields. kubectl config set-cluster NAME [--server=server] [--certificate-authority=path/to/certificate/authority] [--insecure-skip-tls-verify=true] [--tls-server-name=example.com] Examples # Set only the server field on the e2e cluster entry without touching other values kubectl config set-cluster e2e --server=https://1.2.3.4 # Embed certificate authority data for the e2e cluster entry kubectl config set-cluster e2e --embed-certs --certificate-authority=~/.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_set-cluster/
    Registered: Fri Sep 20 06:57:24 UTC 2024
    - 431.4K bytes
    - Viewed (0)
  4. Node Status | Kubernetes

    The status of a node in Kubernetes is a critical aspect of managing a Kubernetes cluster. In this article, we'll cover the basics of monitoring and maintaining node status to ensure a healthy and stable cluster. Node status fields A Node's status contains the following information: Addresses Conditions Capacity and Allocatable Info You can use kubectl to view a Node's status and other details: kubectl describe node <insert-node-name-here> Each section of the output is described below.
    kubernetes.io/docs/reference/node/node-status/
    Registered: Fri Sep 20 06:56:27 UTC 2024
    - 430.7K bytes
    - Viewed (0)
  5. kubectl auth | Kubernetes

    Synopsis Inspect authorization. kubectl auth [flags] Options -h, --help help for auth --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. --as-uid string UID to impersonate for the operation. --cache-dir string     Default: "$HOME/.kube/cache" Default cache directory --certificate-authority string Path to a cert file for the certificate authority
    kubernetes.io/docs/reference/kubectl/generated/kubectl_auth/
    Registered: Fri Sep 20 06:57:50 UTC 2024
    - 429.5K bytes
    - Viewed (0)
  6. 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 Sep 20 06:57:55 UTC 2024
    - 432.5K bytes
    - Viewed (0)
  7. 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 Sep 20 06:58:47 UTC 2024
    - 431.9K bytes
    - Viewed (0)
  8. kubeadm reset phase | Kubernetes

    kubeadm reset phase enables you to invoke atomic steps of the node reset process. Hence, you can let kubeadm do some of the work and you can fill in the gaps if you wish to apply customization. kubeadm reset phase is consistent with the kubeadm reset workflow, and behind the scene both use the same code. kubeadm reset phase phase Use this command to invoke single phase of the reset workflow
    kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-reset-phase/
    Registered: Fri Sep 20 06:56:14 UTC 2024
    - 430.1K bytes
    - Viewed (0)
  9. 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 Sep 20 07:05:56 UTC 2024
    - 432.9K bytes
    - Viewed (0)
  10. kubectl rollout history | Kubernetes

    Synopsis View previous rollout revisions and configurations. kubectl rollout history (TYPE NAME | TYPE/NAME) [flags] Examples # View the rollout history of a deployment kubectl rollout history deployment/abc # View the details of daemonset revision 3 kubectl rollout history daemonset/abc --revision=3 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_rollout/kubectl_rollout_history/
    Registered: Fri Sep 20 07:05:21 UTC 2024
    - 432.1K bytes
    - Viewed (0)
Back to top