👾 code and notes on cloud microservices, orchestration (e.g., cloud, terraform, kubernetes, docker, data engineering)
Find a file
Mia Steinkirch 15ade9e634 add minicube
2019-09-29 21:53:11 -07:00
kustomize-example add some examples 2019-09-29 21:50:23 -07:00
node-server-example add some examples 2019-09-29 21:50:23 -07:00
README.md add minicube 2019-09-29 21:53:11 -07:00

Resources and Examples to Learn Kubernetes

Minikube

Minikube implements a local Kubernetes cluster on macOS, Linux, and Windows. You can install it following this instructions.

Kubectl

Kubectl is a command line interface for running commands against Kubernetes clusters. You can install it here.

Checking out pods:

$ kubectl get pods --namespace=<ns-name>

Checking deployments:

$ kubectl get deployments --namespace=<ns-name>

Checking services:

$ kubectl get services --namespace=<ns-name>

Get more information about a pod:

$ kubectl describe pod --namespace=<ns-name> <pod name>

Examples in this repo