Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update upgrade command #2198

Merged
merged 3 commits into from
Jan 10, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions src/_nebari/upgrade.py
Original file line number Diff line number Diff line change
Expand Up @@ -685,6 +685,26 @@ def _version_specific_upgrade(
return config


class Upgrade_2024_1_1(UpgradeStep):
version = "2024.1.1"

def _version_specific_upgrade(
self, config, start_version, config_filename: Path, *args, **kwargs
):
rich.print("\n ⚠️ Warning ⚠️")
rich.print(
"-> Please run the [green]rm -rf stages[/green] so that we can regenerate an updated set of Terraform scripts for your deployment."
)
rich.print("\n ⚠️ Deprecation Warning ⚠️")
rich.print(
"-> jupyterlab-videochat, retrolab, jupyter-tensorboard and jupyter-nvdashboard",
dcmcand marked this conversation as resolved.
Show resolved Hide resolved
f"are no longer supported in Nebari version [green]{self.version}[/green] and will be uninstalled.",
)
rich.print()

return config


__rounded_version__ = str(rounded_ver_parse(__version__))

# Manually-added upgrade steps must go above this line
Expand Down
Loading