From the course: Data Resilience with Spring and RabbitMQ Event Streaming

Unlock the full course today

Join today to access over 24,700 courses taught by industry experts.

Install Kubernetes

Install Kubernetes

- [Instructor] In this video, I'll install Kubernetes locally. I'll use minikube. minikube is a lightweight Kubernetes runtime tool. It works with Docker to run Kubernetes containers locally for development and testing. I will install it locally, and you can find detailed installation instructions on minikube's website. I will need to install the Kubernetes command line interface called kubectl. I will use it to install, access, and manage Kubernetes objects, like pods and containers. Head over to kubernetes.io to see the detailed installation instructions. I've already copied the curl command to download the executable. I'll head over to a terminal and paste in the curl command, and if I do a list directory, I'll see that the kubectl command is here, that I can add it to my path. Now I have both minikube and kubectl running, and I also have Docker running in the background. So I can start minikube by entering a minikube start command. Now minikube is up and running. I can get those…

Contents