diff --git a/src/_nebari/upgrade.py b/src/_nebari/upgrade.py index c56278a29..ec410b6f9 100644 --- a/src/_nebari/upgrade.py +++ b/src/_nebari/upgrade.py @@ -1121,15 +1121,11 @@ def _version_specific_upgrade( rich.print( "[red bold]Before upgrading, you need to manually delete the prometheus-node-exporter daemonset and update the kube-prometheus-stack CRDs. To do that, please run the following commands.[/red bold]" ) - _ = kwargs.get("attempt_fixes", False) or Prompt.ask( - "Hit enter to show the commands" - ) + _ = Prompt.ask("Hit enter to show the commands") console.print(commands) - _ = kwargs.get("attempt_fixes", False) or Prompt.ask( - "Hit enter to continue" - ) - continue_ = kwargs.get("attempt_fixes", False) or Confirm.ask( + _ = Prompt.ask("Hit enter to continue") + continue_ = Confirm.ask( f"Have you backed up your custom dashboards (if necessary), deleted the {daemonset_name} daemonset and updated the kube-prometheus-stack CRDs?", default=False, )