polite-carpenter-13290
09/07/2022, 6:54 PMpulumi down
I have to wait until all k8s resources will be deleted however it’d be enough to just delete compute instance with k3s cluster. Is there any way to implement such logic with pulumi?stocky-restaurant-98004
09/07/2022, 8:24 PMretainOnDelete
on everything except the VM. You could also could set skipAwait
on your K8s resources (I think?).retainOnDelete
conditionally based on the stack (it would be true
in dev, false
otherwise)polite-carpenter-13290
09/07/2022, 9:54 PMretainOnDelete
is what I need.