mirror of
https://github.com/kubescape/kubescape.git
synced 2026-02-14 09:59:54 +00:00
59 lines
1.9 KiB
Go
59 lines
1.9 KiB
Go
package update
|
|
|
|
//This update command updates to the latest kubescape release.
|
|
//Example:-
|
|
// kubescape update
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/kubescape/kubescape/v3/core/meta"
|
|
"strings"
|
|
|
|
"github.com/kubescape/backend/pkg/versioncheck"
|
|
"github.com/kubescape/go-logger"
|
|
"github.com/kubescape/go-logger/helpers"
|
|
"github.com/kubescape/kubescape/v3/core/cautils"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
const (
|
|
installationLink string = "https://kubescape.io/docs/install-cli/"
|
|
)
|
|
|
|
var updateCmdExamples = fmt.Sprintf(`
|
|
# Update to the latest kubescape release
|
|
%[1]s update
|
|
`, cautils.ExecName())
|
|
|
|
func GetUpdateCmd(ks meta.IKubescape) *cobra.Command {
|
|
updateCmd := &cobra.Command{
|
|
Use: "update",
|
|
Short: "Update to latest release version",
|
|
Long: ``,
|
|
Example: updateCmdExamples,
|
|
RunE: func(_ *cobra.Command, args []string) error {
|
|
v := versioncheck.NewVersionCheckHandler()
|
|
versionCheckRequest := versioncheck.NewVersionCheckRequest("", versioncheck.BuildNumber, "", "", "update", nil)
|
|
if err := v.CheckLatestVersion(ks.Context(), versionCheckRequest); err != nil {
|
|
return err
|
|
}
|
|
|
|
//Checking the user's version of kubescape to the latest release
|
|
if versioncheck.BuildNumber == "" || strings.Contains(versioncheck.BuildNumber, "rc") {
|
|
//your version is unknown
|
|
fmt.Printf("Nothing to update: you are running the development version\n")
|
|
} else if versioncheck.LatestReleaseVersion == "" {
|
|
//Failed to check for updates
|
|
logger.L().Info("Failed to check for updates")
|
|
} else if versioncheck.BuildNumber == versioncheck.LatestReleaseVersion {
|
|
//your version == latest version
|
|
logger.L().Info("Nothing to update: you are running the latest version", helpers.String("Version", versioncheck.BuildNumber))
|
|
} else {
|
|
fmt.Printf("Version %s is available. Please refer to our installation documentation: %s\n", versioncheck.LatestReleaseVersion, installationLink)
|
|
}
|
|
return nil
|
|
},
|
|
}
|
|
return updateCmd
|
|
}
|