mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-09-20 23:14:17 +00:00
For a Case 2 driver (design/block-data-mover/block-data-mover.md), such as Ceph RBD, rbd snap diff needs the base and target snapshots in the same clone chain. Delete destroys the base as soon as the backup completes, so the next incremental's delta query fails and degrades to an allocated-blocks backup (or a full whole-device transfer without that fix). Inheriting Retain there isn't an optional nicety, it's what makes incrementals possible at all. Signed-off-by: Tiger Kaovilai <tkaovila@redhat.com>
902 lines
31 KiB
Go
902 lines
31 KiB
Go
/*
|
|
Copyright the Velero contributors.
|
|
|
|
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 exposer
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"maps"
|
|
"time"
|
|
|
|
"github.com/cockroachdb/errors"
|
|
snapshotv1api "github.com/kubernetes-csi/external-snapshotter/client/v8/apis/volumesnapshot/v1"
|
|
snapshotter "github.com/kubernetes-csi/external-snapshotter/client/v8/clientset/versioned/typed/volumesnapshot/v1"
|
|
"github.com/sirupsen/logrus"
|
|
corev1api "k8s.io/api/core/v1"
|
|
apierrors "k8s.io/apimachinery/pkg/api/errors"
|
|
"k8s.io/apimachinery/pkg/api/resource"
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
|
"k8s.io/apimachinery/pkg/types"
|
|
"k8s.io/client-go/kubernetes"
|
|
"sigs.k8s.io/controller-runtime/pkg/client"
|
|
|
|
"github.com/vmware-tanzu/velero/pkg/nodeagent"
|
|
velerotypes "github.com/vmware-tanzu/velero/pkg/types"
|
|
"github.com/vmware-tanzu/velero/pkg/util"
|
|
"github.com/vmware-tanzu/velero/pkg/util/boolptr"
|
|
"github.com/vmware-tanzu/velero/pkg/util/csi"
|
|
"github.com/vmware-tanzu/velero/pkg/util/datamover"
|
|
"github.com/vmware-tanzu/velero/pkg/util/kube"
|
|
)
|
|
|
|
// BackupPVCSecretLabel is the label applied to secrets and configmaps copied to the
|
|
// Velero namespace for backup PVC provisioning. The value is the owning DataUpload/DataDownload
|
|
// UID, which is a stable, valid label value (the owner name may exceed the label-value limit).
|
|
const BackupPVCSecretLabel = "velero.io/backup-pvc-secret" //nolint:gosec // not a credential
|
|
|
|
// CSISnapshotExposeParam define the input param for Expose of CSI snapshots
|
|
type CSISnapshotExposeParam struct {
|
|
// SnapshotName is the original volume snapshot name
|
|
SnapshotName string
|
|
|
|
// SourceNamespace is the original namespace of the volume that the snapshot is taken for
|
|
SourceNamespace string
|
|
|
|
// SourcePVCName is the original name of the PVC that the snapshot is taken for
|
|
SourcePVCName string
|
|
|
|
// SourcePVName is the name of PV for SourcePVC
|
|
SourcePVName string
|
|
|
|
// AccessMode defines the mode to access the snapshot
|
|
AccessMode string
|
|
|
|
// StorageClass is the storage class of the volume that the snapshot is taken for
|
|
StorageClass string
|
|
|
|
// HostingPodLabels is the labels that are going to apply to the hosting pod
|
|
HostingPodLabels map[string]string
|
|
|
|
// HostingPodAnnotations is the annotations that are going to apply to the hosting pod
|
|
HostingPodAnnotations map[string]string
|
|
|
|
// HostingPodTolerations is the tolerations that are going to apply to the hosting pod
|
|
HostingPodTolerations []corev1api.Toleration
|
|
|
|
// OperationTimeout specifies the time wait for resources operations in Expose
|
|
OperationTimeout time.Duration
|
|
|
|
// ExposeTimeout specifies the timeout for the entire expose process
|
|
ExposeTimeout time.Duration
|
|
|
|
// VolumeSize specifies the size of the source volume
|
|
VolumeSize resource.Quantity
|
|
|
|
// Affinity specifies the node affinity of the backup pod
|
|
Affinity []*kube.LoadAffinity
|
|
|
|
// BackupPVCConfig is the config for backupPVC (intermediate PVC) of snapshot data movement
|
|
BackupPVCConfig map[string]velerotypes.BackupPVC
|
|
|
|
// Resources defines the resource requirements of the hosting pod
|
|
Resources corev1api.ResourceRequirements
|
|
|
|
// NodeOS specifies the OS of node that the source volume is attaching
|
|
NodeOS string
|
|
|
|
// PriorityClassName is the priority class name for the data mover pod
|
|
PriorityClassName string
|
|
|
|
// DataMover is the data mover type, e.g., velero-fs, velero-block
|
|
DataMover string
|
|
|
|
// SnapshotMetadataServiceConfigs is the config for CSI snapshot metadata service
|
|
SnapshotMetadataServiceConfigs *velerotypes.CSISnapshotMetadataService
|
|
}
|
|
|
|
// CSISnapshotExposeWaitParam define the input param for WaitExposed of CSI snapshots
|
|
type CSISnapshotExposeWaitParam struct {
|
|
// NodeClient is the client that is used to find the hosting pod
|
|
NodeClient client.Client
|
|
NodeName string
|
|
}
|
|
|
|
// NewCSISnapshotExposer create a new instance of CSI snapshot exposer
|
|
func NewCSISnapshotExposer(kubeClient kubernetes.Interface, csiSnapshotClient snapshotter.SnapshotV1Interface, log logrus.FieldLogger) SnapshotExposer {
|
|
return &csiSnapshotExposer{
|
|
kubeClient: kubeClient,
|
|
csiSnapshotClient: csiSnapshotClient,
|
|
log: log,
|
|
}
|
|
}
|
|
|
|
type csiSnapshotExposer struct {
|
|
kubeClient kubernetes.Interface
|
|
csiSnapshotClient snapshotter.SnapshotV1Interface
|
|
log logrus.FieldLogger
|
|
}
|
|
|
|
func (e *csiSnapshotExposer) Expose(ctx context.Context, ownerObject corev1api.ObjectReference, param any) error {
|
|
csiExposeParam := param.(*CSISnapshotExposeParam)
|
|
|
|
curLog := e.log.WithFields(logrus.Fields{
|
|
"owner": ownerObject.Name,
|
|
})
|
|
|
|
volumeTopology, err := kube.GetVolumeTopology(ctx, e.kubeClient.CoreV1(), e.kubeClient.StorageV1(), csiExposeParam.SourcePVName, csiExposeParam.StorageClass)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error getting volume topology for PV %s, storage class %s", csiExposeParam.SourcePVName, csiExposeParam.StorageClass)
|
|
}
|
|
|
|
if volumeTopology != nil {
|
|
curLog.Infof("Using volume topology %v", volumeTopology)
|
|
}
|
|
|
|
curLog.Info("Exposing CSI snapshot")
|
|
|
|
volumeSnapshot, err := csi.WaitVolumeSnapshotReady(ctx, e.csiSnapshotClient, csiExposeParam.SnapshotName, csiExposeParam.SourceNamespace, csiExposeParam.ExposeTimeout, curLog)
|
|
if err != nil {
|
|
return errors.Wrapf(err, "error wait volume snapshot ready")
|
|
}
|
|
|
|
curLog.Info("Volumesnapshot is ready")
|
|
|
|
// Copy secrets and configmaps from source namespace to Velero namespace if configured.
|
|
// Done before creating any intermediate objects so failure doesn't require cleanup.
|
|
// These are needed by CSI drivers that require namespace-scoped resources for volume
|
|
// provisioning (e.g., encrypted volumes with KMS tokens and tenant Vault configs).
|
|
if value, exists := csiExposeParam.BackupPVCConfig[csiExposeParam.StorageClass]; exists {
|
|
copyLabels := map[string]string{BackupPVCSecretLabel: string(ownerObject.UID)}
|
|
for _, secretName := range value.SecretNames {
|
|
if copyErr := kube.CopySecret(ctx, e.kubeClient.CoreV1(), secretName,
|
|
csiExposeParam.SourceNamespace, ownerObject.Namespace, copyLabels, curLog); copyErr != nil {
|
|
return errors.Wrapf(copyErr, "error copying secret %s from %s to %s",
|
|
secretName, csiExposeParam.SourceNamespace, ownerObject.Namespace)
|
|
}
|
|
}
|
|
for _, cmName := range value.ConfigMapNames {
|
|
if copyErr := kube.CopyConfigMap(ctx, e.kubeClient.CoreV1(), cmName,
|
|
csiExposeParam.SourceNamespace, ownerObject.Namespace, copyLabels, curLog); copyErr != nil {
|
|
return errors.Wrapf(copyErr, "error copying configmap %s from %s to %s",
|
|
cmName, csiExposeParam.SourceNamespace, ownerObject.Namespace)
|
|
}
|
|
}
|
|
}
|
|
|
|
vsc, err := csi.GetVolumeSnapshotContentForVolumeSnapshot(ctx, volumeSnapshot, e.csiSnapshotClient)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error to get volume snapshot content")
|
|
}
|
|
|
|
curLog.WithField("vsc name", vsc.Name).WithField("vs name", volumeSnapshot.Name).Infof("Got VSC from VS in namespace %s", volumeSnapshot.Namespace)
|
|
|
|
backupVS, err := e.createBackupVS(ctx, ownerObject, volumeSnapshot)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error to create backup volume snapshot")
|
|
}
|
|
|
|
curLog.WithField("vs name", backupVS.Name).Infof("Backup VS is created from %s/%s", volumeSnapshot.Namespace, volumeSnapshot.Name)
|
|
|
|
defer func() {
|
|
if err != nil {
|
|
csi.DeleteVolumeSnapshotIfAny(ctx, e.csiSnapshotClient, backupVS.Name, backupVS.Namespace, curLog)
|
|
}
|
|
}()
|
|
|
|
backupVSC, err := e.createBackupVSC(ctx, ownerObject, vsc, backupVS)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error to create backup volume snapshot content")
|
|
}
|
|
|
|
curLog.WithField("vsc name", backupVSC.Name).Infof("Backup VSC is created from %s", vsc.Name)
|
|
|
|
retained, err := csi.RetainVSC(ctx, e.csiSnapshotClient, vsc)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error to retain volume snapshot content")
|
|
}
|
|
|
|
curLog.WithField("vsc name", vsc.Name).WithField("retained", (retained != nil)).Info("Finished to retain VSC")
|
|
|
|
err = csi.EnsureDeleteVS(ctx, e.csiSnapshotClient, volumeSnapshot.Name, volumeSnapshot.Namespace, csiExposeParam.OperationTimeout)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error to delete volume snapshot")
|
|
}
|
|
|
|
curLog.WithField("vs name", volumeSnapshot.Name).Infof("VS is deleted in namespace %s", volumeSnapshot.Namespace)
|
|
|
|
err = csi.EnsureDeleteVSC(ctx, e.csiSnapshotClient, vsc.Name, csiExposeParam.OperationTimeout)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error to delete volume snapshot content")
|
|
}
|
|
|
|
curLog.WithField("vsc name", vsc.Name).Infof("VSC is deleted")
|
|
|
|
var volumeSize resource.Quantity
|
|
if volumeSnapshot.Status.RestoreSize != nil && !volumeSnapshot.Status.RestoreSize.IsZero() {
|
|
volumeSize = *volumeSnapshot.Status.RestoreSize
|
|
} else {
|
|
volumeSize = csiExposeParam.VolumeSize
|
|
curLog.WithField("vs name", volumeSnapshot.Name).Warnf("The snapshot doesn't contain a valid restore size, use source volume's size %v", volumeSize)
|
|
}
|
|
|
|
// check if there is a mapping for source pvc storage class in backupPVC config
|
|
// if the mapping exists then use the values(storage class, readOnly accessMode)
|
|
// for backupPVC (intermediate PVC in snapshot data movement) object creation
|
|
backupPVCStorageClass := csiExposeParam.StorageClass
|
|
backupPVCReadOnly := false
|
|
spcNoRelabeling := false
|
|
backupPVCReadWriteOncePod := false
|
|
backupPVCAnnotations := map[string]string{}
|
|
intoleratableNodes := []string{}
|
|
if value, exists := csiExposeParam.BackupPVCConfig[csiExposeParam.StorageClass]; exists {
|
|
if value.StorageClass != "" {
|
|
backupPVCStorageClass = value.StorageClass
|
|
}
|
|
|
|
backupPVCReadOnly = value.ReadOnly
|
|
if value.SPCNoRelabeling {
|
|
if backupPVCReadOnly {
|
|
spcNoRelabeling = true
|
|
} else {
|
|
curLog.WithField("vs name", volumeSnapshot.Name).Warn("Ignoring spcNoRelabling for read-write volume")
|
|
}
|
|
}
|
|
|
|
if value.ReadWriteOncePod {
|
|
if backupPVCReadOnly {
|
|
curLog.WithField("vs name", volumeSnapshot.Name).Warn("Ignoring readWriteOncePod for read-only volume")
|
|
} else {
|
|
backupPVCReadWriteOncePod = true
|
|
}
|
|
}
|
|
|
|
if len(value.Annotations) > 0 {
|
|
backupPVCAnnotations = value.Annotations
|
|
}
|
|
|
|
if _, found := backupPVCAnnotations[util.VSphereCNSFastCloneAnno]; found {
|
|
if n, err := kube.GetPVAttachedNodes(ctx, csiExposeParam.SourcePVName, e.kubeClient.StorageV1()); err != nil {
|
|
curLog.WithField("source PV", csiExposeParam.SourcePVName).WithError(err).Warnf("Failed to get attached node for source PV, ignore %s annotation", util.VSphereCNSFastCloneAnno)
|
|
delete(backupPVCAnnotations, util.VSphereCNSFastCloneAnno)
|
|
} else {
|
|
intoleratableNodes = n
|
|
}
|
|
}
|
|
}
|
|
|
|
backupPVC, err := e.createBackupPVC(ctx, ownerObject, backupVS.Name, backupPVCStorageClass, csiExposeParam.AccessMode, volumeSize, backupPVCReadOnly, backupPVCReadWriteOncePod, backupPVCAnnotations, csiExposeParam.DataMover)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error to create backup pvc")
|
|
}
|
|
|
|
curLog.WithField("pvc name", backupPVC.Name).Info("Backup PVC is created")
|
|
defer func() {
|
|
if err != nil {
|
|
kube.DeletePVAndPVCIfAny(ctx, e.kubeClient.CoreV1(), backupPVC.Name, backupPVC.Namespace, 0, curLog)
|
|
}
|
|
}()
|
|
|
|
affinity := kube.GetLoadAffinityByStorageClass(csiExposeParam.Affinity, backupPVCStorageClass, curLog)
|
|
|
|
var cbtInfo csi.CBTInfo
|
|
if csiExposeParam.DataMover == datamover.DataMoverTypeVeleroBlock {
|
|
cbtInfo, err = csi.GetCBTInfo(ctx, e.kubeClient, e.log, backupVS, backupVSC, csiExposeParam.SourcePVName)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error to get CBT info")
|
|
}
|
|
}
|
|
|
|
backupPod, err := e.createBackupPod(
|
|
ctx,
|
|
ownerObject,
|
|
backupPVC,
|
|
csiExposeParam.OperationTimeout,
|
|
csiExposeParam.HostingPodLabels,
|
|
csiExposeParam.HostingPodAnnotations,
|
|
csiExposeParam.HostingPodTolerations,
|
|
affinity,
|
|
csiExposeParam.Resources,
|
|
backupPVCReadOnly,
|
|
spcNoRelabeling,
|
|
csiExposeParam.NodeOS,
|
|
csiExposeParam.PriorityClassName,
|
|
intoleratableNodes,
|
|
volumeTopology,
|
|
csiExposeParam.SnapshotMetadataServiceConfigs,
|
|
&cbtInfo,
|
|
)
|
|
if err != nil {
|
|
return errors.Wrap(err, "error to create backup pod")
|
|
}
|
|
|
|
curLog.WithField("pod name", backupPod.Name).WithField("affinity", affinity).Info("Backup pod is created")
|
|
|
|
defer func() {
|
|
if err != nil {
|
|
kube.DeletePodIfAny(ctx, e.kubeClient.CoreV1(), backupPod.Name, backupPod.Namespace, curLog)
|
|
}
|
|
}()
|
|
|
|
return nil
|
|
}
|
|
|
|
func (e *csiSnapshotExposer) GetExposed(ctx context.Context, ownerObject corev1api.ObjectReference, timeout time.Duration, param any) (*ExposeResult, error) {
|
|
exposeWaitParam := param.(*CSISnapshotExposeWaitParam)
|
|
|
|
backupPodName := ownerObject.Name
|
|
backupPVCName := ownerObject.Name
|
|
|
|
containerName := string(ownerObject.UID)
|
|
volumeName := string(ownerObject.UID)
|
|
|
|
curLog := e.log.WithFields(logrus.Fields{
|
|
"owner": ownerObject.Name,
|
|
})
|
|
|
|
pod := &corev1api.Pod{}
|
|
err := exposeWaitParam.NodeClient.Get(ctx, types.NamespacedName{
|
|
Namespace: ownerObject.Namespace,
|
|
Name: backupPodName,
|
|
}, pod)
|
|
if err != nil {
|
|
if apierrors.IsNotFound(err) {
|
|
curLog.WithField("backup pod", backupPodName).Debugf("Backup pod is not running in the current node %s", exposeWaitParam.NodeName)
|
|
return nil, nil
|
|
} else {
|
|
return nil, errors.Wrapf(err, "error to get backup pod %s", backupPodName)
|
|
}
|
|
}
|
|
|
|
curLog.WithField("pod", pod.Name).Infof("Backup pod is in running state in node %s", pod.Spec.NodeName)
|
|
|
|
_, err = kube.WaitPVCBound(ctx, e.kubeClient.CoreV1(), e.kubeClient.CoreV1(), backupPVCName, ownerObject.Namespace, timeout)
|
|
if err != nil {
|
|
return nil, errors.Wrapf(err, "error to wait backup PVC bound, %s", backupPVCName)
|
|
}
|
|
|
|
curLog.WithField("backup pvc", backupPVCName).Info("Backup PVC is bound")
|
|
|
|
i := 0
|
|
for i = 0; i < len(pod.Spec.Volumes); i++ {
|
|
if pod.Spec.Volumes[i].Name == volumeName {
|
|
break
|
|
}
|
|
}
|
|
|
|
if i == len(pod.Spec.Volumes) {
|
|
return nil, errors.Errorf("backup pod %s doesn't have the expected backup volume", pod.Name)
|
|
}
|
|
|
|
curLog.WithField("pod", pod.Name).Infof("Backup volume is found in pod at index %v", i)
|
|
|
|
var nodeOS *string
|
|
if pod.Spec.OS != nil {
|
|
os := string(pod.Spec.OS.Name)
|
|
nodeOS = &os
|
|
}
|
|
|
|
return &ExposeResult{ByPod: ExposeByPod{
|
|
HostingPod: pod,
|
|
HostingContainer: containerName,
|
|
VolumeName: volumeName,
|
|
NodeOS: nodeOS,
|
|
}}, nil
|
|
}
|
|
|
|
func (e *csiSnapshotExposer) PeekExposed(ctx context.Context, ownerObject corev1api.ObjectReference) error {
|
|
backupPodName := ownerObject.Name
|
|
|
|
curLog := e.log.WithFields(logrus.Fields{
|
|
"owner": ownerObject.Name,
|
|
})
|
|
|
|
pod, err := e.kubeClient.CoreV1().Pods(ownerObject.Namespace).Get(ctx, backupPodName, metav1.GetOptions{})
|
|
if apierrors.IsNotFound(err) {
|
|
return nil
|
|
}
|
|
|
|
if err != nil {
|
|
curLog.WithError(err).Warnf("error to peek backup pod %s", backupPodName)
|
|
return nil
|
|
}
|
|
|
|
if podFailed, message := kube.IsPodUnrecoverable(pod, curLog); podFailed {
|
|
return errors.New(message)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
func (e *csiSnapshotExposer) DiagnoseExpose(ctx context.Context, ownerObject corev1api.ObjectReference) string {
|
|
backupPodName := ownerObject.Name
|
|
backupPVCName := ownerObject.Name
|
|
backupVSName := ownerObject.Name
|
|
|
|
diag := "begin diagnose CSI exposer\n"
|
|
|
|
pod, err := e.kubeClient.CoreV1().Pods(ownerObject.Namespace).Get(ctx, backupPodName, metav1.GetOptions{})
|
|
if err != nil {
|
|
pod = nil
|
|
diag += fmt.Sprintf("error getting backup pod %s, err: %v\n", backupPodName, err)
|
|
}
|
|
|
|
pvc, err := e.kubeClient.CoreV1().PersistentVolumeClaims(ownerObject.Namespace).Get(ctx, backupPVCName, metav1.GetOptions{})
|
|
if err != nil {
|
|
pvc = nil
|
|
diag += fmt.Sprintf("error getting backup pvc %s, err: %v\n", backupPVCName, err)
|
|
}
|
|
|
|
vs, err := e.csiSnapshotClient.VolumeSnapshots(ownerObject.Namespace).Get(ctx, backupVSName, metav1.GetOptions{})
|
|
if err != nil {
|
|
vs = nil
|
|
diag += fmt.Sprintf("error getting backup vs %s, err: %v\n", backupVSName, err)
|
|
}
|
|
|
|
events, err := e.kubeClient.CoreV1().Events(ownerObject.Namespace).List(ctx, metav1.ListOptions{})
|
|
if err != nil {
|
|
diag += fmt.Sprintf("error listing events, err: %v\n", err)
|
|
}
|
|
|
|
if pod != nil {
|
|
diag += kube.DiagnosePod(pod, events)
|
|
|
|
if pod.Spec.NodeName != "" {
|
|
if err := nodeagent.KbClientIsRunningInNode(ctx, ownerObject.Namespace, pod.Spec.NodeName, e.kubeClient); err != nil {
|
|
diag += fmt.Sprintf("node-agent is not running in node %s, err: %v\n", pod.Spec.NodeName, err)
|
|
}
|
|
}
|
|
}
|
|
|
|
if pvc != nil {
|
|
diag += kube.DiagnosePVC(pvc, events)
|
|
|
|
if pvc.Spec.VolumeName != "" {
|
|
if pv, err := e.kubeClient.CoreV1().PersistentVolumes().Get(ctx, pvc.Spec.VolumeName, metav1.GetOptions{}); err != nil {
|
|
diag += fmt.Sprintf("error getting backup pv %s, err: %v\n", pvc.Spec.VolumeName, err)
|
|
} else {
|
|
diag += kube.DiagnosePV(pv)
|
|
}
|
|
}
|
|
}
|
|
|
|
if vs != nil {
|
|
diag += csi.DiagnoseVS(vs, events)
|
|
|
|
if vs.Status != nil && vs.Status.BoundVolumeSnapshotContentName != nil && *vs.Status.BoundVolumeSnapshotContentName != "" {
|
|
if vsc, err := e.csiSnapshotClient.VolumeSnapshotContents().Get(ctx, *vs.Status.BoundVolumeSnapshotContentName, metav1.GetOptions{}); err != nil {
|
|
diag += fmt.Sprintf("error getting backup vsc %s, err: %v\n", *vs.Status.BoundVolumeSnapshotContentName, err)
|
|
} else {
|
|
diag += csi.DiagnoseVSC(vsc)
|
|
}
|
|
}
|
|
}
|
|
|
|
diag += "end diagnose CSI exposer"
|
|
|
|
return diag
|
|
}
|
|
|
|
const cleanUpTimeout = time.Minute
|
|
|
|
func (e *csiSnapshotExposer) CleanUp(ctx context.Context, ownerObject corev1api.ObjectReference, vsName string, sourceNamespace string) {
|
|
backupPodName := ownerObject.Name
|
|
backupPVCName := ownerObject.Name
|
|
backupVSName := ownerObject.Name
|
|
backupVSCName := ownerObject.Name
|
|
|
|
kube.DeletePodIfAny(ctx, e.kubeClient.CoreV1(), backupPodName, ownerObject.Namespace, e.log)
|
|
kube.DeletePVAndPVCIfAny(ctx, e.kubeClient.CoreV1(), backupPVCName, ownerObject.Namespace, cleanUpTimeout, e.log)
|
|
|
|
kube.DeleteSecretsWithLabel(ctx, e.kubeClient.CoreV1(), ownerObject.Namespace,
|
|
BackupPVCSecretLabel, string(ownerObject.UID), e.log)
|
|
kube.DeleteConfigMapsWithLabel(ctx, e.kubeClient.CoreV1(), ownerObject.Namespace,
|
|
BackupPVCSecretLabel, string(ownerObject.UID), e.log)
|
|
|
|
csi.DeleteVolumeSnapshotIfAny(ctx, e.csiSnapshotClient, backupVSName, ownerObject.Namespace, e.log)
|
|
csi.DeleteVolumeSnapshotIfAny(ctx, e.csiSnapshotClient, vsName, sourceNamespace, e.log)
|
|
|
|
// The backup VSC is created by Velero as an internal handle to the source
|
|
// snapshot. Deleting the backup VS above only cascades to it when its
|
|
// deletion policy is Delete, so remove it explicitly to avoid leaking the
|
|
// object under a Retain policy. Deleting a Retain VSC drops only the API
|
|
// object and leaves the underlying snapshot intact.
|
|
csi.DeleteVolumeSnapshotContentIfAny(ctx, e.csiSnapshotClient, backupVSCName, e.log)
|
|
}
|
|
|
|
func getVolumeModeByAccessMode(accessMode string, dataMover string) (corev1api.PersistentVolumeMode, error) {
|
|
if dataMover == datamover.DataMoverTypeVeleroBlock {
|
|
return corev1api.PersistentVolumeBlock, nil
|
|
}
|
|
|
|
switch accessMode {
|
|
case AccessModeFileSystem:
|
|
return corev1api.PersistentVolumeFilesystem, nil
|
|
case AccessModeBlock:
|
|
return corev1api.PersistentVolumeBlock, nil
|
|
default:
|
|
return "", errors.Errorf("unsupported access mode %s", accessMode)
|
|
}
|
|
}
|
|
|
|
func (e *csiSnapshotExposer) createBackupVS(ctx context.Context, ownerObject corev1api.ObjectReference, snapshotVS *snapshotv1api.VolumeSnapshot) (*snapshotv1api.VolumeSnapshot, error) {
|
|
backupVSName := ownerObject.Name
|
|
backupVSCName := ownerObject.Name
|
|
|
|
vs := &snapshotv1api.VolumeSnapshot{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: backupVSName,
|
|
Namespace: ownerObject.Namespace,
|
|
Annotations: snapshotVS.Annotations,
|
|
// Don't add ownerReference to SnapshotBackup.
|
|
// The backupPVC should be deleted before backupVS, otherwise, the deletion of backupVS will fail since
|
|
// backupPVC has its dataSource referring to it
|
|
},
|
|
Spec: snapshotv1api.VolumeSnapshotSpec{
|
|
Source: snapshotv1api.VolumeSnapshotSource{
|
|
VolumeSnapshotContentName: &backupVSCName,
|
|
},
|
|
VolumeSnapshotClassName: snapshotVS.Spec.VolumeSnapshotClassName,
|
|
},
|
|
}
|
|
|
|
return e.csiSnapshotClient.VolumeSnapshots(vs.Namespace).Create(ctx, vs, metav1.CreateOptions{})
|
|
}
|
|
|
|
func (e *csiSnapshotExposer) createBackupVSC(ctx context.Context, ownerObject corev1api.ObjectReference, snapshotVSC *snapshotv1api.VolumeSnapshotContent, vs *snapshotv1api.VolumeSnapshot) (*snapshotv1api.VolumeSnapshotContent, error) {
|
|
backupVSCName := ownerObject.Name
|
|
|
|
anno := make(map[string]string)
|
|
maps.Copy(anno, snapshotVSC.Annotations)
|
|
anno[kube.KubeAnnAllowVolumeModeChange] = "true"
|
|
|
|
vsc := &snapshotv1api.VolumeSnapshotContent{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: backupVSCName,
|
|
Annotations: anno,
|
|
Labels: map[string]string{},
|
|
},
|
|
Spec: snapshotv1api.VolumeSnapshotContentSpec{
|
|
VolumeSnapshotRef: corev1api.ObjectReference{
|
|
Name: vs.Name,
|
|
Namespace: vs.Namespace,
|
|
UID: vs.UID,
|
|
ResourceVersion: vs.ResourceVersion,
|
|
},
|
|
Source: snapshotv1api.VolumeSnapshotContentSource{
|
|
SnapshotHandle: snapshotVSC.Status.SnapshotHandle,
|
|
},
|
|
// The backup VSC is statically provisioned against the same
|
|
// snapshot handle as the source VSC, so both objects refer to one
|
|
// physical snapshot. Inherit the source's deletion policy instead
|
|
// of forcing Delete, otherwise a user who configured Retain on the
|
|
// VolumeSnapshotClass still loses the snapshot when the backup VSC
|
|
// is cleaned up.
|
|
//
|
|
// For Case 2 storages per the design (design/block-data-mover/block-data-mover.md,
|
|
// e.g. Ceph RBD), inheriting Retain is not just an option but a requirement for
|
|
// incrementals to work at all: rbd snap diff needs the base and target snapshots
|
|
// in the same clone chain, so Delete destroys the base as soon as this backup
|
|
// completes. The next incremental's delta query then fails and degrades to an
|
|
// allocated-blocks backup (see the CBT tier ladder) or, without that fix, a full
|
|
// whole-device transfer.
|
|
DeletionPolicy: snapshotVSC.Spec.DeletionPolicy,
|
|
Driver: snapshotVSC.Spec.Driver,
|
|
VolumeSnapshotClassName: snapshotVSC.Spec.VolumeSnapshotClassName,
|
|
},
|
|
}
|
|
|
|
/*
|
|
We need to keep the label of the managing node for distributed snapshots.
|
|
The external snapshot manager will only manage snapshots matching it's node if that feature is enabled.
|
|
|
|
https://github.com/kubernetes-csi/external-snapshotter/tree/4cedb3f45790ac593ebfa3324c490abedf739477?tab=readme-ov-file#distributed-snapshotting
|
|
https://github.com/kubernetes-csi/external-snapshotter/blob/4cedb3f45790ac593ebfa3324c490abedf739477/pkg/utils/util.go#L158
|
|
*/
|
|
if manager, ok := snapshotVSC.Labels[kube.VolumeSnapshotContentManagedByLabel]; ok {
|
|
vsc.ObjectMeta.Labels[kube.VolumeSnapshotContentManagedByLabel] = manager
|
|
}
|
|
|
|
return e.csiSnapshotClient.VolumeSnapshotContents().Create(ctx, vsc, metav1.CreateOptions{})
|
|
}
|
|
|
|
func (e *csiSnapshotExposer) createBackupPVC(ctx context.Context, ownerObject corev1api.ObjectReference, backupVS, storageClass, accessMode string, resource resource.Quantity, readOnly bool, readWriteOncePod bool, annotations map[string]string, dataMover string) (*corev1api.PersistentVolumeClaim, error) {
|
|
backupPVCName := ownerObject.Name
|
|
|
|
volumeMode, err := getVolumeModeByAccessMode(accessMode, dataMover)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
pvcAccessMode := corev1api.ReadWriteOnce
|
|
|
|
if readOnly {
|
|
pvcAccessMode = corev1api.ReadOnlyMany
|
|
} else if readWriteOncePod {
|
|
pvcAccessMode = corev1api.ReadWriteOncePod
|
|
}
|
|
|
|
dataSource := &corev1api.TypedLocalObjectReference{
|
|
APIGroup: &snapshotv1api.SchemeGroupVersion.Group,
|
|
Kind: "VolumeSnapshot",
|
|
Name: backupVS,
|
|
}
|
|
|
|
pvc := &corev1api.PersistentVolumeClaim{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Namespace: ownerObject.Namespace,
|
|
Name: backupPVCName,
|
|
Annotations: annotations,
|
|
OwnerReferences: []metav1.OwnerReference{
|
|
{
|
|
APIVersion: ownerObject.APIVersion,
|
|
Kind: ownerObject.Kind,
|
|
Name: ownerObject.Name,
|
|
UID: ownerObject.UID,
|
|
Controller: boolptr.True(),
|
|
},
|
|
},
|
|
},
|
|
Spec: corev1api.PersistentVolumeClaimSpec{
|
|
AccessModes: []corev1api.PersistentVolumeAccessMode{
|
|
pvcAccessMode,
|
|
},
|
|
StorageClassName: &storageClass,
|
|
VolumeMode: &volumeMode,
|
|
DataSource: dataSource,
|
|
DataSourceRef: nil,
|
|
|
|
Resources: corev1api.VolumeResourceRequirements{
|
|
Requests: corev1api.ResourceList{
|
|
corev1api.ResourceStorage: resource,
|
|
},
|
|
},
|
|
},
|
|
}
|
|
|
|
created, err := e.kubeClient.CoreV1().PersistentVolumeClaims(pvc.Namespace).Create(ctx, pvc, metav1.CreateOptions{})
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "error to create pvc")
|
|
}
|
|
|
|
return created, err
|
|
}
|
|
|
|
func (e *csiSnapshotExposer) createBackupPod(
|
|
ctx context.Context,
|
|
ownerObject corev1api.ObjectReference,
|
|
backupPVC *corev1api.PersistentVolumeClaim,
|
|
operationTimeout time.Duration,
|
|
label map[string]string,
|
|
annotation map[string]string,
|
|
toleration []corev1api.Toleration,
|
|
affinity *kube.LoadAffinity,
|
|
resources corev1api.ResourceRequirements,
|
|
backupPVCReadOnly bool,
|
|
spcNoRelabeling bool,
|
|
nodeOS string,
|
|
priorityClassName string,
|
|
intoleratableNodes []string,
|
|
volumeTopology *corev1api.NodeSelector,
|
|
csiSnapshotMetadataServiceConfigs *velerotypes.CSISnapshotMetadataService,
|
|
cbtInfo *csi.CBTInfo,
|
|
) (*corev1api.Pod, error) {
|
|
podName := ownerObject.Name
|
|
|
|
containerName := string(ownerObject.UID)
|
|
volumeName := string(ownerObject.UID)
|
|
|
|
// The backup pod reads the data through the backup PVC only, so the node-agent's host
|
|
// path volumes to the kubelet root directory are not inherited.
|
|
podInfo, err := getInheritedPodInfo(ctx, e.kubeClient, ownerObject.Namespace, nodeOS, excludeHostPathVolumes)
|
|
if err != nil {
|
|
return nil, errors.Wrap(err, "error to get inherited pod info from node-agent")
|
|
}
|
|
|
|
// Log the priority class if it's set
|
|
if priorityClassName != "" {
|
|
e.log.Debugf("Setting priority class %q for data mover pod %s", priorityClassName, podName)
|
|
}
|
|
|
|
var gracePeriod int64
|
|
volumeMounts, volumeDevices, volumePath := kube.MakePodPVCAttachment(volumeName, backupPVC.Spec.VolumeMode, backupPVCReadOnly)
|
|
volumeMounts = append(volumeMounts, podInfo.volumeMounts...)
|
|
|
|
volumes := []corev1api.Volume{{
|
|
Name: volumeName,
|
|
VolumeSource: corev1api.VolumeSource{
|
|
PersistentVolumeClaim: &corev1api.PersistentVolumeClaimVolumeSource{
|
|
ClaimName: backupPVC.Name,
|
|
},
|
|
},
|
|
}}
|
|
|
|
if backupPVCReadOnly {
|
|
volumes[0].VolumeSource.PersistentVolumeClaim.ReadOnly = true
|
|
}
|
|
|
|
volumes = append(volumes, podInfo.volumes...)
|
|
|
|
if label == nil {
|
|
label = make(map[string]string)
|
|
}
|
|
label[podGroupLabel] = podGroupSnapshot
|
|
|
|
volumeMode := corev1api.PersistentVolumeFilesystem
|
|
if backupPVC.Spec.VolumeMode != nil {
|
|
volumeMode = *backupPVC.Spec.VolumeMode
|
|
}
|
|
|
|
args := []string{
|
|
fmt.Sprintf("--volume-path=%s", volumePath),
|
|
fmt.Sprintf("--volume-mode=%s", volumeMode),
|
|
fmt.Sprintf("--data-upload=%s", ownerObject.Name),
|
|
fmt.Sprintf("--resource-timeout=%s", operationTimeout.String()),
|
|
}
|
|
|
|
if cbtInfo != nil {
|
|
args = append(args, fmt.Sprintf("--change-id=%s", cbtInfo.ChangeID))
|
|
args = append(args, fmt.Sprintf("--volume-id=%s", cbtInfo.VolumeID))
|
|
args = append(args, fmt.Sprintf("--snapshot-id=%s", cbtInfo.SnapshotID))
|
|
}
|
|
|
|
args = append(args, podInfo.logFormatArgs...)
|
|
args = append(args, podInfo.logLevelArgs...)
|
|
|
|
if csiSnapshotMetadataServiceConfigs != nil {
|
|
if csiSnapshotMetadataServiceConfigs.SAName != "" {
|
|
args = append(args, fmt.Sprintf("--csi-snapshot-metadata-service-sa=%s", csiSnapshotMetadataServiceConfigs.SAName))
|
|
}
|
|
}
|
|
|
|
if affinity == nil {
|
|
affinity = &kube.LoadAffinity{}
|
|
}
|
|
|
|
var securityCtx *corev1api.PodSecurityContext
|
|
nodeSelector := map[string]string{}
|
|
podOS := corev1api.PodOS{}
|
|
if nodeOS == kube.NodeOSWindows {
|
|
userID := "ContainerAdministrator"
|
|
securityCtx = &corev1api.PodSecurityContext{
|
|
WindowsOptions: &corev1api.WindowsSecurityContextOptions{
|
|
RunAsUserName: &userID,
|
|
},
|
|
}
|
|
|
|
podOS.Name = kube.NodeOSWindows
|
|
|
|
affinity.NodeSelector.MatchExpressions = append(affinity.NodeSelector.MatchExpressions, metav1.LabelSelectorRequirement{
|
|
Key: kube.NodeOSLabel,
|
|
Values: []string{kube.NodeOSWindows},
|
|
Operator: metav1.LabelSelectorOpIn,
|
|
})
|
|
|
|
toleration = append(toleration, []corev1api.Toleration{
|
|
{
|
|
Key: "os",
|
|
Operator: "Equal",
|
|
Effect: "NoSchedule",
|
|
Value: "windows",
|
|
},
|
|
{
|
|
Key: "os",
|
|
Operator: "Equal",
|
|
Effect: "NoExecute",
|
|
Value: "windows",
|
|
},
|
|
}...)
|
|
} else {
|
|
userID := int64(0)
|
|
securityCtx = &corev1api.PodSecurityContext{
|
|
RunAsUser: &userID,
|
|
}
|
|
|
|
if spcNoRelabeling {
|
|
securityCtx.SELinuxOptions = &corev1api.SELinuxOptions{
|
|
Type: "spc_t",
|
|
}
|
|
}
|
|
|
|
podOS.Name = kube.NodeOSLinux
|
|
|
|
affinity.NodeSelector.MatchExpressions = append(affinity.NodeSelector.MatchExpressions, metav1.LabelSelectorRequirement{
|
|
Key: kube.NodeOSLabel,
|
|
Values: []string{kube.NodeOSWindows},
|
|
Operator: metav1.LabelSelectorOpNotIn,
|
|
})
|
|
}
|
|
|
|
if len(intoleratableNodes) > 0 {
|
|
if affinity == nil {
|
|
affinity = &kube.LoadAffinity{}
|
|
}
|
|
|
|
affinity.NodeSelector.MatchExpressions = append(affinity.NodeSelector.MatchExpressions, metav1.LabelSelectorRequirement{
|
|
Key: corev1api.LabelHostname,
|
|
Values: intoleratableNodes,
|
|
Operator: metav1.LabelSelectorOpNotIn,
|
|
})
|
|
}
|
|
|
|
podAffinity := kube.ToSystemAffinity(affinity, volumeTopology)
|
|
|
|
pod := &corev1api.Pod{
|
|
ObjectMeta: metav1.ObjectMeta{
|
|
Name: podName,
|
|
Namespace: ownerObject.Namespace,
|
|
OwnerReferences: []metav1.OwnerReference{
|
|
{
|
|
APIVersion: ownerObject.APIVersion,
|
|
Kind: ownerObject.Kind,
|
|
Name: ownerObject.Name,
|
|
UID: ownerObject.UID,
|
|
Controller: boolptr.True(),
|
|
},
|
|
},
|
|
Labels: label,
|
|
Annotations: annotation,
|
|
},
|
|
Spec: corev1api.PodSpec{
|
|
TopologySpreadConstraints: []corev1api.TopologySpreadConstraint{
|
|
{
|
|
MaxSkew: 1,
|
|
TopologyKey: corev1api.LabelHostname,
|
|
WhenUnsatisfiable: corev1api.ScheduleAnyway,
|
|
LabelSelector: &metav1.LabelSelector{
|
|
MatchLabels: map[string]string{
|
|
podGroupLabel: podGroupSnapshot,
|
|
},
|
|
},
|
|
},
|
|
},
|
|
NodeSelector: nodeSelector,
|
|
OS: &podOS,
|
|
Affinity: podAffinity,
|
|
Containers: []corev1api.Container{
|
|
{
|
|
Name: containerName,
|
|
Image: podInfo.image,
|
|
ImagePullPolicy: corev1api.PullNever,
|
|
Command: []string{
|
|
"/velero",
|
|
"data-mover",
|
|
"backup",
|
|
},
|
|
Args: args,
|
|
VolumeMounts: volumeMounts,
|
|
VolumeDevices: volumeDevices,
|
|
Env: podInfo.env,
|
|
EnvFrom: podInfo.envFrom,
|
|
Resources: resources,
|
|
},
|
|
},
|
|
PriorityClassName: priorityClassName,
|
|
ServiceAccountName: podInfo.serviceAccount,
|
|
TerminationGracePeriodSeconds: &gracePeriod,
|
|
Volumes: volumes,
|
|
RestartPolicy: corev1api.RestartPolicyNever,
|
|
SecurityContext: securityCtx,
|
|
Tolerations: toleration,
|
|
DNSPolicy: podInfo.dnsPolicy,
|
|
DNSConfig: podInfo.dnsConfig,
|
|
ImagePullSecrets: podInfo.imagePullSecrets,
|
|
},
|
|
}
|
|
|
|
return e.kubeClient.CoreV1().Pods(ownerObject.Namespace).Create(ctx, pod, metav1.CreateOptions{})
|
|
}
|