Implement resizing support for GCE

Fix GCE attacher test
Update bazel files
This commit is contained in:
Hemant Kumar
2017-11-20 13:02:13 -05:00
parent 2f2a643684
commit 7be94c4b06
8 changed files with 141 additions and 4 deletions

View File

@@ -155,6 +155,10 @@ func (pvcr *persistentVolumeClaimResize) checkVolumePlugin(pv *api.PersistentVol
if pv.Spec.Cinder != nil {
return true
}
if pv.Spec.GCEPersistentDisk != nil {
return true
}
return false
}