Files
devops-directive-docker-course/12-deploying-containers/kubernetes/Makefile
2023-02-13 13:58:55 -05:00

14 lines
411 B
Makefile

.PHONY: deploy-traefik
deploy-traefik:
-helm repo add traefik https://traefik.github.io/charts
helm upgrade --install -n traefik --create-namespace traefik traefik/traefik
.PHONY: deploy-postgres
deploy-postgres:
-helm repo add bitnami https://charts.bitnami.com/bitnami
helm upgrade --install db bitnami/postgresql --set auth.postgresPassword=foobarbaz
.PHONY: deploy-app
deploy-app:
kubectl apply -f .