|
6 | 6 | "github.com/golang/glog"
|
7 | 7 | "github.com/pkg/errors"
|
8 | 8 | "k8s.io/api/core/v1"
|
| 9 | + storageV1 "k8s.io/api/storage/v1" |
9 | 10 | metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
10 | 11 | coreinformers "k8s.io/client-go/informers/core/v1"
|
11 | 12 | "k8s.io/client-go/kubernetes"
|
@@ -230,6 +231,27 @@ func (cc *CloneController) syncPvc(key string) error {
|
230 | 231 | if !checkPVC(pvc, AnnCloneRequest) {
|
231 | 232 | return nil
|
232 | 233 | }
|
| 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 | + |
233 | 255 | //checking for CloneOf annotation indicating that the clone was already taken care of by the provisioner (smart clone).
|
234 | 256 | if metav1.HasAnnotation(pvc.ObjectMeta, AnnCloneOf) {
|
235 | 257 | glog.V(3).Infof("pvc annotation %q exists indicating cloning completed, skipping pvc \"%s/%s\"\n", AnnCloneOf, pvc.Namespace, pvc.Name)
|
|
0 commit comments