vmware-tanzu-labs / educates-training-platform

A platform for hosting interactive workshop environments in Kubernetes, or on top of a local container runtime.
https://docs.educates.dev
Apache License 2.0
63 stars 14 forks source link

Makefile during developing not deleting platform correctly. #476

Closed GrahamDumpleton closed 6 days ago

GrahamDumpleton commented 6 days ago

Describe the bug

The Makefile for use in development has target:

delete-platform:
    kapp delete -a educates-installer -y
    -kubectl delete ns educates-installer

to delete installed Educates. Because now using labels this should be:

delete-platform:
    kapp delete -a label:installer=educates-installer.app -y
    -kubectl delete ns educates-installer

Additional information

No response