forked from migtools/mig-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpvcs.go
255 lines (234 loc) · 8.81 KB
/
pvcs.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
package directvolumemigration
import (
"context"
"path"
"strings"
liberr "github.com/konveyor/controller/pkg/error"
migapi "github.com/konveyor/mig-controller/pkg/apis/migration/v1alpha1"
"github.com/konveyor/mig-controller/pkg/compat"
"github.com/konveyor/mig-controller/pkg/settings"
corev1 "k8s.io/api/core/v1"
k8serror "k8s.io/apimachinery/pkg/api/errors"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/types"
cdiv1 "kubevirt.io/containerized-data-importer-api/pkg/apis/core/v1beta1"
)
func (t *Task) areSourcePVCsUnattached() error {
// This function provides state checking on source PVCs, make sure app is
// quiesced
return nil
}
func (t *Task) createDestinationPVCs() error {
// Get client for destination
destClient, err := t.getDestinationClient()
if err != nil {
return err
}
// Get client for source
srcClient, err := t.getSourceClient()
if err != nil {
return err
}
migration, err := t.Owner.GetMigrationForDVM(t.Client)
if err != nil {
return liberr.Wrap(err)
}
migrationUID := ""
if migration != nil {
migrationUID = string(migration.UID)
}
namespaceVMMap := make(map[string]map[string]string)
for _, pvc := range t.Owner.Spec.PersistentVolumeClaims {
if _, ok := namespaceVMMap[pvc.Namespace]; !ok {
vmMap, err := getVolumeNameToVmMap(srcClient, pvc.Namespace)
if err != nil {
return err
}
namespaceVMMap[pvc.Namespace] = vmMap
}
if _, ok := namespaceVMMap[pvc.Namespace][pvc.Name]; ok {
// VM associated with this PVC, create a datavolume
if err := t.createDestinationDV(srcClient, destClient, pvc, migrationUID); err != nil {
return err
}
} else {
if err := t.createDestinationPVC(srcClient, destClient, pvc, migrationUID); err != nil {
return err
}
}
}
return nil
}
func (t *Task) createDestinationDV(srcClient, destClient compat.Client, pvc migapi.PVCToMigrate, migrationUID string) error {
destPVC, err := t.createDestinationPVCDefinition(srcClient, pvc, migrationUID)
if err != nil {
return err
}
// Remove any cdi related annotations from the PVC
for k := range destPVC.Annotations {
if strings.HasPrefix(k, "cdi.kubevirt.io") {
delete(destPVC.Annotations, k)
}
}
destPVC.Spec.VolumeMode = pvc.TargetVolumeMode
size := destPVC.Spec.Resources.Requests[corev1.ResourceStorage]
// Check if the source PVC is owned by a DataVolume, if so, then we need to get the size
// of that data volume instead of the size of the source PVC.
srcPVC := corev1.PersistentVolumeClaim{}
key := types.NamespacedName{Name: pvc.Name, Namespace: pvc.Namespace}
err = srcClient.Get(context.TODO(), key, &srcPVC)
if err != nil {
return err
}
if srcPVC.OwnerReferences != nil {
for _, owner := range srcPVC.OwnerReferences {
if owner.Kind == "DataVolume" {
dv := cdiv1.DataVolume{}
err = srcClient.Get(context.TODO(), types.NamespacedName{Name: owner.Name, Namespace: pvc.Namespace}, &dv)
if err != nil {
return err
}
// It is not possible for both PVC and Storage to be nil or not nil at the same time
if dv.Spec.PVC != nil {
size = dv.Spec.PVC.Resources.Requests[corev1.ResourceStorage]
} else if dv.Spec.Storage != nil {
// If the size is not specified in the DV storage spec, then use the size from the PVC
// This could potentially lead to the target being larger and a migration back to the source
// can fail because of it being smaller than the target.
if _, ok := dv.Spec.Storage.Resources.Requests[corev1.ResourceStorage]; ok {
size = dv.Spec.Storage.Resources.Requests[corev1.ResourceStorage]
}
// If we have a block PVC, then we need to use the capacity of the PVC instead of the DataVolume request size.
if srcPVC.Spec.VolumeMode != nil && *srcPVC.Spec.VolumeMode == corev1.PersistentVolumeBlock {
size = srcPVC.Status.Capacity[corev1.ResourceStorage]
}
}
}
}
}
destPVC.Spec.Resources.Requests[corev1.ResourceStorage] = size
destPVC.Spec.VolumeMode = pvc.TargetVolumeMode
return createBlankDataVolumeFromPVC(destClient, destPVC)
}
func (t *Task) createDestinationPVC(srcClient, destClient compat.Client, pvc migapi.PVCToMigrate, migrationUID string) error {
destPVC, err := t.createDestinationPVCDefinition(srcClient, pvc, migrationUID)
if err != nil {
return err
}
destPVCCheck := corev1.PersistentVolumeClaim{}
err = destClient.Get(context.TODO(), types.NamespacedName{
Namespace: destPVC.Namespace,
Name: destPVC.Name,
}, &destPVCCheck)
if k8serror.IsNotFound(err) {
err = destClient.Create(context.TODO(), destPVC)
if err != nil {
return err
}
} else if err == nil {
t.Log.Info("PVC already exists on destination", "namespace", pvc.Namespace, "name", pvc.Name)
} else {
return err
}
return nil
}
func (t *Task) createDestinationPVCDefinition(srcClient compat.Client, pvc migapi.PVCToMigrate, migrationUID string) (*corev1.PersistentVolumeClaim, error) {
// Get pvc definition from source cluster
srcPVC := corev1.PersistentVolumeClaim{}
key := types.NamespacedName{Name: pvc.Name, Namespace: pvc.Namespace}
err := srcClient.Get(context.TODO(), key, &srcPVC)
if err != nil {
return nil, err
}
plan := t.PlanResources.MigPlan
matchingMigPlanPV := t.findMatchingPV(plan, pvc.Name, pvc.Namespace)
pvcRequestedCapacity := srcPVC.Spec.Resources.Requests[corev1.ResourceStorage]
newSpec := srcPVC.Spec
newSpec.StorageClassName = &pvc.TargetStorageClass
newSpec.AccessModes = pvc.TargetAccessModes
newSpec.VolumeName = ""
// Remove DataSource and DataSourceRef from PVC spec so any populators or sources are not
// copied over to the destination PVC
newSpec.DataSource = nil
newSpec.DataSourceRef = nil
// Adjusting destination PVC storage size request
// max(requested capacity on source, capacity reported in migplan, proposed capacity in migplan)
if matchingMigPlanPV != nil && settings.Settings.DvmOpts.EnablePVResizing {
maxCapacity := pvcRequestedCapacity
// update maxCapacity if matching PV's capacity is greater than current maxCapacity
if matchingMigPlanPV.Capacity.Cmp(maxCapacity) > 0 {
maxCapacity = matchingMigPlanPV.Capacity
}
// update maxcapacity if matching PV's proposed capacity is greater than current maxCapacity
if matchingMigPlanPV.ProposedCapacity.Cmp(maxCapacity) > 0 {
maxCapacity = matchingMigPlanPV.ProposedCapacity
}
newSpec.Resources.Requests[corev1.ResourceStorage] = maxCapacity
}
//Add src labels and rollback labels
pvcLabels := srcPVC.Labels
if pvcLabels == nil {
pvcLabels = make(map[string]string)
}
// Merge DVM correlation labels into PVC labels for debug view
corrLabels := t.Owner.GetCorrelationLabels()
for k, v := range corrLabels {
pvcLabels[k] = v
}
if migrationUID != "" && t.PlanResources != nil && t.PlanResources.MigPlan != nil {
pvcLabels[migapi.MigMigrationLabel] = migrationUID
pvcLabels[migapi.MigPlanLabel] = string(t.PlanResources.MigPlan.UID)
} else if t.Owner.UID != "" {
pvcLabels[MigratedByDirectVolumeMigration] = string(t.Owner.UID)
}
destNs := pvc.Namespace
if pvc.TargetNamespace != "" {
destNs = pvc.TargetNamespace
}
destName := pvc.Name
if pvc.TargetName != "" {
destName = pvc.TargetName
}
annotations := map[string]string{}
// If a kubevirt disk PVC, copy annotations to destination PVC
if srcPVC.Annotations != nil && srcPVC.Annotations["cdi.kubevirt.io/storage.contentType"] == "kubevirt" {
annotations = srcPVC.Annotations
// Ensure that when we create a matching DataVolume, it will adopt this PVC
annotations["cdi.kubevirt.io/storage.populatedFor"] = destName
// Remove annotations indicating the PVC is bound or provisioned
delete(annotations, "pv.kubernetes.io/bind-completed")
delete(annotations, "volume.beta.kubernetes.io/storage-provisioner")
delete(annotations, "pv.kubernetes.io/bound-by-controller")
delete(annotations, "volume.kubernetes.io/storage-provisioner")
}
// Create pvc on destination with same metadata + spec
destPVC := corev1.PersistentVolumeClaim{
ObjectMeta: metav1.ObjectMeta{
Name: destName,
Namespace: destNs,
Labels: pvcLabels,
Annotations: annotations,
},
Spec: newSpec,
}
t.Log.Info("Creating PVC on destination MigCluster",
"persistentVolumeClaim", path.Join(pvc.Namespace, pvc.Name),
"destPersistentVolumeClaim", path.Join(destNs, pvc.Name),
"pvcStorageClassName", destPVC.Spec.StorageClassName,
"pvcAccessModes", destPVC.Spec.AccessModes,
"pvcRequests", destPVC.Spec.Resources.Requests,
"pvcDataSource", destPVC.Spec.DataSource,
"pvcDataSourceRef", destPVC.Spec.DataSourceRef)
return &destPVC, nil
}
func (t *Task) findMatchingPV(plan *migapi.MigPlan, pvcName string, pvcNamespace string) *migapi.PV {
if plan != nil {
for i := range plan.Spec.PersistentVolumes.List {
planVol := &plan.Spec.PersistentVolumes.List[i]
if planVol.PVC.GetSourceName() == pvcName && planVol.PVC.Namespace == pvcNamespace {
return planVol
}
}
}
return nil
}