You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
199 B

  1. create:
  2. @echo "==> Creating deployment"
  3. @kubectl create -f app.yaml
  4. destroy:
  5. @echo "==> Destroying deployment"
  6. @kubectl delete -f app.yaml
  7. @kubectl delete pvc -l app=tm
  8. .PHONY: create destroy