I frequently run into issues where Pulumi does not...
# kubernetes
c
I frequently run into issues where Pulumi does not delete a resource before attempting to (re)create it, resulting in a failed
up
. For example, I move an
ingress
to a different namespace but get an error because it has the same host as the "existing" one. How can I handle these to ensure there is no conflict when I run
up
?
r
You could try to use the deleteBeforeReplace option
c
this property isn't available for a lot of resources, including the k8s ones I've tried