Setting Up Kubernetes Locally
Learn how you can set up Kubernetes on your local machine.
We'll cover the following...
Preparing your environment
To run any example locally, you need to have Docker and Kubernetes installed and running. If you already have that setup, feel free to skip this section. If you are not sure, you can run kubectl cluster-info
to double-check:
Press + to interact
kubectl cluster-info# Kubernetes master is running at https://localhost:6443# KubeDNS is running at https://localhost:6443/api...
All the examples you will run should work the same way with a Kubernetes cluster running in a cloud provider like AWS or Google Cloud. So, feel ...