docker run --name kubia-container -p 8080:8080 -d luksa/kubia
curl localhost:8080
docker exec -it kubia-container bash
kubectl cluster-info
kubectl describe node <node-name>
source <(kubectl completion bash)
echo "source <(kubectl completion bash)" >> ~/.bashrc
kubectl run kubia --image=luksa/kubia --port=8080 --generator=run/v1
kubectl get rc
kubectl get svc
kubectl expose rc kubia --type=NodePort --name kubia-http
kubectl get svc
Checkout on browser : it shall show the output from pod for public ip of all masters and all nodes
kubectl scale rc kubia --replicas=3
kubectl get pods -o wide
kubectl describe pod <podname>