-
Notifications
You must be signed in to change notification settings - Fork 427
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
Fix: reset password namespace & start chart name #2132
Conversation
✅ Deploy Preview for vcluster-docs canceled.
|
💚 All backports created successfully
Questions ?Please refer to the Backport tool documentation and see the Github Action logs for details |
[v0.20] Merge pull request #2132 from FabianKramm/main
parsedVersion, err := semver.Parse(strings.TrimPrefix(cmd.Version, "v")) | ||
if err != nil { | ||
return fmt.Errorf("parse provided version %s: %w", cmd.Version, err) | ||
} else if parsedVersion.LT(semver.MustParse("4.0.0-alpha.0")) && cmd.ChartName == "vcluster-platform" { |
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.
Why is this hard-coded?
Upgraded platforms will still have loft
, but only fresh installs will have vcluster-platform
.
Also, users could choose any namespace name that they want.
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.
This is not about the namespace its the chart that doesn't exist prior to v4.0.0-alpha.0
What issue type does this pull request address? (keep at least one, remove the others)
/kind bugfix