Unapply a config that was applied with `apply -f`

9/13/2019

I have applied a config file like this kubectl apply -f deploy/mysql.yml

How can I unapply this specific config?

-- Noitidart
kubernetes

1 Answer

9/13/2019

Use kubectl delete command

kubectl delete -f deploy/mysql.yml
-- Bimal
Source: StackOverflow