Installing Kubernetes Cluster with 3 minions on CentOS 7 to manage pods and services

前端之家收集整理的这篇文章主要介绍了Installing Kubernetes Cluster with 3 minions on CentOS 7 to manage pods and services前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

Kubernetes Components

Kubernetes works in server-client setup,where it has a master providing centralized control for a number of minions. We will be deploying a Kubernetes master with three minions,as illustrated in the diagram further below.

Kubernetes has several components:

  • etcd - A highly available key-value store for shared configuration and service discovery.

  • flannel - An etcd backed network fabric for containers.

  • kube-apiserver - Provides the API for Kubernetes orchestration.

  • kube-controller-manager - Enforces Kubernetes services.

  • kube-scheduler - Schedules containers on hosts.

  • kubelet - Processes a container manifest so the containers are launched according to how they are described.

  • kube-proxy - Provides network proxy services.

Deployment on CentOS 7

We will need 4 servers,running on CentOS 7.1 64 bit with minimal install. All components are available directly from the CentOS extras repository which is enabled by default. The following architecture diagram illustrates where the Kubernetes components should reside:

原文链接:https://www.f2er.com/centos/380437.html

猜你在找的CentOS相关文章