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

Ensure that Kubernetes rollback should delete resources of other variants even when prune was not specified #473

Merged
merged 1 commit into from
Jul 17, 2020
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions pkg/app/piped/executor/kubernetes/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ go_library(
"canary.go",
"kubernetes.go",
"primary.go",
"rollback.go",
"sync.go",
"traffic.go",
],
Expand Down
4 changes: 2 additions & 2 deletions pkg/app/piped/executor/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func (e *Executor) Execute(sig executor.StopSignal) model.StageStatus {

switch model.Stage(e.Stage.Name) {
case model.StageK8sSync:
status = e.ensureSync(ctx, e.Deployment.Trigger.Commit.Hash, e.loadManifests)
status = e.ensureSync(ctx)

case model.StageK8sPrimaryRollout:
status = e.ensurePrimaryRollout(ctx)
Expand All @@ -112,7 +112,7 @@ func (e *Executor) Execute(sig executor.StopSignal) model.StageStatus {
status = e.ensureTrafficRouting(ctx)

case model.StageRollback:
status = e.ensureSync(ctx, e.Deployment.RunningCommitHash, e.loadRunningManifests)
status = e.ensureRollback(ctx)

default:
e.LogPersister.AppendErrorf("Unsupported stage %s for kubernetes application", e.Stage.Name)
Expand Down
75 changes: 75 additions & 0 deletions pkg/app/piped/executor/kubernetes/rollback.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
// Copyright 2020 The PipeCD Authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package kubernetes

import (
"context"
"strings"

"github.com/pipe-cd/pipe/pkg/model"
)

func (e *Executor) ensureRollback(ctx context.Context) model.StageStatus {
commitHash := e.Deployment.RunningCommitHash

// Firstly, we reapply all manifests at running commit
// to revert PRIMARY resources and TRAFFIC ROUTING resources.

// Load the manifests at the specified commit.
e.LogPersister.AppendInfof("Loading manifests at running commit %s for handling", commitHash)
manifests, err := e.loadRunningManifests(ctx)
if err != nil {
e.LogPersister.AppendErrorf("Failed while loading running manifests (%v)", err)
return model.StageStatus_STAGE_FAILURE
}
e.LogPersister.AppendSuccessf("Successfully loaded %d manifests", len(manifests))

// Because the loaded maninests are read-only
// we duplicate them to avoid updating the shared manifests data in cache.
manifests = duplicateManifests(manifests, "")

// Add builtin annotations for tracking application live state.
e.addBuiltinAnnontations(manifests, primaryVariant, commitHash)

// Start applying all manifests to add or update running resources.
if err := e.applyManifests(ctx, manifests); err != nil {
return model.StageStatus_STAGE_FAILURE
}

var errs []error

// Next we delete all resources of CANARY variant.
e.LogPersister.AppendError("Start checking to ensure that the CANARY variant should be removed")
if value, ok := e.MetadataStore.Get(addedCanaryResourcesMetadataKey); ok {
resources := strings.Split(value, ",")
if err := e.removeCanaryResources(ctx, resources); err != nil {
errs = append(errs, err)
}
}

// Then delete all resources of BASELINE variant.
e.LogPersister.AppendError("Start checking to ensure that the BASELINE variant should be removed")
if value, ok := e.MetadataStore.Get(addedBaselineResourcesMetadataKey); ok {
resources := strings.Split(value, ",")
if err := e.removeBaselineResources(ctx, resources); err != nil {
errs = append(errs, err)
}
}

if len(errs) > 0 {
return model.StageStatus_STAGE_FAILURE
}
return model.StageStatus_STAGE_SUCCESS
}
8 changes: 5 additions & 3 deletions pkg/app/piped/executor/kubernetes/sync.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,14 @@ import (
"github.com/pipe-cd/pipe/pkg/model"
)

func (e *Executor) ensureSync(ctx context.Context, commitHash string, manifestsLoader func(ctx context.Context) ([]provider.Manifest, error)) model.StageStatus {
func (e *Executor) ensureSync(ctx context.Context) model.StageStatus {
commitHash := e.Deployment.Trigger.Commit.Hash

// Load the manifests at the specified commit.
e.LogPersister.AppendInfof("Loading manifests at commit %s for handling", commitHash)
manifests, err := manifestsLoader(ctx)
manifests, err := e.loadManifests(ctx)
if err != nil {
e.LogPersister.AppendErrorf("Failed while loading running manifests (%v)", err)
e.LogPersister.AppendErrorf("Failed while loading manifests (%v)", err)
return model.StageStatus_STAGE_FAILURE
}
e.LogPersister.AppendSuccessf("Successfully loaded %d manifests", len(manifests))
Expand Down