A dockerized flask application which shows ip addess of container in which app is running. Useful in testing or demoing docker applications.
docker run -it -p 8000:8000 manikantanr/hostname_ip
kubectl run hostname-ip-web --image=manikantanr/hostname_ip --port 8000
kubectl expose deployment hostname-ip-web --type=LoadBalancer --port 80 --target-port 8000
kubectl logs deployment/hostname-ip-web -f
kubectl scale deployment hostname-ip-web --replicas=3