Wednesday, February 5, 2020

Kubernetes. What and How?

Introduction

In this part of the workshop you are going to get Minikube running on your local computer.
We are using Minikube because that is the easiest way to demonstrate how kubernetes works and what we can do with it. Minikube is a tool that runs a single-node Kubernetes cluster in a virtual machine on your personal computer.
To be able to run minikube you also need to install Docker and kubectl.

Tasks

1. Install Minikube

Read the instructions on how to install Minikube here, on macOS the short version is:
$ brew install minikube
$ minikube start

Verify Minikube installation

You can verify that Minikube is up and running on your computer by running the following command:
$ minikube status

2. Install kubectl

In order to manipulate the Kubernetes cluster you need to install the official CLI client called kubectl.
Details about the installation can be found here
$ brew install kubectl
$ kubectl version --client

3. Install Docker

Docker can be downloaded here Verify the installation running:
$ docker ps

4. Verify all up and running

Verify that all the following commands returns correctly
$ kubectl version
$ docker version
$ minikube version

Technical Writing in field of research

Research reports A research report is a collection of contextual data, gathered through organized research, that provides new insights into ...