/* 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" "time" "github.com/cockroachdb/errors" "github.com/google/uuid" snapshotv1api "github.com/kubernetes-csi/external-snapshotter/client/v8/apis/volumesnapshot/v1" "github.com/sirupsen/logrus" corev1api "k8s.io/api/core/v1" apierrors "k8s.io/apimachinery/pkg/api/errors" 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" velerov2alpha1api "github.com/vmware-tanzu/velero/pkg/apis/velero/v2alpha1" "github.com/vmware-tanzu/velero/pkg/nodeagent" velerotypes "github.com/vmware-tanzu/velero/pkg/types" "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" ) // GenericRestoreExposeCSI define the CSI specific input param for Generic Restore Expose type GenericRestoreExposeCSI struct { // Snapshot is the CSI snapshot spec Snapshot *velerov2alpha1api.CSISnapshotSpec // SnapshotMetadataServiceConfigs is the config for CSI snapshot metadata service SnapshotMetadataServiceConfigs *velerotypes.CSISnapshotMetadataService } // GenericRestoreExposeParam define the input param for Generic Restore Expose type GenericRestoreExposeParam struct { // TargetPVCName is the target volume name to be restored TargetPVCName string // TargetPVName is the target persistent volume name to be restored TargetPVName string // TargetNamespace is the namespace of the volume to be restored TargetNamespace 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 // Resources defines the resource requirements of the hosting pod Resources corev1api.ResourceRequirements // ExposeTimeout specifies the timeout for the entire expose process ExposeTimeout time.Duration // OperationTimeout specifies the time wait for resources operations in Expose OperationTimeout time.Duration // NodeOS specifies the OS of node that the volume should be attached NodeOS string // RestorePVCConfig is the config for restorePVC (intermediate PVC) of generic restore RestorePVCConfig velerotypes.RestorePVC // LoadAffinity specifies the node affinity of the backup pod LoadAffinity []*kube.LoadAffinity // PriorityClassName is the priority class name for the data mover pod PriorityClassName string // RestoreSize specifies the data size for the volume to be restored RestoreSize int64 // CacheVolume specifies the info for cache volumes CacheVolume *CacheConfigs // DataMover is the data mover type, e.g., velero-fs, velero-block DataMover string // SnapshotMetadataServiceConfigs is the config for CSI snapshot metadata service CSI *GenericRestoreExposeCSI } // GenericRestoreRebindVolumeParam define the input param for Generic Restore Rebind Volume type GenericRestoreRebindVolumeParam struct { // TargetPVCName is the target volume name to be restored TargetPVCName string // TargetNamespace is the namespace of the volume to be restored TargetNamespace string // OperationTimeout specifies the time wait for resources operations in Expose OperationTimeout time.Duration // TargetFSType is the file system type of the target volume TargetFSType string } // GenericRestoreCleanUpParam define the input param for Generic Restore CleanUp type GenericRestoreCleanUpParam struct { Snapshot *velerov2alpha1api.CSISnapshotSpec } // GenericRestoreExposer is the interfaces for a generic restore exposer type GenericRestoreExposer interface { // Expose starts the process to a restore expose, the expose process may take long time Expose(context.Context, corev1api.ObjectReference, GenericRestoreExposeParam) error // GetExposed polls the status of the expose. // If the expose is accessible by the current caller, it waits the expose ready and returns the expose result. // Otherwise, it returns nil as the expose result without an error. GetExposed(context.Context, corev1api.ObjectReference, client.Client, string, time.Duration) (*ExposeResult, error) // PeekExposed tests the status of the expose. // If the expose is incomplete but not recoverable, it returns an error. // Otherwise, it returns nil immediately. PeekExposed(context.Context, corev1api.ObjectReference) error // DiagnoseExpose generate the diagnostic info when the expose is not finished for a long time. // If it finds any problem, it returns an string about the problem. DiagnoseExpose(context.Context, corev1api.ObjectReference) string // RebindVolume unexposes the restored PV and rebind it to the target PVC RebindVolume(context.Context, corev1api.ObjectReference, GenericRestoreRebindVolumeParam) error // CleanUp cleans up any objects generated during the restore expose CleanUp(context.Context, corev1api.ObjectReference, *GenericRestoreCleanUpParam) } // NewGenericRestoreExposer creates a new instance of generic restore exposer func NewGenericRestoreExposer(kubeClient kubernetes.Interface, ctrlClient client.Client, log logrus.FieldLogger) GenericRestoreExposer { return &genericRestoreExposer{ kubeClient: kubeClient, ctrlClient: ctrlClient, log: log, } } type genericRestoreExposer struct { kubeClient kubernetes.Interface ctrlClient client.Client log logrus.FieldLogger } func (e *genericRestoreExposer) Expose(ctx context.Context, ownerObject corev1api.ObjectReference, param GenericRestoreExposeParam) error { curLog := e.log.WithFields(logrus.Fields{ "owner": ownerObject.Name, "target PVC": param.TargetPVCName, "target PV": param.TargetPVName, "target namespace": param.TargetNamespace, }) curLog.Info("Waiting for target PVC to be consumed") selectedNode, targetPVC, err := kube.WaitPVCConsumed( ctx, e.kubeClient.CoreV1(), param.TargetPVCName, param.TargetNamespace, e.kubeClient.StorageV1(), param.ExposeTimeout, param.RestorePVCConfig.IgnoreDelayBinding, ) if err != nil { return errors.Wrapf(err, "error to wait target PVC consumed, %s/%s", param.TargetNamespace, param.TargetPVCName) } curLog.WithField("target PVC", param.TargetPVCName).WithField("selected node", selectedNode).Info("Target PVC is consumed") if kube.IsPVCBound(targetPVC) { return errors.Errorf("Target PVC %s/%s has already been bound, abort", param.TargetNamespace, param.TargetPVCName) } // Data mover allows the StorageClass name not set for PVC. storageClassName := "" if targetPVC.Spec.StorageClassName != nil { storageClassName = *targetPVC.Spec.StorageClassName } affinity := kube.GetLoadAffinityByStorageClass(param.LoadAffinity, storageClassName, curLog) var cachePVC *corev1api.PersistentVolumeClaim if param.CacheVolume != nil { cacheVolumeSize := getCacheVolumeSize(param.RestoreSize, param.CacheVolume) if cacheVolumeSize > 0 { curLog.Infof("Creating cache PVC with size %v", cacheVolumeSize) if pvc, err := createCachePVC(ctx, e.kubeClient.CoreV1(), ownerObject, param.CacheVolume.StorageClass, cacheVolumeSize, selectedNode); err != nil { return errors.Wrap(err, "error to create cache pvc") } else { cachePVC = pvc } defer func() { if err != nil { kube.DeletePVAndPVCIfAny(ctx, e.kubeClient.CoreV1(), cachePVC.Name, cachePVC.Namespace, 0, curLog) } }() } else { curLog.Infof("Don't need to create cache volume, restore size %v, cache info %v", param.RestoreSize, param.CacheVolume) } } // Copy secrets and configmaps from the target namespace to the Velero namespace if configured. // These are needed by CSI drivers that require namespace-scoped resources for volume // provisioning of the restorePVC (e.g., encrypted volumes with KMS tokens and tenant Vault configs). copyLabels := map[string]string{BackupPVCSecretLabel: string(ownerObject.UID)} for _, secretName := range param.RestorePVCConfig.SecretNames { if copyErr := kube.CopySecret(ctx, e.kubeClient.CoreV1(), secretName, param.TargetNamespace, ownerObject.Namespace, copyLabels, curLog); copyErr != nil { err = errors.Wrapf(copyErr, "error copying secret %s from %s to %s", secretName, param.TargetNamespace, ownerObject.Namespace) return err } } for _, cmName := range param.RestorePVCConfig.ConfigMapNames { if copyErr := kube.CopyConfigMap(ctx, e.kubeClient.CoreV1(), cmName, param.TargetNamespace, ownerObject.Namespace, copyLabels, curLog); copyErr != nil { err = errors.Wrapf(copyErr, "error copying configmap %s from %s to %s", cmName, param.TargetNamespace, ownerObject.Namespace) return err } } defer func() { if err != nil { kube.DeleteSecretsWithLabel(ctx, e.kubeClient.CoreV1(), ownerObject.Namespace, BackupPVCSecretLabel, string(ownerObject.UID), curLog) kube.DeleteConfigMapsWithLabel(ctx, e.kubeClient.CoreV1(), ownerObject.Namespace, BackupPVCSecretLabel, string(ownerObject.UID), curLog) } }() // Get volumeID before creating the restore pod because the existingPV may be deleted when creating the PVC if the volume policy is different var volumeID string if param.CSI != nil && param.CSI.Snapshot != nil { volumeID, err = e.getVolumeID(ctx, param.CSI.Snapshot, param.TargetPVName) if err != nil { // only log the error. Without the volume ID, exposer will fallback to full restore. curLog.Errorf("failed to get volume ID from snapshot %s/%s, err: %v", param.CSI.Snapshot.VolumeSnapshotNamespace, param.CSI.Snapshot.VolumeSnapshot, err) } } curLog.Info("Creating restore PVC") var targetPV *corev1api.PersistentVolume if len(param.TargetPVName) > 0 { targetPV, err = e.kubeClient.CoreV1().PersistentVolumes().Get(ctx, param.TargetPVName, metav1.GetOptions{}) if err != nil { return errors.Wrapf(err, "fail to get the target PV %s", param.TargetPVName) } } restorePVC, err := e.createRestorePVC(ctx, ownerObject, targetPVC, targetPV, selectedNode, param.DataMover, param.ExposeTimeout) if err != nil { return errors.Wrap(err, "error to create restore pvc") } curLog.WithField("pvc name", restorePVC.Name).Info("Restore PVC is created") defer func() { if err != nil { if len(param.TargetPVName) == 0 { kube.DeletePVAndPVCIfAny(ctx, e.kubeClient.CoreV1(), restorePVC.Name, restorePVC.Namespace, 0, curLog) } else { // cannot delete PV if param.TargetPVName is set because the PV is not created by the Expose process. // It's the existing PV used for in-place restore. kube.DeletePVCIfAny(ctx, e.kubeClient.CoreV1(), restorePVC.Name, restorePVC.Namespace, 0, curLog) } } }() var volumeTopology *corev1api.NodeSelector if !e.validateSelectedNode(ctx, selectedNode, param.DataMover, curLog) { curLog.WithField("pvc name", restorePVC.Name).Infof("Getting volume topology and ignore selected node %s", selectedNode) selectedNode = "" var restorePV *corev1api.PersistentVolume restorePV, err = kube.WaitPVCBound(ctx, e.kubeClient.CoreV1(), e.kubeClient.CoreV1(), restorePVC.Name, restorePVC.Namespace, param.ExposeTimeout) if err != nil { return errors.Wrap(err, "error waiting for restore PVC bound") } if tp, err := kube.GetVolumeTopology(ctx, e.kubeClient.CoreV1(), e.kubeClient.StorageV1(), restorePV.Name, restorePV.Spec.StorageClassName); err != nil { return errors.Wrapf(err, "error getting volume topology for PV %s, storage class %s", restorePV.Name, restorePV.Spec.StorageClassName) } else { volumeTopology = tp } } curLog.Info("Creating restore pod") var csiSnapshotMetadataServiceConfigs *velerotypes.CSISnapshotMetadataService if param.CSI != nil { csiSnapshotMetadataServiceConfigs = param.CSI.SnapshotMetadataServiceConfigs } restorePod, err := e.createRestorePod( ctx, ownerObject, restorePVC, param.OperationTimeout, param.HostingPodLabels, param.HostingPodAnnotations, param.HostingPodTolerations, selectedNode, param.Resources, param.NodeOS, affinity, param.PriorityClassName, cachePVC, param.TargetNamespace, volumeID, csiSnapshotMetadataServiceConfigs, volumeTopology, ) if err != nil { return errors.Wrapf(err, "error to create restore pod") } curLog.WithField("pod name", restorePod.Name).Info("Restore pod is created") defer func() { if err != nil { kube.DeletePodIfAny(ctx, e.kubeClient.CoreV1(), restorePod.Name, restorePod.Namespace, curLog) } }() return nil } func (e *genericRestoreExposer) GetExposed(ctx context.Context, ownerObject corev1api.ObjectReference, nodeClient client.Client, nodeName string, timeout time.Duration) (*ExposeResult, error) { restorePodName := ownerObject.Name restorePVCName := ownerObject.Name containerName := string(ownerObject.UID) volumeName := string(ownerObject.UID) curLog := e.log.WithFields(logrus.Fields{ "owner": ownerObject.Name, "node": nodeName, }) pod := &corev1api.Pod{} err := nodeClient.Get(ctx, types.NamespacedName{ Namespace: ownerObject.Namespace, Name: restorePodName, }, pod) if err != nil { if apierrors.IsNotFound(err) { curLog.WithField("restore pod", restorePodName).Debug("Restore pod is not running in the current node") return nil, nil } else { return nil, errors.Wrapf(err, "error to get restore pod %s", restorePodName) } } curLog.WithField("pod", pod.Name).Infof("Restore pod is in running state in node %s", pod.Spec.NodeName) _, err = kube.WaitPVCBound(ctx, e.kubeClient.CoreV1(), e.kubeClient.CoreV1(), restorePVCName, ownerObject.Namespace, timeout) if err != nil { return nil, errors.Wrapf(err, "error to wait restore PVC bound, %s", restorePVCName) } curLog.WithField("restore pvc", restorePVCName).Info("Restore 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("restore pod %s doesn't have the expected restore volume", pod.Name) } curLog.WithField("pod", pod.Name).Infof("Restore volume is found in pod at index %v", i) return &ExposeResult{ByPod: ExposeByPod{ HostingPod: pod, HostingContainer: containerName, VolumeName: volumeName, }}, nil } func (e *genericRestoreExposer) PeekExposed(ctx context.Context, ownerObject corev1api.ObjectReference) error { restorePodName := ownerObject.Name curLog := e.log.WithFields(logrus.Fields{ "owner": ownerObject.Name, }) pod, err := e.kubeClient.CoreV1().Pods(ownerObject.Namespace).Get(ctx, restorePodName, metav1.GetOptions{}) if apierrors.IsNotFound(err) { return nil } if err != nil { curLog.WithError(err).Warnf("error to peek restore pod %s", restorePodName) return nil } if podFailed, message := kube.IsPodUnrecoverable(pod, curLog); podFailed { return errors.New(message) } return nil } func (e *genericRestoreExposer) DiagnoseExpose(ctx context.Context, ownerObject corev1api.ObjectReference) string { restorePodName := ownerObject.Name restorePVCName := ownerObject.Name diag := "begin diagnose restore exposer\n" pod, err := e.kubeClient.CoreV1().Pods(ownerObject.Namespace).Get(ctx, restorePodName, metav1.GetOptions{}) if err != nil { pod = nil diag += fmt.Sprintf("error getting restore pod %s, err: %v\n", restorePodName, err) } pvc, err := e.kubeClient.CoreV1().PersistentVolumeClaims(ownerObject.Namespace).Get(ctx, restorePVCName, metav1.GetOptions{}) if err != nil { pvc = nil diag += fmt.Sprintf("error getting restore pvc %s, err: %v\n", restorePVCName, err) } cachePVC, err := e.kubeClient.CoreV1().PersistentVolumeClaims(ownerObject.Namespace).Get(ctx, getCachePVCName(ownerObject), metav1.GetOptions{}) if err != nil { cachePVC = nil if !apierrors.IsNotFound(err) { diag += fmt.Sprintf("error getting cache pvc %s, err: %v\n", getCachePVCName(ownerObject), 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 restore pv %s, err: %v\n", pvc.Spec.VolumeName, err) } else { diag += kube.DiagnosePV(pv) } } } if cachePVC != nil { diag += kube.DiagnosePVC(cachePVC, events) if cachePVC.Spec.VolumeName != "" { if pv, err := e.kubeClient.CoreV1().PersistentVolumes().Get(ctx, cachePVC.Spec.VolumeName, metav1.GetOptions{}); err != nil { diag += fmt.Sprintf("error getting cache pv %s, err: %v\n", cachePVC.Spec.VolumeName, err) } else { diag += kube.DiagnosePV(pv) } } } diag += "end diagnose restore exposer" return diag } func (e *genericRestoreExposer) CleanUp(ctx context.Context, ownerObject corev1api.ObjectReference, param *GenericRestoreCleanUpParam) { restorePodName := ownerObject.Name restorePVCName := ownerObject.Name cachePVCName := getCachePVCName(ownerObject) kube.DeletePodIfAny(ctx, e.kubeClient.CoreV1(), restorePodName, ownerObject.Namespace, e.log) kube.DeletePVAndPVCIfAny(ctx, e.kubeClient.CoreV1(), restorePVCName, ownerObject.Namespace, 0, e.log) kube.DeletePVAndPVCIfAny(ctx, e.kubeClient.CoreV1(), cachePVCName, ownerObject.Namespace, 0, 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) if param.Snapshot != nil { kube.EnsureDeleteVolumeSnapshotIfAny(ctx, e.ctrlClient, param.Snapshot.VolumeSnapshotNamespace, param.Snapshot.VolumeSnapshot, 0, e.log) } } func (e *genericRestoreExposer) RebindVolume(ctx context.Context, ownerObject corev1api.ObjectReference, param GenericRestoreRebindVolumeParam) error { restorePVCName := ownerObject.Name curLog := e.log.WithFields(logrus.Fields{ "owner": ownerObject.Name, "target PVC": param.TargetPVCName, "target namespace": param.TargetNamespace, }) targetPVC, err := e.kubeClient.CoreV1().PersistentVolumeClaims(param.TargetNamespace).Get(ctx, param.TargetPVCName, metav1.GetOptions{}) if err != nil { return errors.Wrapf(err, "error to get target PVC %s/%s", param.TargetNamespace, param.TargetPVCName) } restorePV, err := kube.WaitPVCBound(ctx, e.kubeClient.CoreV1(), e.kubeClient.CoreV1(), restorePVCName, ownerObject.Namespace, param.OperationTimeout) if err != nil { return errors.Wrapf(err, "error to get PV from restore PVC %s", restorePVCName) } if kube.GetVolumeModeByPVC(targetPVC) != kube.GetVolumeModeByPV(restorePV) { return e.rebindVolumeChangeMode(ctx, ownerObject, param, targetPVC, restorePV, curLog) } else { return e.rebindVolumeSameMode(ctx, ownerObject, param, targetPVC, restorePV, curLog) } } func (e *genericRestoreExposer) rebindVolumeChangeMode(ctx context.Context, ownerObject corev1api.ObjectReference, param GenericRestoreRebindVolumeParam, targetPVC *corev1api.PersistentVolumeClaim, restorePV *corev1api.PersistentVolume, curLog logrus.FieldLogger) error { restorePodName := ownerObject.Name restorePVCName := ownerObject.Name orgReclaim := restorePV.Spec.PersistentVolumeReclaimPolicy curLog.WithField("restore PV", restorePV.Name).Info("Restore PV is retrieved") retained, err := kube.SetPVReclaimPolicy(ctx, e.kubeClient.CoreV1(), restorePV, corev1api.PersistentVolumeReclaimRetain) if err != nil { return errors.Wrapf(err, "error to retain PV %s", restorePV.Name) } curLog.WithField("restore PV", restorePV.Name).WithField("retained", (retained != nil)).Info("Restore PV is retained") var rebindPV *corev1api.PersistentVolume defer func() { if retained != nil { curLog.WithField("retained PV", retained.Name).Info("Deleting retained PV on error") kube.DeletePVIfAny(ctx, e.kubeClient.CoreV1(), retained.Name, curLog) } if rebindPV != nil { curLog.WithField("rebind PV", rebindPV.Name).Info("Deleting rebind PV on error") kube.DeletePVIfAny(ctx, e.kubeClient.CoreV1(), rebindPV.Name, curLog) } }() if retained != nil { restorePV = retained } err = kube.EnsureDeletePod(ctx, e.kubeClient.CoreV1(), restorePodName, ownerObject.Namespace, param.OperationTimeout) if err != nil { return errors.Wrapf(err, "error to delete restore pod %s", restorePodName) } err = kube.WaitVolumeDetached(ctx, e.kubeClient.StorageV1(), restorePV.Name, param.OperationTimeout) if err != nil { return errors.Wrapf(err, "error waiting for restore PV %s to detach", restorePV.Name) } curLog.WithField("restore PV", restorePV.Name).Info("Restore PV is detached") err = kube.EnsureDeletePVC(ctx, e.kubeClient.CoreV1(), restorePVCName, ownerObject.Namespace, param.OperationTimeout) if err != nil { return errors.Wrapf(err, "error to delete restore PVC %s", restorePVCName) } curLog.WithField("restore PVC", restorePVCName).Info("Restore PVC is deleted") err = kube.EnsureDeletePV(ctx, e.kubeClient.CoreV1(), restorePV.Name, param.OperationTimeout) if err != nil { return errors.Wrapf(err, "error deleting restore PV %s", restorePV.Name) } curLog.WithField("restore PV", restorePV.Name).Info("Restore PV is deleted") retained = nil rebindPV, err = kube.RebindPV(ctx, e.kubeClient.CoreV1(), uuid.NewString(), restorePV, targetPVC, orgReclaim, param.TargetFSType) if err != nil { return errors.Wrapf(err, "error rebinding PV for target PVC %s", param.TargetPVCName) } curLog.WithField("rebind PV", rebindPV.Name).Info("Rebind PV is created") _, err = kube.RebindPVC(ctx, e.kubeClient.CoreV1(), targetPVC, rebindPV.Name) if err != nil { return errors.Wrapf(err, "error to rebind target PVC %s/%s to %s", targetPVC.Namespace, targetPVC.Name, rebindPV.Name) } curLog.WithField("rebind PV", rebindPV.Name).Info("Target PVC is rebound to rebind PV") _, err = kube.WaitPVBound(ctx, e.kubeClient.CoreV1(), rebindPV.Name, targetPVC.Name, targetPVC.Namespace, param.OperationTimeout) if err != nil { return errors.Wrapf(err, "error to wait rebind PV ready, rebind PV %s", rebindPV.Name) } curLog.WithField("rebind PV", rebindPV.Name).Info("Rebind PV is ready") rebindPV = nil return nil } func (e *genericRestoreExposer) rebindVolumeSameMode(ctx context.Context, ownerObject corev1api.ObjectReference, param GenericRestoreRebindVolumeParam, targetPVC *corev1api.PersistentVolumeClaim, restorePV *corev1api.PersistentVolume, curLog logrus.FieldLogger) error { restorePodName := ownerObject.Name restorePVCName := ownerObject.Name orgReclaim := restorePV.Spec.PersistentVolumeReclaimPolicy curLog.WithField("restore PV", restorePV.Name).Info("Restore PV is retrieved") retained, err := kube.SetPVReclaimPolicy(ctx, e.kubeClient.CoreV1(), restorePV, corev1api.PersistentVolumeReclaimRetain) if err != nil { return errors.Wrapf(err, "error to retain PV %s", restorePV.Name) } curLog.WithField("restore PV", restorePV.Name).WithField("retained", (retained != nil)).Info("Restore PV is retained") defer func() { if retained != nil { curLog.WithField("retained PV", retained.Name).Info("Deleting retained PV on error") kube.DeletePVIfAny(ctx, e.kubeClient.CoreV1(), retained.Name, curLog) } }() if retained != nil { restorePV = retained } err = kube.EnsureDeletePod(ctx, e.kubeClient.CoreV1(), restorePodName, ownerObject.Namespace, param.OperationTimeout) if err != nil { return errors.Wrapf(err, "error to delete restore pod %s", restorePodName) } err = kube.WaitVolumeDetached(ctx, e.kubeClient.StorageV1(), restorePV.Name, param.OperationTimeout) if err != nil { return errors.Wrapf(err, "error waiting for restore PV %s to detach", restorePV.Name) } curLog.WithField("restore PV", restorePV.Name).Info("Restore PV is detached") err = kube.EnsureDeletePVC(ctx, e.kubeClient.CoreV1(), restorePVCName, ownerObject.Namespace, param.OperationTimeout) if err != nil { return errors.Wrapf(err, "error to delete restore PVC %s", restorePVCName) } curLog.WithField("restore PVC", restorePVCName).Info("Restore PVC is deleted") _, err = kube.RebindPVC(ctx, e.kubeClient.CoreV1(), targetPVC, restorePV.Name) if err != nil { return errors.Wrapf(err, "error to rebind target PVC %s/%s to %s", targetPVC.Namespace, targetPVC.Name, restorePV.Name) } curLog.WithField("tartet PVC", fmt.Sprintf("%s/%s", targetPVC.Namespace, targetPVC.Name)).WithField("restore PV", restorePV.Name).Info("Target PVC is rebound to restore PV") var matchLabel map[string]string if targetPVC.Spec.Selector != nil { matchLabel = targetPVC.Spec.Selector.MatchLabels } restorePVName := restorePV.Name restorePV, err = kube.ResetPVBinding(ctx, e.kubeClient.CoreV1(), restorePV, matchLabel, targetPVC) if err != nil { return errors.Wrapf(err, "error to reset binding info for restore PV %s", restorePVName) } curLog.WithField("restore PV", restorePV.Name).Info("Restore PV is rebound") restorePV, err = kube.WaitPVBound(ctx, e.kubeClient.CoreV1(), restorePV.Name, targetPVC.Name, targetPVC.Namespace, param.OperationTimeout) if err != nil { return errors.Wrapf(err, "error to wait restore PV bound, restore PV %s", restorePVName) } curLog.WithField("restore PV", restorePV.Name).Info("Restore PV is ready") retained = nil _, err = kube.SetPVReclaimPolicy(ctx, e.kubeClient.CoreV1(), restorePV, orgReclaim) if err != nil { curLog.WithField("restore PV", restorePV.Name).WithError(err).Warn("Restore PV's reclaim policy is not restored") } else { curLog.WithField("restore PV", restorePV.Name).Info("Restore PV's reclaim policy is restored") } return nil } func (e *genericRestoreExposer) createRestorePod( ctx context.Context, ownerObject corev1api.ObjectReference, targetPVC *corev1api.PersistentVolumeClaim, operationTimeout time.Duration, label map[string]string, annotation map[string]string, toleration []corev1api.Toleration, selectedNode string, resources corev1api.ResourceRequirements, nodeOS string, affinity *kube.LoadAffinity, priorityClassName string, cachePVC *corev1api.PersistentVolumeClaim, volumeSnapshotNamespace string, volumeID string, csiSnapshotMetadataServiceConfigs *velerotypes.CSISnapshotMetadataService, volumeTopology *corev1api.NodeSelector, ) (*corev1api.Pod, error) { restorePodName := ownerObject.Name restorePVCName := ownerObject.Name containerName := string(ownerObject.UID) volumeName := string(ownerObject.UID) nodeSelector := map[string]string{} if selectedNode != "" { affinity = nil nodeSelector[corev1api.LabelHostname] = selectedNode e.log.Infof("Selected node for restore pod. Ignore affinity from the node-agent config.") } if affinity == nil { affinity = &kube.LoadAffinity{} } // The restore pod writes the data through the restore 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, restorePodName) } var gracePeriod int64 volumeMounts, volumeDevices, volumePath := kube.MakePodPVCAttachment(volumeName, targetPVC.Spec.VolumeMode, false) volumes := []corev1api.Volume{{ Name: volumeName, VolumeSource: corev1api.VolumeSource{ PersistentVolumeClaim: &corev1api.PersistentVolumeClaimVolumeSource{ ClaimName: restorePVCName, }, }, }} cacheVolumePath := "" if cachePVC != nil { mnt, _, path := kube.MakePodPVCAttachment(cacheVolumeName, nil, false) volumeMounts = append(volumeMounts, mnt...) volumes = append(volumes, corev1api.Volume{ Name: cacheVolumeName, VolumeSource: corev1api.VolumeSource{ PersistentVolumeClaim: &corev1api.PersistentVolumeClaimVolumeSource{ ClaimName: cachePVC.Name, }, }, }) cacheVolumePath = path } volumeMounts = append(volumeMounts, podInfo.volumeMounts...) volumes = append(volumes, podInfo.volumes...) if label == nil { label = make(map[string]string) } label[podGroupLabel] = podGroupGenericRestore volumeMode := corev1api.PersistentVolumeFilesystem if targetPVC.Spec.VolumeMode != nil { volumeMode = *targetPVC.Spec.VolumeMode } args := []string{ fmt.Sprintf("--volume-path=%s", volumePath), fmt.Sprintf("--volume-mode=%s", volumeMode), fmt.Sprintf("--data-download=%s", ownerObject.Name), fmt.Sprintf("--resource-timeout=%s", operationTimeout.String()), fmt.Sprintf("--cache-volume-path=%s", cacheVolumePath), } if len(volumeID) > 0 { args = append(args, fmt.Sprintf("--vs-namespace=%s", volumeSnapshotNamespace)) args = append(args, fmt.Sprintf("--volume-id=%s", volumeID)) } if csiSnapshotMetadataServiceConfigs != nil && csiSnapshotMetadataServiceConfigs.SAName != "" { args = append(args, fmt.Sprintf("--cbt-sa-name=%s", csiSnapshotMetadataServiceConfigs.SAName)) } args = append(args, podInfo.logFormatArgs...) args = append(args, podInfo.logLevelArgs...) var securityCtx *corev1api.PodSecurityContext 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 = kube.DeduplicateTolerations(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, } podOS.Name = kube.NodeOSLinux affinity.NodeSelector.MatchExpressions = append(affinity.NodeSelector.MatchExpressions, metav1.LabelSelectorRequirement{ Key: kube.NodeOSLabel, Values: []string{kube.NodeOSWindows}, Operator: metav1.LabelSelectorOpNotIn, }) } podAffinity := kube.ToSystemAffinity(affinity, volumeTopology) pod := &corev1api.Pod{ ObjectMeta: metav1.ObjectMeta{ Name: restorePodName, 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: podGroupGenericRestore, }, }, }, }, NodeSelector: nodeSelector, OS: &podOS, Containers: []corev1api.Container{ { Name: containerName, Image: podInfo.image, ImagePullPolicy: corev1api.PullNever, Command: []string{ "/velero", "data-mover", "restore", }, 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, Affinity: podAffinity, ImagePullSecrets: podInfo.imagePullSecrets, }, } return e.kubeClient.CoreV1().Pods(ownerObject.Namespace).Create(ctx, pod, metav1.CreateOptions{}) } func (e *genericRestoreExposer) createRestorePVC(ctx context.Context, ownerObject corev1api.ObjectReference, targetPVC *corev1api.PersistentVolumeClaim, targetPV *corev1api.PersistentVolume, selectedNode string, dataMover string, operationTimeout time.Duration) (*corev1api.PersistentVolumeClaim, error) { restorePVCName := ownerObject.Name pvcObj := &corev1api.PersistentVolumeClaim{ ObjectMeta: metav1.ObjectMeta{ Namespace: ownerObject.Namespace, Name: restorePVCName, Labels: targetPVC.Labels, Annotations: targetPVC.Annotations, OwnerReferences: []metav1.OwnerReference{ { APIVersion: ownerObject.APIVersion, Kind: ownerObject.Kind, Name: ownerObject.Name, UID: ownerObject.UID, Controller: boolptr.True(), }, }, }, Spec: corev1api.PersistentVolumeClaimSpec{ AccessModes: targetPVC.Spec.AccessModes, StorageClassName: targetPVC.Spec.StorageClassName, VolumeMode: targetPVC.Spec.VolumeMode, Resources: targetPVC.Spec.Resources, }, } if selectedNode != "" { if pvcObj.Annotations == nil { pvcObj.Annotations = make(map[string]string) } pvcObj.Annotations[kube.KubeAnnSelectedNode] = selectedNode } if dataMover == datamover.DataMoverTypeVeleroBlock { if pvcObj.Spec.VolumeMode == nil { pvcObj.Spec.VolumeMode = new(corev1api.PersistentVolumeMode) } *pvcObj.Spec.VolumeMode = corev1api.PersistentVolumeBlock } volumeName := "" sameVolumeMode := true if targetPV != nil { volumeName = targetPV.Name sameVolumeMode = kube.GetVolumeModeByPVC(pvcObj) == kube.GetVolumeModeByPV(targetPV) if !sameVolumeMode { volumeName = ownerObject.Name } pvcObj.Spec.VolumeName = volumeName } restorePVC, err := e.kubeClient.CoreV1().PersistentVolumeClaims(pvcObj.Namespace).Create(ctx, pvcObj, metav1.CreateOptions{}) if err != nil { return nil, errors.Wrapf(err, "fail to create the restore PVC %s in namespace %s", pvcObj.Name, pvcObj.Namespace) } defer func() { if err != nil { kube.DeletePVCIfAny(ctx, e.kubeClient.CoreV1(), pvcObj.Name, pvcObj.Namespace, 0, e.log) } }() if targetPV != nil { if !sameVolumeMode { tmpPV := &corev1api.PersistentVolume{ ObjectMeta: metav1.ObjectMeta{ Name: volumeName, }, Spec: *targetPV.Spec.DeepCopy(), } tmpPV.Spec.VolumeMode = restorePVC.Spec.VolumeMode e.log.Infof("the volume mode is different, creating temporary PV %s with volume mode %v", tmpPV.Name, tmpPV.Spec.VolumeMode) tmpPV, err = e.kubeClient.CoreV1().PersistentVolumes().Create(ctx, tmpPV, metav1.CreateOptions{}) if err != nil { return nil, errors.Wrapf(err, "fail to create the temporary PV %s", volumeName) } defer func() { if err != nil { kube.DeletePVIfAny(ctx, e.kubeClient.CoreV1(), tmpPV.Name, e.log) } }() e.log.Infof("deleting the target PV %s", targetPV.Name) if err = e.kubeClient.CoreV1().PersistentVolumes().Delete(ctx, targetPV.Name, metav1.DeleteOptions{}); err != nil { return nil, errors.Wrapf(err, "fail to delete the target PV %s", targetPV.Name) } targetPV = tmpPV } if _, err = kube.ResetPVBinding(ctx, e.kubeClient.CoreV1(), targetPV, nil, restorePVC); err != nil { return nil, errors.Wrapf(err, "fail to reset PV %s binding to restore PVC %s/%s", targetPV.Name, restorePVC.Namespace, restorePVC.Name) } if _, err = kube.WaitPVCBound(ctx, e.kubeClient.CoreV1(), e.kubeClient.CoreV1(), restorePVC.Name, restorePVC.Namespace, operationTimeout); err != nil { return nil, errors.Wrapf(err, "fail to wait restore PVC %s/%s bound", restorePVC.Namespace, restorePVC.Name) } } return restorePVC, nil } func (e *genericRestoreExposer) validateSelectedNode(ctx context.Context, node string, dataMover string, log logrus.FieldLogger) bool { if node == "" { return true } os, err := kube.GetNodeOS(ctx, node, e.kubeClient.CoreV1()) if err != nil { log.WithError(err).Warnf("Unable to get OS for selected node %s", node) return false } if os != kube.NodeOSLinux && os != kube.NodeOSWindows { log.Warnf("Unsupported OS for selected node %s", node) return false } if dataMover == datamover.DataMoverTypeVeleroBlock && os != kube.NodeOSLinux { log.Infof("Block data mover will not use selected node %s because its OS %s is not supported", node, os) return false } return true } func (e *genericRestoreExposer) getVolumeID(ctx context.Context, snapshot *velerov2alpha1api.CSISnapshotSpec, targetPVName string) (string, error) { vs := &snapshotv1api.VolumeSnapshot{} if err := e.ctrlClient.Get(ctx, client.ObjectKey{ Namespace: snapshot.VolumeSnapshotNamespace, Name: snapshot.VolumeSnapshot, }, vs); err != nil { return "", errors.Wrapf(err, "error to get volume snapshot %s/%s", snapshot.VolumeSnapshotNamespace, snapshot.VolumeSnapshot) } vsc, err := csi.GetVSCForVS(ctx, vs, e.ctrlClient) if err != nil { return "", errors.Wrapf(err, "error to get volume snapshot content for volume snapshot %s/%s", vs.Namespace, vs.Name) } var cbtInfo csi.CBTInfo cbtInfo, err = csi.GetCBTInfo(ctx, e.kubeClient, e.log, vs, vsc, targetPVName) if err != nil { return "", errors.Wrap(err, "error to get CBT info") } return cbtInfo.VolumeID, nil }