Files
devops-directive-docker-course/12-deploying-containers/kubernetes/Makefile
2023-02-10 09:54:56 -05:00

9 lines
225 B
Makefile

.PHONY: deploy-postgres
deploy-postgres:
helm repo add bitnami https://charts.bitnami.com/bitnami
helm install db bitnami/postgresql --set auth.postgresPassword=foobarbaz
.PHONY: deploy-app
deploy-app:
kubectl apply -f .