diff --git a/src/_nebari/upgrade.py b/src/_nebari/upgrade.py index 41e27c49c..3012a5b7c 100644 --- a/src/_nebari/upgrade.py +++ b/src/_nebari/upgrade.py @@ -1291,7 +1291,13 @@ class Upgrade_2024_11_1(UpgradeStep): @override def _version_specific_upgrade( - self, config, start_version, config_filename: Path, *args, **kwargs + self, + config, + start_version, + config_filename: Path, + *args, + attempt_fixes=False, + **kwargs, ): if config.get("provider", "") == ProviderEnum.azure.value: rich.print("\n ⚠️ Upgrade Warning ⚠️") @@ -1342,12 +1348,11 @@ def _version_specific_upgrade( # Prompt the user for role assignment (if yes, transforms the response into bool) assign_roles = ( - Prompt.ask( + attempt_fixes + or Confirm.ask( "[bold]Would you like Nebari to assign the corresponding role/scopes to all of your current groups automatically?[/bold]", - choices=["y", "N"], - default="N", + default=False, ).lower() - == "y" ) if assign_roles: