Set up a Django application and deploy on Kubernetes environment using Minikube.
- Install Docker
- Minikube
- Django 1.9.7
```
$ cd django-minikube/devops
$ docker build -t nhatthai/python3.6_django .
```
```
$ cd backend
$ docker build -t nhatthai/mysite_django .
```
```
docker push nhatthai/mysite_django:latest
```
```
$ minikube start
```
```
$ cd devops/manifest
$ kubectl create -f deployment.yml
```
```
$ cd devops/manifest
$ kubectl create -f service.yml
```
$ cd devops/manifest
$ kubectl create -f ingress.yml
kubectl describe ing
$ minikube addons enable ingress
$ minikube ip
192.168.99.100
192.168.99.100 mysite.com
http://mysite.com/admin/