1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00
kube-arangodb/pkg/deployment/cleanup.go

94 lines
3.3 KiB
Go
Raw Normal View History

//
// DISCLAIMER
//
// Copyright 2016-2023 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 deployment
import (
2021-03-23 15:47:28 +00:00
"context"
2021-04-26 08:30:06 +00:00
core "k8s.io/api/core/v1"
meta "k8s.io/apimachinery/pkg/apis/meta/v1"
"github.com/arangodb/kube-arangodb/pkg/util"
2022-02-22 15:55:33 +00:00
"github.com/arangodb/kube-arangodb/pkg/util/constants"
"github.com/arangodb/kube-arangodb/pkg/util/globals"
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil"
inspectorInterface "github.com/arangodb/kube-arangodb/pkg/util/k8sutil/inspector"
pvcv1 "github.com/arangodb/kube-arangodb/pkg/util/k8sutil/inspector/persistentvolumeclaim/v1"
podv1 "github.com/arangodb/kube-arangodb/pkg/util/k8sutil/inspector/pod/v1"
"github.com/arangodb/kube-arangodb/pkg/util/k8sutil/kerrors"
)
// removePodFinalizers removes all finalizers from all pods owned by us.
2022-02-22 15:55:33 +00:00
func (d *Deployment) removePodFinalizers(ctx context.Context, cachedStatus inspectorInterface.Inspector) (bool, error) {
2022-06-14 07:26:07 +00:00
log := d.sectionLogger("pod-finalizer")
2022-02-22 15:55:33 +00:00
found := false
if err := cachedStatus.Pod().V1().Iterate(func(pod *core.Pod) error {
2022-06-14 07:26:07 +00:00
log.Str("pod", pod.GetName()).Info("Removing Pod Finalizer")
if count, err := k8sutil.RemovePodFinalizers(ctx, cachedStatus, d.PodsModInterface(), pod, constants.ManagedFinalizers(), true); err != nil {
log.Err(err).Warn("Failed to remove pod finalizers")
return err
2022-02-22 15:55:33 +00:00
} else if count > 0 {
found = true
}
ctxChild, cancel := globals.GetGlobalTimeouts().Kubernetes().WithTimeout(ctx)
2021-04-26 08:30:06 +00:00
defer cancel()
if err := d.PodsModInterface().Delete(ctxChild, pod.GetName(), meta.DeleteOptions{
GracePeriodSeconds: util.NewType[int64](0),
}); err != nil {
if !kerrors.IsNotFound(err) {
2022-06-14 07:26:07 +00:00
log.Err(err).Warn("Failed to remove pod")
return err
}
}
return nil
}, podv1.FilterPodsByLabels(k8sutil.LabelsForDeployment(d.GetName(), ""))); err != nil {
2022-02-22 15:55:33 +00:00
return false, err
}
2022-02-22 15:55:33 +00:00
return found, nil
}
// removePVCFinalizers removes all finalizers from all PVCs owned by us.
2022-02-22 15:55:33 +00:00
func (d *Deployment) removePVCFinalizers(ctx context.Context, cachedStatus inspectorInterface.Inspector) (bool, error) {
2022-06-14 07:26:07 +00:00
log := d.sectionLogger("pvc-finalizer")
2022-02-22 15:55:33 +00:00
found := false
if err := cachedStatus.PersistentVolumeClaim().V1().Iterate(func(pvc *core.PersistentVolumeClaim) error {
2022-06-14 07:26:07 +00:00
log.Str("pvc", pvc.GetName()).Info("Removing PVC Finalizer")
if count, err := k8sutil.RemovePVCFinalizers(ctx, cachedStatus, d.PersistentVolumeClaimsModInterface(), pvc, constants.ManagedFinalizers(), true); err != nil {
log.Err(err).Warn("Failed to remove PVC finalizers")
return err
2022-02-22 15:55:33 +00:00
} else if count > 0 {
found = true
}
return nil
}, pvcv1.FilterPersistentVolumeClaimsByLabels(k8sutil.LabelsForDeployment(d.GetName(), ""))); err != nil {
2022-02-22 15:55:33 +00:00
return false, err
}
2022-02-22 15:55:33 +00:00
return found, nil
}