How do i remove a configuration

Hi,

I’m new to Kubernetes, so probably really easy, but I can’t seem to find the answer. If a apply a configuration using kubectl apply -f config.yaml - is there a way to back this out or delete if it’s incorrect?

Thanks

You can use kubectl delete -f config.yaml … but it’s not a rollback, it deletes resources defined in the file.