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

chore: fix check upgrade release status #492

Merged
merged 2 commits into from
Nov 21, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
14 changes: 1 addition & 13 deletions pkg/cmd/kubeblocks/upgrade.go
Original file line number Diff line number Diff line change
Expand Up @@ -104,24 +104,12 @@ func (o *InstallOptions) getKBRelease() (*release.Release, error) {
}
o.HelmCfg.SetNamespace(ns)
}
// check helm release status
// get helm release
KBRelease, err := helm.GetHelmRelease(o.HelmCfg, types.KubeBlocksChartName)
if err != nil {
return nil, fmt.Errorf("failed to get Helm release: %v in namespace %s", err, o.Namespace)
}

// intercept status of pending, unknown, uninstalling and uninstalled.
var status release.Status
if KBRelease != nil && KBRelease.Info != nil {
status = KBRelease.Info.Status
} else {
return nil, fmt.Errorf("failed to get Helm release status: release or release info is nil")
}
if status.IsPending() {
return nil, fmt.Errorf("helm release status is %s. Please wait until the release status changes to ‘deployed’ before upgrading KubeBlocks", status.String())
} else if status != release.StatusDeployed && status != release.StatusFailed && status != release.StatusSuperseded {
return nil, fmt.Errorf("helm release status is %s. Please fix the release before upgrading KubeBlocks", status.String())
}
return KBRelease, nil
}

Expand Down
76 changes: 1 addition & 75 deletions pkg/cmd/kubeblocks/upgrade_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,10 @@ package kubeblocks
import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
"github.com/spf13/cobra"
"helm.sh/helm/v3/pkg/action"
"helm.sh/helm/v3/pkg/chart"
"helm.sh/helm/v3/pkg/release"

"github.com/spf13/cobra"
appsv1 "k8s.io/api/apps/v1"
"k8s.io/cli-runtime/pkg/genericiooptions"
clientfake "k8s.io/client-go/rest/fake"
Expand Down Expand Up @@ -175,77 +174,4 @@ var _ = Describe("kubeblocks upgrade", func() {
})
})

Context("upgrade from different status", func() {
BeforeEach(func() {
streams, _, _, _ = genericiooptions.NewTestIOStreams()
tf = cmdtesting.NewTestFactory().WithNamespace(namespace)
tf.Client = &clientfake.RESTClient{}
cfg = helm.NewFakeConfig(namespace)
actionCfg, _ = helm.NewActionConfig(cfg)
})

AfterEach(func() {
helm.ResetFakeActionConfig()
tf.Cleanup()
})

mockKubeBlocksDeploy := func() *appsv1.Deployment {
deploy := &appsv1.Deployment{}
deploy.SetLabels(map[string]string{
"app.kubernetes.io/component": "apps",
"app.kubernetes.io/name": types.KubeBlocksChartName,
"app.kubernetes.io/version": "0.3.0",
})
return deploy
}
It("run upgrade", func() {
testCase := []struct {
status release.Status
checkResult bool
}{
{release.StatusDeployed, true},
{release.StatusSuperseded, true},
{release.StatusFailed, true},
{release.StatusUnknown, false},
{release.StatusUninstalled, false},
{release.StatusUninstalling, false},
{release.StatusPendingInstall, false},
{release.StatusPendingUpgrade, false},
{release.StatusPendingRollback, false},
}

for i := range testCase {
actionCfg, _ = helm.NewActionConfig(cfg)
err := actionCfg.Releases.Create(&release.Release{
Name: testing.KubeBlocksChartName,
Namespace: namespace,
Version: 1,
Info: &release.Info{
Status: testCase[i].status,
},
Chart: &chart.Chart{},
})
Expect(err).Should(BeNil())
o := &InstallOptions{
Options: Options{
IOStreams: streams,
HelmCfg: cfg,
Namespace: "default",
Client: testing.FakeClientSet(mockKubeBlocksDeploy()),
Dynamic: testing.FakeDynamicClient(),
},
Version: version.DefaultKubeBlocksVersion,
Check: false,
}
if testCase[i].checkResult {
Expect(o.Upgrade()).Should(Succeed())
} else {
Expect(o.Upgrade()).Should(HaveOccurred())
}
helm.ResetFakeActionConfig()
}

})
})

})
1 change: 1 addition & 0 deletions pkg/util/helm/errors.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import (
// Implementing errors should be more friendly to downstream handlers

var ErrReleaseNotDeployed = fmt.Errorf("release: not in deployed status")
var ErrReleaseNotReadyForUpgrade = fmt.Errorf("release: not in deployed, failed or superseded status")

func ReleaseNotFound(err error) bool {
if err == nil {
Expand Down
26 changes: 25 additions & 1 deletion pkg/util/helm/helm.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,30 @@ func RemoveRepo(r *repo.Entry) error {
return nil
}

// GetInstalledForUpgrade gets helm package release info and check the status.
func (i *InstallOpts) GetInstalledForUpgrade(cfg *action.Configuration) (*release.Release, error) {
res, err := action.NewGet(cfg).Run(i.Name)
if err != nil {
return nil, err
}
if res == nil {
return nil, driver.ErrReleaseNotFound
}
// intercept status of pending, unknown, uninstalling and uninstalled.
var status release.Status
if res.Info != nil {
status = res.Info.Status
} else {
return nil, fmt.Errorf("failed to get Helm release status: release or release info is nil")
}
if status.IsPending() {
return nil, errors.Wrapf(ErrReleaseNotReadyForUpgrade, "helm release status is %s. Please wait until the release status changes to ‘deployed’ before upgrading KubeBlocks", status.String())
} else if status != release.StatusDeployed && status != release.StatusFailed && status != release.StatusSuperseded {
return nil, errors.Wrapf(ErrReleaseNotReadyForUpgrade, "helm release status is %s. Please fix the release before upgrading KubeBlocks,uninstall and install kubeblocks could be a way to fix error", status.String())
}
return res, nil
}

// GetInstalled gets helm package release info if installed.
func (i *InstallOpts) GetInstalled(cfg *action.Configuration) (*release.Release, error) {
res, err := action.NewGet(cfg).Run(i.Name)
Expand Down Expand Up @@ -525,7 +549,7 @@ func (i *InstallOpts) Upgrade(cfg *Config) error {
}

func (i *InstallOpts) tryUpgrade(cfg *action.Configuration) (*release.Release, error) {
installed, err := i.GetInstalled(cfg)
installed, err := i.GetInstalledForUpgrade(cfg)
if err != nil {
return nil, err
}
Expand Down
62 changes: 35 additions & 27 deletions pkg/util/helm/helm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -132,34 +132,42 @@ var _ = Describe("helm util", func() {
Expect(o.Uninstall(cfg)).Should(HaveOccurred()) // release not found
})

It("should fail at fetching charts when release is already deployed", func() {
err := actionCfg.Releases.Create(&release.Release{
Name: o.Name,
Version: 1,
Info: &release.Info{
Status: release.StatusDeployed,
},
Chart: &chart.Chart{},
})
Expect(err).Should(BeNil())
_, err = o.tryUpgrade(actionCfg)
Expect(err).Should(HaveOccurred()) // failed at fetching charts
Expect(o.tryUninstall(actionCfg)).Should(BeNil()) // release exists
})
It("should fail when status is not one of deployed, failed and superseded.", func() {
testCase := []struct {
status release.Status
checkResult bool
}{
// deployed, failed and superseded
{release.StatusDeployed, true},
{release.StatusSuperseded, true},
{release.StatusFailed, true},
// others
{release.StatusUnknown, false},
{release.StatusUninstalled, false},
{release.StatusUninstalling, false},
{release.StatusPendingInstall, false},
{release.StatusPendingUpgrade, false},
{release.StatusPendingRollback, false},
}

It("should fail when chart is already deployed", func() {
err := actionCfg.Releases.Create(&release.Release{
Name: o.Name,
Version: 1,
Info: &release.Info{
Status: release.StatusFailed,
},
Chart: &chart.Chart{},
})
Expect(err).Should(BeNil())
_, err = o.tryUpgrade(actionCfg)
Expect(errors.Is(err, ErrReleaseNotDeployed)).Should(BeTrue())
Expect(o.tryUninstall(actionCfg)).Should(BeNil()) // release exists
for i := range testCase {
err := actionCfg.Releases.Create(&release.Release{
Name: o.Name,
Version: 1,
Info: &release.Info{
Status: testCase[i].status,
},
Chart: &chart.Chart{},
})
Expect(err).Should(BeNil())
_, err = o.tryUpgrade(actionCfg)
if testCase[i].checkResult {
Expect(errors.Is(err, ErrReleaseNotReadyForUpgrade)).Should(BeFalse())
} else {
Expect(errors.Is(err, ErrReleaseNotReadyForUpgrade)).Should(BeTrue())
}
Expect(o.tryUninstall(actionCfg)).Should(BeNil()) // release exists
}
})
})

Expand Down
Loading