From the course: Kubernetes: Provisioning for Infrastructure as Code

Unlock this course with a free trial

Join today to access over 25,500 courses taught by industry experts.

Install the container runtime components

Install the container runtime components

- [Instructor] Now we're going to install the prerequisites that we downloaded on each node. Let's start with container D in node A, which is on the top. Here, we'll extract the contents of the container D tarball we downloaded in the last video into the /usr/local directory. This way, Kubernetes can easily find a container D binary when it starts up. Now to do that, I'm going to type pushd/usr/local, and then once I'm in that directory, I'm going to type sudo tar - xvf. Then the path to the container D tarball we downloaded earlier which is going to be in /tmp/containerd.tar.gz. And then I will go back into my home directory by typing popd. So you should see a bunch of files here having been extracted. If you do, then that means that we downloaded the right container D, and that we're in the right place. Let's check that container D was installed properly by running containerd - -version. We should get a…

Contents