A simple Happy Panda html page.
You need the following software:
- Git
- Kubectl
- Kubernetes on Docker
- Make
You might want to run a container on docker with a volume dynamically mounted due to troubleshooting purposes, to do so you can run the following docker command:
docker run --name <container_name> -v $PWD/src:/usr/share/nginx/html:ro -d -p 8080:80 nginx
Now you can modify the code within src folder and check it out instantly in your browser.
docker stop <container_name>
docker rm <container_name>
We need to execute the following commands within this repo directory.
Everything can be checked on this URL:
http://localhost:32500
make demo-1
make demo-2
make demo-3
make demo-4
make demo-5
make demo-6
make demo-7
make demo-8
make demo-cleanup
Originally created by Andres Guisado
This project is licensed under the MIT License - see the LICENSE file for details