0% found this document useful (0 votes)
6 views

01 - 02 - Appendix Kubernetes Setup Kubeadm - en

Uploaded by

medom46084
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
6 views

01 - 02 - Appendix Kubernetes Setup Kubeadm - en

Uploaded by

medom46084
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

[MUSIC] In this lecture,

we will look at the Kube admin tool, which can be used to bootstrap
a Kubernetes cluster. The Kube admin tool helps us set
up a multinode cluster following the Kubernetes best practices. As we discussed,
the Kubernetes
cluster consists of various components such as the Kube apiserver,
etcd controllers, etc. And we've seen some of
the requirements around security and certificates to enable communication
between these components. Installing all of these various components
individually on different nodes and modifying the configuration files to make
sure these components point to each other. And setting up certificates to
make it work is a tedious task, the Kube admin tool helps us by
taking care of all of those tasks. Let's go through the steps to set up
a Kubernetes cluster using the Kube admin tool at a high level. First, you must
have multiple systems or
virtual machines provisioned for configuring a cluster. We will see how to set up
your laptop to do just that, that's if you're not familiar with it. Once the
systems are created,
designate one note as master and others as worker nodes. The next step is to
install
a container runtime on the hosts, we will be using docker, so
we must install docker on all the nodes. The next step is to install Kube
admin tool on all the nodes. The kube admin tool helps us bootstrap
the Kubernetes solution by installing and configuring all the required components
in the right nodes in the right order. The next step is to initialize
the master server, during this process, all the required components are installed
and configured on the master server. Once the master is initialized and before
joining the worker nodes to the master, you must ensure that the network
prerequisites are met. A normal network connectivity between
the systems is not sufficient for this. Kubernetes requires a special networking
solution between the master and worker nodes,
which is called as the pod network. The last step is to join the worker
nodes to the master node, we're then all set to launch our
application in the Kubernetes environment. We will now see a demo of setting up
Kubernetes using the Kube admin tool in our local environment.

You might also like