Search Options

Results per page
Sort
Preferred Languages
Labels
Advance

Popular Words: test テスト

Results 71 - 80 of 631 for content_length:[100000 TO 499999] (0.02 sec)

  1. kubeadm init | Kubernetes

    This command initializes a Kubernetes control-plane node. Run this command in order to set up the Kubernetes control plane Synopsis Run this command in order to set up the Kubernetes control plane The "init" command executes the following phases: preflight Run pre-flight checks certs Certificate generation /ca Generate the self-signed Kubernetes CA to provision identities for other Kubernetes components /apiserver Generate the certificate for serving the Kubernetes API /apiserver-kubelet-client Generate the certificate for the API server to connect to kubelet /front-proxy-ca Generate the self-signed CA to provision identities for front proxy /front-proxy-client Generate the certificate for the front proxy client /etcd-ca Generate the self-signed CA to provision identities for etcd /etcd-server Generate the certificate for serving etcd /etcd-peer Generate the certificate for etcd nodes to communicate with each other /etcd-healthcheck-client Generate the certificate for liveness probes to healthcheck etcd /apiserver-etcd-client Generate the certificate the apiserver uses to access etcd /sa Generate a private key for signing service account tokens along with its public key kubeconfig Generate all kubeconfig files necessary to establish the control plane and the admin kubeconfig file /admin Generate a kubeconfig file for the admin to use and for kubeadm itself /super-admin Generate a kubeconfig file for the super-admin /kubelet Generate a kubeconfig file for the kubelet to use *only* for cluster bootstrapping purposes /controller-manager Generate a kubeconfig file for the controller manager to use /scheduler Generate a kubeconfig file for the scheduler to use etcd Generate static Pod manifest file for local etcd /local Generate the static Pod manifest file for a local, single-node local etcd instance control-plane Generate all static Pod manifest files necessary to establish the control plane /apiserver Generates the kube-apiserver static Pod manifest /controller-manager Generates the kube-controller-manager static Pod manifest /scheduler Generates the kube-scheduler static Pod manifest kubelet-start Write kubelet settings and (re)start the kubelet upload-config Upload the kubeadm and kubelet configuration to a ConfigMap /kubeadm Upload the kubeadm ClusterConfiguration to a ConfigMap /kubelet Upload the kubelet component config to a ConfigMap upload-certs Upload certificates to kubeadm-certs mark-control-plane Mark a node as a control-plane bootstrap-token Generates bootstrap tokens used to join a node to a cluster kubelet-finalize Updates settings relevant to the kubelet after TLS bootstrap /experimental-cert-rotation Enable kubelet client certificate rotation addon Install required addons for passing conformance tests /coredns Install the CoreDNS addon to a Kubernetes cluster /kube-proxy Install the kube-proxy addon to a Kubernetes cluster show-join-command Show the join command for control-plane and worker node kubeadm init [flags] Options --apiserver-advertise-address string The IP address the API Server will advertise it's listening on.
    kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm-init/
    Registered: Fri May 10 08:02:27 UTC 2024
    - 468.5K bytes
    - Viewed (0)
  2. Node Labels Populated By The Kubelet | Kubernetes

    Kubernetes nodes come pre-populated with a standard set of labels. You can also set your own labels on nodes, either through the kubelet configuration or using the Kubernetes API. Preset labels The preset labels that Kubernetes sets on nodes are: kubernetes.io/arch kubernetes.io/hostname kubernetes.io/os node.kubernetes.io/instance-type (if known to the kubelet – Kubernetes may not have this information to set the label) topology.kubernetes.io/region (if known to the kubelet – Kubernetes may not have this information to set the label) topology.
    kubernetes.io/docs/reference/node/node-labels/
    Registered: Fri May 10 08:01:47 UTC 2024
    - 417.7K bytes
    - Viewed (0)
  3. Set Kubelet Parameters Via A Configuration File...

    Before you begin Some steps in this page use the jq tool. If you don't have jq, you can install it via your operating system's software sources, or fetch it from https://jqlang.github.io/jq/. Some steps also involve installing curl, which can be installed via your operating system's software sources. A subset of the kubelet's configuration parameters may be set via an on-disk config file, as a substitute for command-line flags. Providing parameters via a config file is the recommended approach because it simplifies node deployment and configuration management.
    kubernetes.io/docs/tasks/administer-cluster/kubelet-config-file/
    Registered: Fri May 10 07:41:25 UTC 2024
    - 444.6K bytes
    - Viewed (0)
  4. Using CoreDNS for Service Discovery | Kubernetes

    This page describes the CoreDNS upgrade process and how to install CoreDNS instead of kube-dns. 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/administer-cluster/coredns/
    Registered: Fri May 10 07:41:30 UTC 2024
    - 419.7K bytes
    - Viewed (0)
  5. Configure Service Accounts for Pods | Kubernetes

    Kubernetes offers two distinct ways for clients that run within your cluster, or that otherwise have a relationship to your cluster's control plane to authenticate to the API server. A service account provides an identity for processes that run in a Pod, and maps to a ServiceAccount object. When you authenticate to the API server, you identify yourself as a particular user. Kubernetes recognises the concept of a user, however, Kubernetes itself does not have a User API.
    kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
    Registered: Fri May 10 07:43:23 UTC 2024
    - 463.3K bytes
    - Viewed (0)
  6. Access Applications in a Cluster | Kubernetes

    Configure load balancing, port forwarding, or setup firewall or DNS configurations to access applications in a cluster.
    kubernetes.io/docs/tasks/access-application-cluster/
    Registered: Fri May 10 07:54:26 UTC 2024
    - 416.1K bytes
    - Viewed (0)
  7. Expose Your App Publicly | Kubernetes

    Expose Your App Publicly Using a Service to Expose Your App Learn about a Service in Kubernetes. Understand how label...
    kubernetes.io/docs/tutorials/kubernetes-basics/expose/
    Registered: Fri May 10 07:54:35 UTC 2024
    - 414.5K bytes
    - Viewed (0)
  8. Manual Rotation of CA Certificates | Kubernetes

    This page shows how to manually rotate the certificate authority (CA) certificates. 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/tls/manual-rotation-of-ca-certificates/
    Registered: Fri May 10 07:53:16 UTC 2024
    - 428.9K bytes
    - Viewed (0)
  9. kubectl api-resources | Kubernetes

    Synopsis Print the supported API resources on the server. kubectl api-resources [flags] Examples # Print the supported API resources kubectl api-resources # Print the supported API resources with more information kubectl api-resources -o wide # Print the supported API resources sorted by a column kubectl api-resources --sort-by=name # Print the supported namespaced resources kubectl api-resources --namespaced=true # Print the supported non-namespaced resources kubectl api-resources --namespaced=false # Print the supported API resources with a specific APIGroup kubectl api-resources --api-group=rbac.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_api-resources/
    Registered: Fri May 10 08:04:01 UTC 2024
    - 424.7K bytes
    - Viewed (0)
  10. kubectl config get-contexts | Kubernetes

    Synopsis Display one or many contexts from the kubeconfig file. kubectl config get-contexts [(-o|--output=)name)] Examples # List all the contexts in your kubeconfig file kubectl config get-contexts # Describe one context in your kubeconfig file kubectl config get-contexts my-context Options -h, --help help for get-contexts --no-headers When using the default or custom-column output format, don't print headers (default print headers). -o, --output string Output format. One of: (name). --as string Username to impersonate for the operation.
    kubernetes.io/docs/reference/kubectl/generated/kubectl_config/kubectl_config_get-contexts/
    Registered: Fri May 10 08:04:26 UTC 2024
    - 424.9K bytes
    - Viewed (0)
Back to top