2019-05-31 09:34:04 +00:00
|
|
|
package e2e
|
|
|
|
|
|
|
|
import (
|
2019-06-18 07:07:11 +00:00
|
|
|
"fmt"
|
2019-06-14 09:42:48 +00:00
|
|
|
"time"
|
|
|
|
|
2019-05-31 09:34:04 +00:00
|
|
|
. "github.com/onsi/ginkgo" // nolint
|
|
|
|
|
|
|
|
"k8s.io/kubernetes/test/e2e/framework"
|
2019-06-24 07:58:39 +00:00
|
|
|
e2elog "k8s.io/kubernetes/test/e2e/framework/log"
|
2019-05-31 09:34:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
rbdProvisioner = "csi-rbdplugin-provisioner.yaml"
|
|
|
|
rbdProvisionerRBAC = "csi-provisioner-rbac.yaml"
|
|
|
|
rbdNodePlugin = "csi-rbdplugin.yaml"
|
|
|
|
rbdNodePluginRBAC = "csi-nodeplugin-rbac.yaml"
|
|
|
|
rbdConfigMap = "csi-config-map.yaml"
|
2019-06-10 08:00:40 +00:00
|
|
|
rbdDirPath = "../deploy/rbd/kubernetes/"
|
|
|
|
rbdExamplePath = "../examples/rbd/"
|
|
|
|
rbdDeploymentName = "csi-rbdplugin-provisioner"
|
|
|
|
rbdDaemonsetName = "csi-rbdplugin"
|
|
|
|
namespace = "default"
|
2019-05-31 09:34:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func deployRBDPlugin() {
|
|
|
|
// deploy provisioner
|
|
|
|
framework.RunKubectlOrDie("create", "-f", rbdDirPath+rbdProvisioner)
|
|
|
|
framework.RunKubectlOrDie("apply", "-f", rbdDirPath+rbdProvisionerRBAC)
|
2019-06-10 06:48:41 +00:00
|
|
|
// deploy nodeplugin
|
2019-05-31 09:34:04 +00:00
|
|
|
framework.RunKubectlOrDie("create", "-f", rbdDirPath+rbdNodePlugin)
|
|
|
|
framework.RunKubectlOrDie("apply", "-f", rbdDirPath+rbdNodePluginRBAC)
|
|
|
|
}
|
|
|
|
|
|
|
|
var _ = Describe("RBD", func() {
|
|
|
|
f := framework.NewDefaultFramework("rbd")
|
2019-06-10 06:48:41 +00:00
|
|
|
// deploy RBD CSI
|
2019-05-31 09:34:04 +00:00
|
|
|
BeforeEach(func() {
|
|
|
|
createRBDPool()
|
2019-06-07 06:52:58 +00:00
|
|
|
createConfigMap(f.ClientSet, f)
|
2019-05-31 09:34:04 +00:00
|
|
|
deployRBDPlugin()
|
|
|
|
createRBDStorageClass(f.ClientSet, f)
|
|
|
|
createRBDSecret(f.ClientSet, f)
|
2019-06-14 09:26:17 +00:00
|
|
|
|
2019-05-31 09:34:04 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
AfterEach(func() {
|
|
|
|
rbdFiles := getFilesinDirectory(rbdDirPath)
|
|
|
|
for _, file := range rbdFiles {
|
|
|
|
res, err := framework.RunKubectl("delete", "-f", rbdDirPath+file.Name())
|
2019-06-18 07:07:11 +00:00
|
|
|
if err != nil {
|
2019-06-24 07:58:39 +00:00
|
|
|
e2elog.Logf("failed to delete resource in %s with err %v", res, err)
|
2019-06-18 07:07:11 +00:00
|
|
|
}
|
2019-05-31 09:34:04 +00:00
|
|
|
}
|
|
|
|
deleteRBDPool()
|
2019-06-14 09:26:17 +00:00
|
|
|
deleteResource(rbdExamplePath + "secret.yaml")
|
|
|
|
deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
deleteResource(rbdExamplePath + "snapshotclass.yaml")
|
2019-05-31 09:34:04 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
Context("Test RBD CSI", func() {
|
|
|
|
It("Test RBD CSI", func() {
|
2019-06-18 09:18:28 +00:00
|
|
|
pvcPath := rbdExamplePath + "pvc.yaml"
|
|
|
|
appPath := rbdExamplePath + "pod.yaml"
|
|
|
|
// rawPvcPath := rbdExamplePath + "raw-block-pvc.yaml"
|
|
|
|
// rawAppPath := rbdExamplePath + "raw-block-pod.yaml"
|
2019-06-18 07:07:11 +00:00
|
|
|
pvcClonePath := rbdExamplePath + "pvc-restore.yaml"
|
|
|
|
appClonePath := rbdExamplePath + "pod-restore.yaml"
|
|
|
|
snapshotPath := rbdExamplePath + "snapshot.yaml"
|
|
|
|
|
2019-06-14 09:42:48 +00:00
|
|
|
By("checking provisioner statefulset is running")
|
|
|
|
timeout := time.Duration(deployTimeout) * time.Minute
|
|
|
|
err := framework.WaitForStatefulSetReplicasReady(rbdDeploymentName, namespace, f.ClientSet, 1*time.Second, timeout)
|
2019-05-31 09:34:04 +00:00
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
By("checking nodeplugin deamonsets is running")
|
2019-06-10 08:00:40 +00:00
|
|
|
err = waitForDaemonSets(rbdDaemonsetName, namespace, f.ClientSet, deployTimeout)
|
2019-05-31 09:34:04 +00:00
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
By("create a PVC and Bind it to an app", func() {
|
|
|
|
validatePVCAndAppBinding(pvcPath, appPath, f)
|
|
|
|
})
|
2019-06-11 12:40:31 +00:00
|
|
|
|
|
|
|
By("create a PVC and Bind it to an app with normal user", func() {
|
|
|
|
validateNormalUserPVCAccess(pvcPath, f)
|
|
|
|
})
|
2019-06-14 09:26:17 +00:00
|
|
|
|
|
|
|
By("create a PVC clone and Bind it to an app", func() {
|
|
|
|
createRBDSnapshotClass(f)
|
|
|
|
pvc, err := loadPVC(pvcPath)
|
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
pvc.Namespace = f.UniqueName
|
2019-06-24 07:58:39 +00:00
|
|
|
e2elog.Logf("The PVC template %+v", pvc)
|
2019-06-14 09:26:17 +00:00
|
|
|
err = createPVCAndvalidatePV(f.ClientSet, pvc, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
2019-06-18 07:07:11 +00:00
|
|
|
// validate created backend rbd images
|
|
|
|
images := listRBDImages(f)
|
|
|
|
if len(images) != 1 {
|
2019-06-24 07:58:39 +00:00
|
|
|
e2elog.Logf("backend image count %d expected image count %d", len(images), 1)
|
2019-06-18 07:07:11 +00:00
|
|
|
Fail("validate backend image failed")
|
|
|
|
}
|
2019-06-14 09:26:17 +00:00
|
|
|
snap := getSnapshot(snapshotPath)
|
|
|
|
snap.Namespace = f.UniqueName
|
|
|
|
snap.Spec.Source.Name = pvc.Name
|
|
|
|
snap.Spec.Source.Kind = "PersistentVolumeClaim"
|
|
|
|
err = createSnapshot(&snap, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
2019-06-18 07:07:11 +00:00
|
|
|
pool := "replicapool"
|
|
|
|
snapList, err := listSnapshots(f, pool, images[0])
|
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
|
|
|
if len(snapList) != 1 {
|
2019-06-24 07:58:39 +00:00
|
|
|
e2elog.Logf("backend snapshot not matching kube snap count,snap count = % kube snap count %d", len(snapList), 1)
|
2019-06-18 07:07:11 +00:00
|
|
|
Fail("validate backend snapshot failed")
|
|
|
|
}
|
2019-06-14 09:26:17 +00:00
|
|
|
|
|
|
|
validatePVCAndAppBinding(pvcClonePath, appClonePath, f)
|
|
|
|
|
|
|
|
err = deleteSnapshot(&snap, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
|
|
|
err = deletePVCAndValidatePV(f.ClientSet, pvc, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-06-18 09:18:28 +00:00
|
|
|
// skipped raw pvc test in travis
|
|
|
|
// By("create a block type PVC and Bind it to an app", func() {
|
|
|
|
// validatePVCAndAppBinding(rawPvcPath, rawAppPath, f)
|
|
|
|
// })
|
2019-06-18 07:07:11 +00:00
|
|
|
|
|
|
|
By("create/delete multiple PVCs and Apps", func() {
|
|
|
|
totalCount := 2
|
|
|
|
pvc, err := loadPVC(pvcPath)
|
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
|
|
|
pvc.Namespace = f.UniqueName
|
|
|
|
|
|
|
|
app, err := loadApp(appPath)
|
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
|
|
|
app.Namespace = f.UniqueName
|
|
|
|
// create pvc and app
|
|
|
|
for i := 0; i < totalCount; i++ {
|
|
|
|
name := fmt.Sprintf("%s%d", f.UniqueName, i)
|
|
|
|
err := createPVCAndApp(name, f, pvc, app)
|
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
|
|
|
images := listRBDImages(f)
|
|
|
|
if len(images) != totalCount {
|
2019-06-24 07:58:39 +00:00
|
|
|
e2elog.Logf("backend image creation not matching pvc count, image count = % pvc count %d", len(images), totalCount)
|
2019-06-18 07:07:11 +00:00
|
|
|
Fail("validate multiple pvc failed")
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete pvc and app
|
|
|
|
for i := 0; i < totalCount; i++ {
|
|
|
|
name := fmt.Sprintf("%s%d", f.UniqueName, i)
|
|
|
|
err := deletePVCAndApp(name, f, pvc, app)
|
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// validate created backend rbd images
|
|
|
|
images = listRBDImages(f)
|
|
|
|
if len(images) > 0 {
|
2019-06-24 07:58:39 +00:00
|
|
|
e2elog.Logf("left out rbd backend images count %d", len(images))
|
2019-06-18 07:07:11 +00:00
|
|
|
Fail("validate multiple pvc failed")
|
|
|
|
}
|
2019-06-14 09:26:17 +00:00
|
|
|
})
|
2019-07-03 10:02:36 +00:00
|
|
|
|
|
|
|
By("check data persist after recreating pod with same pvc", func() {
|
|
|
|
err := checkDataPersist(pvcPath, appPath, f)
|
|
|
|
if err != nil {
|
|
|
|
Fail(err.Error())
|
|
|
|
}
|
|
|
|
})
|
2019-05-31 09:34:04 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
})
|