-
Notifications
You must be signed in to change notification settings - Fork 542
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
feat: hgctl upgrade support from-helm flag #824
Draft
sjcsjc123
wants to merge
7
commits into
alibaba:main
Choose a base branch
from
sjcsjc123:hgctl-upgrade-form-helm
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
8e6054b
feat: hgctl upgrade support from-helm flag
sjcsjc123 34d6263
Merge branch 'main' into hgctl-upgrade-form-helm
sjcsjc123 0b529b3
Merge branch 'main' into hgctl-upgrade-form-helm
sjcsjc123 eaf8e37
save to remote
sjcsjc123 87b2f70
save to remote
sjcsjc123 bcb9d4a
opt imports
sjcsjc123 e1cc05b
opt imports
sjcsjc123 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -31,27 +31,31 @@ import ( | |
|
||
type upgradeArgs struct { | ||
*InstallArgs | ||
// FromHelm if set true, it will convert helm chart to higress profile | ||
FromHelm bool | ||
} | ||
|
||
func addUpgradeFlags(cmd *cobra.Command, args *upgradeArgs) { | ||
cmd.PersistentFlags().StringSliceVarP(&args.InFilenames, "filename", "f", nil, filenameFlagHelpStr) | ||
cmd.PersistentFlags().StringArrayVarP(&args.Set, "set", "s", nil, setFlagHelpStr) | ||
cmd.PersistentFlags().StringVarP(&args.ManifestsPath, "manifests", "d", "", manifestsFlagHelpStr) | ||
cmd.PersistentFlags().BoolVar(&args.Devel, "devel", false, "use development versions (alpha, beta, and release candidate releases), If version is set, this is ignored") | ||
cmd.PersistentFlags().BoolVar(&args.FromHelm, "from-helm", false, "upgrade by read helm release") | ||
} | ||
|
||
// newUpgradeCmd upgrades Istio control plane in-place with eligibility checks. | ||
func newUpgradeCmd() *cobra.Command { | ||
upgradeArgs := &upgradeArgs{ | ||
InstallArgs: &InstallArgs{}, | ||
FromHelm: false, | ||
} | ||
upgradeCmd := &cobra.Command{ | ||
Use: "upgrade", | ||
Short: "Upgrade Higress in-place", | ||
Long: "The upgrade command is an alias for the install command" + | ||
" that performs additional upgrade-related checks.", | ||
RunE: func(cmd *cobra.Command, args []string) (e error) { | ||
return upgrade(cmd.OutOrStdout(), upgradeArgs.InstallArgs) | ||
return upgrade(cmd.OutOrStdout(), upgradeArgs) | ||
}, | ||
} | ||
addUpgradeFlags(upgradeCmd, upgradeArgs) | ||
|
@@ -61,29 +65,46 @@ func newUpgradeCmd() *cobra.Command { | |
} | ||
|
||
// upgrade upgrade higress resources from the cluster. | ||
func upgrade(writer io.Writer, iArgs *InstallArgs) error { | ||
func upgrade(writer io.Writer, iArgs *upgradeArgs) error { | ||
setFlags := applyFlagAliases(iArgs.Set, iArgs.ManifestsPath) | ||
fmt.Fprintf(writer, "⌛️ Checking higress installed profiles...\n") | ||
profileContexts, _ := getAllProfiles() | ||
if len(profileContexts) == 0 { | ||
fmt.Fprintf(writer, "\nHigress hasn't been installed yet!\n") | ||
return nil | ||
} | ||
|
||
valuesOverlay, err := helm.GetValuesOverylayFromFiles(iArgs.InFilenames) | ||
if err != nil { | ||
return err | ||
} | ||
var profile *helm.Profile | ||
|
||
profileContext := promptProfileContexts(writer, profileContexts) | ||
if !iArgs.FromHelm { | ||
fmt.Fprintf(writer, "⌛️ Checking higress installed profiles...\n") | ||
profileContexts, _ := getAllProfiles() | ||
if len(profileContexts) == 0 { | ||
fmt.Fprintf(writer, "\nHigress hasn't been installed yet!\n") | ||
return nil | ||
} | ||
|
||
_, profile, err := helm.GenProfileFromProfileContent(util.ToYAML(profileContext.Profile), valuesOverlay, setFlags) | ||
if err != nil { | ||
return err | ||
valuesOverlay, err := helm.GetValuesOverylayFromFiles(iArgs.InFilenames) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
profileContext := promptProfileContexts(writer, profileContexts) | ||
|
||
_, profile, err = helm.GenProfileFromProfileContent(util.ToYAML(profileContext.Profile), valuesOverlay, setFlags) | ||
if err != nil { | ||
return err | ||
} | ||
|
||
fmt.Fprintf(writer, "\n🧐 Validating Profile: \"%s\" \n", profileContext.PathOrName) | ||
} else { | ||
helmAgent := installer.NewHelmAgent(nil, writer, false) | ||
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. 这里 profile 为 nil, 会 报 nil pointer |
||
installed, _, err := helmAgent.GetHigressInformance() | ||
if err != nil { | ||
return err | ||
} | ||
if !installed { | ||
fmt.Fprintf(writer, "\nHigress hasn't been installed by helm yet!\n") | ||
return nil | ||
} | ||
// TODO: convert helm values to higress profile | ||
} | ||
|
||
fmt.Fprintf(writer, "\n🧐 Validating Profile: \"%s\" \n", profileContext.PathOrName) | ||
err = profile.Validate() | ||
err := profile.Validate() | ||
if err != nil { | ||
return err | ||
} | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
升级时候 如果 --from-helm = true, 可以读取helm 安装所有 release 列表,让用户选择升级那个 release, 如果用户选择某个RELEASE 后,要检查这个 RELEASE 是否已经升级( 是否已经有 install profile),如果没有让用户升级。