-
When deleting a HelmRelease it makes sense to delete the history by default. But for automated uninstall remediations it may make sense to keep it for debugging/recovery purposes? The main use case I think would be when using the uninstall remediation strategy for upgrades, if it doesn't recover on the subsequent install, maybe it'd be useful to know where you started before the (failed) upgrade/uninstall/install, and even be able to rollback to that manually. If necessary this could be overridden via We'd probably want to rename |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This would require setting |
Beta Was this translation helpful? Give feedback.
This would require setting
--replace
on the subsequent install to avoid "cannot reuse a name that is still in use". We could require the user to setspec.install.replace=true
or just automatically set it in this case as we could use theRemediated
condition to determine that an uninstall was previously performed.