Deploy with Kubectl
kubectl create -f .\redis\redis.yamlBuild image for postgres
cd apps/postgres
docker build . -t postgres:safeDeploy with Kubectl
kubectl create -f .\postgres\postgres.yamlBuild image for app
cd apps/brounder
docker build . -t brounderDeploy with Kubectl
kubectl create -f .\brounder\brounder.yamlIn case of needed migrations
kubectl exec -it <POD_ID> python manage.py migrate