Hi, I want to migrate from one resource (EBS csi d...
# python
b
Hi, I want to migrate from one resource (EBS csi driver via Helm chart) to another (eks addon for ebs csi driver). However those two conflict with each other so creating the addon before deleting the helm chart does not work. Is there anything I could do to force pulumi to first delete the resources of the helm chart and after that install the eks addon?
l
Given the two deployments conflict with each other, the simplest thing you can do is to remove the old setup first from your Pulumi stack, run
pulumi up
to undeploy it, then add the new setup to your code and run
pulumi up
again.
b
Yes, that would be simplest but I’d like to avoid this due to our git-ops workflow.