mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
113 lines
3.3 KiB
Go
113 lines
3.3 KiB
Go
//
|
|
// DISCLAIMER
|
|
//
|
|
// Copyright 2016-2022 ArangoDB GmbH, Cologne, Germany
|
|
//
|
|
// 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.
|
|
//
|
|
// Copyright holder is ArangoDB GmbH, Cologne, Germany
|
|
//
|
|
|
|
package reconcile
|
|
|
|
import (
|
|
"context"
|
|
|
|
meta "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
|
|
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1"
|
|
"github.com/arangodb/kube-arangodb/pkg/util/errors"
|
|
"github.com/arangodb/kube-arangodb/pkg/util/globals"
|
|
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil/kerrors"
|
|
)
|
|
|
|
// newRotateMemberAction creates a new Action that implements the given
|
|
// planned RotateMember action.
|
|
func newRotateMemberAction(action api.Action, actionCtx ActionContext) Action {
|
|
a := &actionRotateMember{}
|
|
|
|
a.actionImpl = newActionImplDefRef(action, actionCtx)
|
|
|
|
return a
|
|
}
|
|
|
|
// actionRotateMember implements an RotateMember.
|
|
type actionRotateMember struct {
|
|
// actionImpl implement timeout and member id functions
|
|
actionImpl
|
|
}
|
|
|
|
// Start performs the start of the action.
|
|
// Returns true if the action is completely finished, false in case
|
|
// the start time needs to be recorded and a ready condition needs to be checked.
|
|
func (a *actionRotateMember) Start(ctx context.Context) (bool, error) {
|
|
shutdown, m, ok := getShutdownHelper(a.actionImpl)
|
|
if !ok {
|
|
return true, nil
|
|
}
|
|
|
|
if ready, err := shutdown.Start(ctx); err != nil {
|
|
return false, err
|
|
} else if ready {
|
|
return true, nil
|
|
}
|
|
|
|
// Update status
|
|
m.Phase = api.MemberPhaseRotating
|
|
|
|
if err := a.actionCtx.UpdateMember(ctx, m); err != nil {
|
|
return false, errors.WithStack(err)
|
|
}
|
|
return false, nil
|
|
}
|
|
|
|
// CheckProgress checks the progress of the action.
|
|
// Returns: ready, abort, error.
|
|
func (a *actionRotateMember) CheckProgress(ctx context.Context) (bool, bool, error) {
|
|
// Check that pod is removed
|
|
shutdown, m, ok := getShutdownHelper(a.actionImpl)
|
|
if !ok {
|
|
return true, false, nil
|
|
}
|
|
|
|
if ready, abort, err := shutdown.CheckProgress(ctx); err != nil {
|
|
return false, abort, err
|
|
} else if !ready {
|
|
return false, false, nil
|
|
}
|
|
|
|
cache, ok := a.actionCtx.ACS().ClusterCache(m.ClusterID)
|
|
if !ok {
|
|
a.log.Warn("Cluster is not ready")
|
|
return false, false, nil
|
|
}
|
|
|
|
ctxChild, cancel := globals.GetGlobalTimeouts().Kubernetes().WithTimeout(ctx)
|
|
defer cancel()
|
|
|
|
// Pod is terminated, we can now remove it
|
|
if err := cache.Client().Kubernetes().CoreV1().Pods(cache.Namespace()).Delete(ctxChild, m.Pod.GetName(), meta.DeleteOptions{}); err != nil {
|
|
if !kerrors.IsNotFound(err) {
|
|
a.log.Err(err).Error("Unable to delete pod")
|
|
return false, false, nil
|
|
}
|
|
}
|
|
// Pod is now gone, update the member status
|
|
m.Phase = api.MemberPhaseNone
|
|
m.RecentTerminations = nil // Since we're rotating, we do not care about old terminations.
|
|
m.CleanoutJobID = ""
|
|
if err := a.actionCtx.UpdateMember(ctx, m); err != nil {
|
|
return false, false, errors.WithStack(err)
|
|
}
|
|
return true, false, nil
|
|
}
|