-
Notifications
You must be signed in to change notification settings - Fork 97
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
Prepare 2024.3.1rc1 release #2275
Changes from 2 commits
529adc1
a1e5fd1
3bd47cb
228810e
2abed56
02e63d5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -705,6 +705,20 @@ def _version_specific_upgrade( | |
return config | ||
|
||
|
||
class Upgrade_2024_2_1(UpgradeStep): | ||
version = "2024.2.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." | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This can cause trouble for people using local tf state. See #2271. I think just runnning There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. At a minimum I think we should change this to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. For some context, this |
||
) | ||
|
||
return config | ||
|
||
|
||
__rounded_version__ = str(rounded_ver_parse(__version__)) | ||
|
||
# Manually-added upgrade steps must go above this line | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@dcmcand In #2227 you did not have any changes for
DEFAULT_NEBARI_IMAGE_TAG
but I am assuming we do want to point to the latest RC in https://github.com/nebari-dev/nebari-docker-images, right? Otherwise we would be testing against older versions of the images.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I specified them in the nebari-config.yaml rather than here. Bu this should be fine as long as we change it back to CURRENT_RELEASE before the release