devops repository for todo-app
- create
secrets.yamlwith the following:
db:
root_password: <password>
password: <password>
jwt_secret: <secret>
- Then run
helm install backend-api . -f values.yaml -f secrets.yamlinside the backend-chart directory to deploy the kubernetes app - Run
helm uninstall backend-api .inside the backend-chart directory to undeploy the app
- replace the empty "" with the right values
Use
kubectl port-forward deployment/backend-server 8000:8000andlocalhost:8000to verify that the cluster is working
- WIP. Eventually, you should be able to use deploy.sh to deploy the app.