Skip to content

Commit 31df8cd

Browse files
authored
Merge pull request #545 from zvikorn/issue-#534
Host-assisted cloning runs after PVC is already cloned #534
2 parents 523a24f + d724928 commit 31df8cd

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

manifests/templates/cdi-controller.yaml.in

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ rules:
3434
- apiGroups: [""]
3535
resources: ["secrets"]
3636
verbs: ["get", "list", "watch", "create"]
37+
- apiGroups: ["storage.k8s.io"]
38+
resources: ["storageclasses"]
39+
verbs: ["get"]
3740
- apiGroups: [""]
3841
resources: ["configmaps"]
3942
verbs: ["get", "list", "watch", "create"]

pkg/controller/clone-controller.go

+22
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import (
66
"github.com/golang/glog"
77
"github.com/pkg/errors"
88
"k8s.io/api/core/v1"
9+
storageV1 "k8s.io/api/storage/v1"
910
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
1011
coreinformers "k8s.io/client-go/informers/core/v1"
1112
"k8s.io/client-go/kubernetes"
@@ -230,6 +231,27 @@ func (cc *CloneController) syncPvc(key string) error {
230231
if !checkPVC(pvc, AnnCloneRequest) {
231232
return nil
232233
}
234+
235+
pvcPhase := pvc.Status.Phase
236+
glog.V(3).Infof("PVC phase for PVC \"%s/%s\" is %s", pvc.Namespace, pvc.Name, pvcPhase)
237+
if pvc.Spec.StorageClassName != nil {
238+
storageClassName := *pvc.Spec.StorageClassName
239+
glog.V(3).Infof("storageClassName used by PVC \"%s/%s\" is \"%s\"", pvc.Namespace, pvc.Name, storageClassName)
240+
storageclass, err := cc.clientset.StorageV1().StorageClasses().Get(storageClassName, metav1.GetOptions{})
241+
if err != nil {
242+
return err
243+
}
244+
245+
//Do not schedule the clone pods unless the target PVC is either Bound or Pending/WaitFirstConsumer.
246+
if !(pvcPhase == v1.ClaimBound || (pvcPhase == v1.ClaimPending && *storageclass.VolumeBindingMode == storageV1.VolumeBindingWaitForFirstConsumer)) {
247+
glog.V(3).Infof("PVC \"%s/%s\" is either not bound or is in pending phase and VolumeBindingMode is not VolumeBindingWaitForFirstConsumer."+
248+
" Ignoring this PVC.", pvc.Namespace, pvc.Name)
249+
glog.V(3).Infof("PVC phase is %s", pvcPhase)
250+
glog.V(3).Infof("VolumeBindingMode is %s", *storageclass.VolumeBindingMode)
251+
return nil
252+
}
253+
}
254+
233255
//checking for CloneOf annotation indicating that the clone was already taken care of by the provisioner (smart clone).
234256
if metav1.HasAnnotation(pvc.ObjectMeta, AnnCloneOf) {
235257
glog.V(3).Infof("pvc annotation %q exists indicating cloning completed, skipping pvc \"%s/%s\"\n", AnnCloneOf, pvc.Namespace, pvc.Name)

0 commit comments

Comments
 (0)