2019-05-31 09:34:04 +00:00
|
|
|
package e2e
|
|
|
|
|
|
|
|
import (
|
2020-12-09 16:10:43 +00:00
|
|
|
"context"
|
2021-05-31 11:31:02 +00:00
|
|
|
"errors"
|
2019-06-18 07:07:11 +00:00
|
|
|
"fmt"
|
2021-03-30 05:33:01 +00:00
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
2020-02-24 13:19:42 +00:00
|
|
|
"strings"
|
2021-05-31 11:31:02 +00:00
|
|
|
"time"
|
2019-06-14 09:42:48 +00:00
|
|
|
|
2019-05-31 09:34:04 +00:00
|
|
|
. "github.com/onsi/ginkgo" // nolint
|
2020-04-16 14:47:43 +00:00
|
|
|
v1 "k8s.io/api/core/v1"
|
|
|
|
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
|
2021-05-31 11:31:02 +00:00
|
|
|
"k8s.io/apimachinery/pkg/util/wait"
|
2019-07-25 06:49:44 +00:00
|
|
|
clientset "k8s.io/client-go/kubernetes"
|
2019-05-31 09:34:04 +00:00
|
|
|
"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"
|
2020-01-21 08:22:43 +00:00
|
|
|
rbdProvisionerPSP = "csi-provisioner-psp.yaml"
|
2019-05-31 09:34:04 +00:00
|
|
|
rbdNodePlugin = "csi-rbdplugin.yaml"
|
|
|
|
rbdNodePluginRBAC = "csi-nodeplugin-rbac.yaml"
|
2020-01-21 08:22:43 +00:00
|
|
|
rbdNodePluginPSP = "csi-nodeplugin-psp.yaml"
|
2019-07-25 06:49:44 +00:00
|
|
|
configMap = "csi-config-map.yaml"
|
2021-03-30 05:33:01 +00:00
|
|
|
csiDriverObject = "csidriver.yaml"
|
2019-12-19 15:35:58 +00:00
|
|
|
rbdDirPath = "../deploy/rbd/kubernetes/"
|
2019-06-10 08:00:40 +00:00
|
|
|
rbdExamplePath = "../examples/rbd/"
|
|
|
|
rbdDeploymentName = "csi-rbdplugin-provisioner"
|
|
|
|
rbdDaemonsetName = "csi-rbdplugin"
|
2020-05-05 03:53:24 +00:00
|
|
|
defaultRBDPool = "replicapool"
|
2021-07-08 14:59:34 +00:00
|
|
|
// Topology related variables.
|
2020-04-06 20:19:13 +00:00
|
|
|
nodeRegionLabel = "test.failure-domain/region"
|
|
|
|
regionValue = "testregion"
|
|
|
|
nodeZoneLabel = "test.failure-domain/zone"
|
|
|
|
zoneValue = "testzone"
|
|
|
|
nodeCSIRegionLabel = "topology.rbd.csi.ceph.com/region"
|
|
|
|
nodeCSIZoneLabel = "topology.rbd.csi.ceph.com/zone"
|
|
|
|
rbdTopologyPool = "newrbdpool"
|
|
|
|
rbdTopologyDataPool = "replicapool" // NOTE: should be different than rbdTopologyPool for test to be effective
|
2021-03-22 06:57:02 +00:00
|
|
|
|
2021-07-08 14:59:34 +00:00
|
|
|
// yaml files required for deployment.
|
2021-03-22 06:57:02 +00:00
|
|
|
pvcPath = rbdExamplePath + "pvc.yaml"
|
|
|
|
appPath = rbdExamplePath + "pod.yaml"
|
|
|
|
rawPvcPath = rbdExamplePath + "raw-block-pvc.yaml"
|
|
|
|
rawAppPath = rbdExamplePath + "raw-block-pod.yaml"
|
|
|
|
pvcClonePath = rbdExamplePath + "pvc-restore.yaml"
|
|
|
|
pvcSmartClonePath = rbdExamplePath + "pvc-clone.yaml"
|
|
|
|
pvcBlockSmartClonePath = rbdExamplePath + "pvc-block-clone.yaml"
|
|
|
|
appClonePath = rbdExamplePath + "pod-restore.yaml"
|
|
|
|
appSmartClonePath = rbdExamplePath + "pod-clone.yaml"
|
|
|
|
appBlockSmartClonePath = rbdExamplePath + "block-pod-clone.yaml"
|
|
|
|
snapshotPath = rbdExamplePath + "snapshot.yaml"
|
|
|
|
defaultCloneCount = 10
|
2019-05-31 09:34:04 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func deployRBDPlugin() {
|
2019-12-11 08:48:36 +00:00
|
|
|
// delete objects deployed by rook
|
2020-02-26 08:11:05 +00:00
|
|
|
data, err := replaceNamespaceInTemplate(rbdDirPath + rbdProvisionerRBAC)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to read content from %s with error %v", rbdDirPath+rbdProvisionerRBAC, err)
|
2020-02-26 08:11:05 +00:00
|
|
|
}
|
2021-07-28 03:51:18 +00:00
|
|
|
err = retryKubectlInput(cephCSINamespace, kubectlDelete, data, deployTimeout, "--ignore-not-found=true")
|
2020-02-26 08:11:05 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete provisioner rbac %s with error %v", rbdDirPath+rbdProvisionerRBAC, err)
|
2020-02-26 08:11:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
data, err = replaceNamespaceInTemplate(rbdDirPath + rbdNodePluginRBAC)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to read content from %s with error %v", rbdDirPath+rbdNodePluginRBAC, err)
|
2020-02-26 08:11:05 +00:00
|
|
|
}
|
2021-07-28 03:51:18 +00:00
|
|
|
err = retryKubectlInput(cephCSINamespace, kubectlDelete, data, deployTimeout, "--ignore-not-found=true")
|
2020-02-26 08:11:05 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete nodeplugin rbac %s with error %v", rbdDirPath+rbdNodePluginRBAC, err)
|
2020-02-26 08:11:05 +00:00
|
|
|
}
|
|
|
|
|
2021-07-28 03:51:18 +00:00
|
|
|
createORDeleteRbdResources(kubectlCreate)
|
2019-05-31 09:34:04 +00:00
|
|
|
}
|
|
|
|
|
2019-08-07 14:53:39 +00:00
|
|
|
func deleteRBDPlugin() {
|
2021-07-28 03:51:18 +00:00
|
|
|
createORDeleteRbdResources(kubectlDelete)
|
2020-02-26 08:11:05 +00:00
|
|
|
}
|
|
|
|
|
2021-07-28 03:51:18 +00:00
|
|
|
func createORDeleteRbdResources(action kubectlAction) {
|
2021-03-30 05:33:01 +00:00
|
|
|
csiDriver, err := ioutil.ReadFile(rbdDirPath + csiDriverObject)
|
|
|
|
if err != nil {
|
2021-06-10 11:00:26 +00:00
|
|
|
// createORDeleteRbdResources is used for upgrade testing as csidriverObject is
|
2021-03-30 05:33:01 +00:00
|
|
|
// newly added, discarding file not found error.
|
|
|
|
if !os.IsNotExist(err) {
|
|
|
|
e2elog.Failf("failed to read content from %s with error %v", rbdDirPath+csiDriverObject, err)
|
|
|
|
}
|
|
|
|
} else {
|
2021-07-28 03:51:18 +00:00
|
|
|
err = retryKubectlInput(cephCSINamespace, action, string(csiDriver), deployTimeout)
|
2021-03-30 05:33:01 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to %s CSIDriver object with error %v", action, err)
|
|
|
|
}
|
|
|
|
}
|
2020-02-26 08:11:05 +00:00
|
|
|
data, err := replaceNamespaceInTemplate(rbdDirPath + rbdProvisioner)
|
2019-08-07 14:53:39 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to read content from %s with error %v", rbdDirPath+rbdProvisioner, err)
|
2019-08-07 14:53:39 +00:00
|
|
|
}
|
2020-09-20 00:43:26 +00:00
|
|
|
data = oneReplicaDeployYaml(data)
|
2020-12-08 10:42:31 +00:00
|
|
|
data = enableTopologyInTemplate(data)
|
2021-07-28 03:51:18 +00:00
|
|
|
err = retryKubectlInput(cephCSINamespace, action, data, deployTimeout)
|
2019-08-07 14:53:39 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to %s rbd provisioner with error %v", action, err)
|
2019-08-07 14:53:39 +00:00
|
|
|
}
|
2020-02-26 08:11:05 +00:00
|
|
|
|
|
|
|
data, err = replaceNamespaceInTemplate(rbdDirPath + rbdProvisionerRBAC)
|
2020-01-21 08:22:43 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to read content from %s with error %v", rbdDirPath+rbdProvisionerRBAC, err)
|
2020-01-21 08:22:43 +00:00
|
|
|
}
|
2021-07-28 03:51:18 +00:00
|
|
|
err = retryKubectlInput(cephCSINamespace, action, data, deployTimeout)
|
2019-08-07 14:53:39 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to %s provisioner rbac with error %v", action, err)
|
2019-08-07 14:53:39 +00:00
|
|
|
}
|
2020-02-26 08:11:05 +00:00
|
|
|
|
|
|
|
data, err = replaceNamespaceInTemplate(rbdDirPath + rbdProvisionerPSP)
|
2019-08-07 14:53:39 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to read content from %s with error %v", rbdDirPath+rbdProvisionerPSP, err)
|
2019-08-07 14:53:39 +00:00
|
|
|
}
|
2021-07-28 03:51:18 +00:00
|
|
|
err = retryKubectlInput(cephCSINamespace, action, data, deployTimeout)
|
2020-01-21 08:22:43 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to %s provisioner psp with error %v", action, err)
|
2020-02-26 08:11:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
data, err = replaceNamespaceInTemplate(rbdDirPath + rbdNodePlugin)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to read content from %s with error %v", rbdDirPath+rbdNodePlugin, err)
|
2020-02-26 08:11:05 +00:00
|
|
|
}
|
2020-03-27 18:21:18 +00:00
|
|
|
|
|
|
|
domainLabel := nodeRegionLabel + "," + nodeZoneLabel
|
|
|
|
data = addTopologyDomainsToDSYaml(data, domainLabel)
|
2021-07-28 03:51:18 +00:00
|
|
|
err = retryKubectlInput(cephCSINamespace, action, data, deployTimeout)
|
2020-02-26 08:11:05 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to %s nodeplugin with error %v", action, err)
|
2020-02-26 08:11:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
data, err = replaceNamespaceInTemplate(rbdDirPath + rbdNodePluginRBAC)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to read content from %s with error %v", rbdDirPath+rbdNodePluginRBAC, err)
|
2020-02-26 08:11:05 +00:00
|
|
|
}
|
2021-07-28 03:51:18 +00:00
|
|
|
err = retryKubectlInput(cephCSINamespace, action, data, deployTimeout)
|
2020-02-26 08:11:05 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to %s nodeplugin rbac with error %v", action, err)
|
2020-02-26 08:11:05 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
data, err = replaceNamespaceInTemplate(rbdDirPath + rbdNodePluginPSP)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to read content from %s with error %v", rbdDirPath+rbdNodePluginPSP, err)
|
2020-02-26 08:11:05 +00:00
|
|
|
}
|
2021-07-28 03:51:18 +00:00
|
|
|
err = retryKubectlInput(cephCSINamespace, action, data, deployTimeout)
|
2020-02-26 08:11:05 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to %s nodeplugin psp with error %v", action, err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-19 09:09:28 +00:00
|
|
|
func validateRBDImageCount(f *framework.Framework, count int, pool string) {
|
|
|
|
imageList, err := listRBDImages(f, pool)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to list rbd images with error %v", err)
|
|
|
|
}
|
|
|
|
if len(imageList) != count {
|
2021-06-25 12:38:30 +00:00
|
|
|
e2elog.Failf(
|
|
|
|
"backend images not matching kubernetes resource count,image count %d kubernetes resource count %d",
|
|
|
|
len(imageList),
|
|
|
|
count)
|
2020-01-21 08:22:43 +00:00
|
|
|
}
|
2019-08-07 14:53:39 +00:00
|
|
|
}
|
|
|
|
|
2019-05-31 09:34:04 +00:00
|
|
|
var _ = Describe("RBD", func() {
|
|
|
|
f := framework.NewDefaultFramework("rbd")
|
2019-12-18 08:41:20 +00:00
|
|
|
var c clientset.Interface
|
2019-06-10 06:48:41 +00:00
|
|
|
// deploy RBD CSI
|
2019-05-31 09:34:04 +00:00
|
|
|
BeforeEach(func() {
|
2020-07-25 16:40:28 +00:00
|
|
|
if !testRBD || upgradeTesting {
|
2020-07-08 11:46:31 +00:00
|
|
|
Skip("Skipping RBD E2E")
|
|
|
|
}
|
2019-12-18 08:41:20 +00:00
|
|
|
c = f.ClientSet
|
2020-02-25 08:00:23 +00:00
|
|
|
if deployRBD {
|
2020-09-03 09:34:29 +00:00
|
|
|
err := createNodeLabel(f, nodeRegionLabel, regionValue)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create node label with error %v", err)
|
|
|
|
}
|
|
|
|
err = createNodeLabel(f, nodeZoneLabel, zoneValue)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create node label with error %v", err)
|
|
|
|
}
|
2020-02-25 11:45:54 +00:00
|
|
|
if cephCSINamespace != defaultNs {
|
2020-09-03 09:34:29 +00:00
|
|
|
err = createNamespace(c, cephCSINamespace)
|
2020-02-26 08:11:05 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create namespace with error %v", err)
|
2020-02-25 11:45:54 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-25 08:00:23 +00:00
|
|
|
deployRBDPlugin()
|
|
|
|
}
|
2020-09-03 09:34:29 +00:00
|
|
|
err := createConfigMap(rbdDirPath, f.ClientSet, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create configmap with error %v", err)
|
|
|
|
}
|
2021-06-24 10:20:25 +00:00
|
|
|
// Since helm deploys storageclass, skip storageclass creation if
|
|
|
|
// ceph-csi is deployed via helm.
|
|
|
|
if !helmTest {
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2020-09-03 09:34:29 +00:00
|
|
|
}
|
2021-02-22 11:13:40 +00:00
|
|
|
// create rbd provisioner secret
|
|
|
|
key, err := createCephUser(f, keyringRBDProvisionerUsername, rbdProvisionerCaps("", ""))
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
2021-02-22 11:13:40 +00:00
|
|
|
e2elog.Failf("failed to create user %s with error %v", keyringRBDProvisionerUsername, err)
|
|
|
|
}
|
|
|
|
err = createRBDSecret(f, rbdProvisionerSecretName, keyringRBDProvisionerUsername, key)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create provisioner secret with error %v", err)
|
|
|
|
}
|
|
|
|
// create rbd plugin secret
|
|
|
|
key, err = createCephUser(f, keyringRBDNodePluginUsername, rbdNodePluginCaps("", ""))
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create user %s with error %v", keyringRBDNodePluginUsername, err)
|
|
|
|
}
|
|
|
|
err = createRBDSecret(f, rbdNodePluginSecretName, keyringRBDNodePluginUsername, key)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create node secret with error %v", err)
|
2020-09-03 09:34:29 +00:00
|
|
|
}
|
2020-01-29 11:44:45 +00:00
|
|
|
deployVault(f.ClientSet, deployTimeout)
|
2019-05-31 09:34:04 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
AfterEach(func() {
|
2020-07-25 16:40:28 +00:00
|
|
|
if !testRBD || upgradeTesting {
|
2020-07-08 11:46:31 +00:00
|
|
|
Skip("Skipping RBD E2E")
|
|
|
|
}
|
2019-12-18 08:41:20 +00:00
|
|
|
if CurrentGinkgoTestDescription().Failed {
|
2020-04-01 07:20:43 +00:00
|
|
|
// log pods created by helm chart
|
|
|
|
logsCSIPods("app=ceph-csi-rbd", c)
|
2021-06-10 11:00:26 +00:00
|
|
|
// log provisioner
|
2019-12-18 08:41:20 +00:00
|
|
|
logsCSIPods("app=csi-rbdplugin-provisioner", c)
|
|
|
|
// log node plugin
|
|
|
|
logsCSIPods("app=csi-rbdplugin", c)
|
2020-12-03 11:00:22 +00:00
|
|
|
|
|
|
|
// log all details from the namespace where Ceph-CSI is deployed
|
|
|
|
framework.DumpAllNamespaceInfo(c, cephCSINamespace)
|
2019-12-18 08:41:20 +00:00
|
|
|
}
|
2020-02-25 11:45:54 +00:00
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
err := deleteConfigMap(rbdDirPath)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete configmap with error %v", err)
|
|
|
|
}
|
2021-06-25 12:38:30 +00:00
|
|
|
err = c.CoreV1().
|
|
|
|
Secrets(cephCSINamespace).
|
|
|
|
Delete(context.TODO(), rbdProvisionerSecretName, metav1.DeleteOptions{})
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
2021-02-22 11:13:40 +00:00
|
|
|
e2elog.Failf("failed to delete provisioner secret with error %v", err)
|
|
|
|
}
|
2021-06-25 12:38:30 +00:00
|
|
|
err = c.CoreV1().
|
|
|
|
Secrets(cephCSINamespace).
|
|
|
|
Delete(context.TODO(), rbdNodePluginSecretName, metav1.DeleteOptions{})
|
2021-02-22 11:13:40 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete node secret with error %v", err)
|
2020-09-03 09:34:29 +00:00
|
|
|
}
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2019-08-13 09:40:08 +00:00
|
|
|
// deleteResource(rbdExamplePath + "snapshotclass.yaml")
|
2020-01-29 11:44:45 +00:00
|
|
|
deleteVault()
|
2020-02-25 11:45:54 +00:00
|
|
|
if deployRBD {
|
|
|
|
deleteRBDPlugin()
|
|
|
|
if cephCSINamespace != defaultNs {
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deleteNamespace(c, cephCSINamespace)
|
2020-02-25 11:45:54 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete namespace with error %v", err)
|
2020-02-25 11:45:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deleteNodeLabel(c, nodeRegionLabel)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete node label with error %v", err)
|
|
|
|
}
|
|
|
|
err = deleteNodeLabel(c, nodeZoneLabel)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete node label with error %v", err)
|
|
|
|
}
|
2020-03-27 18:21:18 +00:00
|
|
|
// Remove the CSI labels that get added
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deleteNodeLabel(c, nodeCSIRegionLabel)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete node label with error %v", err)
|
|
|
|
}
|
|
|
|
err = deleteNodeLabel(c, nodeCSIZoneLabel)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete node label with error %v", err)
|
|
|
|
}
|
2019-05-31 09:34:04 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
Context("Test RBD CSI", func() {
|
|
|
|
It("Test RBD CSI", func() {
|
2020-03-27 18:21:18 +00:00
|
|
|
By("checking provisioner deployment is running", func() {
|
|
|
|
err := waitForDeploymentComplete(rbdDeploymentName, cephCSINamespace, f.ClientSet, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("timeout waiting for deployment %s with error %v", rbdDeploymentName, err)
|
2020-03-27 18:21:18 +00:00
|
|
|
}
|
|
|
|
})
|
2019-05-31 09:34:04 +00:00
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
By("checking nodeplugin deamonset pods are running", func() {
|
2020-03-27 18:21:18 +00:00
|
|
|
err := waitForDaemonSets(rbdDaemonsetName, cephCSINamespace, f.ClientSet, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("timeout waiting for daemonset %s with error %v", rbdDaemonsetName, err)
|
2020-03-27 18:21:18 +00:00
|
|
|
}
|
|
|
|
})
|
2019-05-31 09:34:04 +00:00
|
|
|
|
2021-06-24 10:20:25 +00:00
|
|
|
// test only if ceph-csi is deployed via helm
|
|
|
|
if helmTest {
|
|
|
|
By("verify PVC and app binding on helm installation", func() {
|
|
|
|
err := validatePVCAndAppBinding(pvcPath, appPath, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate CephFS pvc and application binding with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
|
|
|
// Deleting the storageclass and secret created by helm
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = deleteResource(rbdExamplePath + "secret.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete secret with error %v", err)
|
|
|
|
}
|
|
|
|
// Re-create the RBD storageclass
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2020-11-26 10:44:22 +00:00
|
|
|
By("create a PVC and validate owner", func() {
|
|
|
|
err := validateImageOwner(pvcPath, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate owner of pvc with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-11-26 10:44:22 +00:00
|
|
|
})
|
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
By("create a PVC and bind it to an app", func() {
|
|
|
|
err := validatePVCAndAppBinding(pvcPath, appPath, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate pvc and application binding with error %v", err)
|
2020-08-17 08:37:19 +00:00
|
|
|
}
|
2020-09-03 09:34:29 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2019-05-31 09:34:04 +00:00
|
|
|
})
|
2019-06-11 12:40:31 +00:00
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
By("create a PVC and bind it to an app with normal user", func() {
|
|
|
|
err := validateNormalUserPVCAccess(pvcPath, f)
|
|
|
|
if err != nil {
|
2020-11-24 11:54:29 +00:00
|
|
|
e2elog.Failf("failed to validate normal user pvc and application binding with error %v", err)
|
2020-08-17 08:37:19 +00:00
|
|
|
}
|
2020-09-03 09:34:29 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2019-06-11 12:40:31 +00:00
|
|
|
})
|
2019-09-19 17:11:32 +00:00
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
By("create a PVC and bind it to an app with ext4 as the FS ", func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-06-25 12:38:30 +00:00
|
|
|
err = createRBDStorageClass(
|
|
|
|
f.ClientSet,
|
|
|
|
f,
|
|
|
|
defaultSCName,
|
|
|
|
nil,
|
|
|
|
map[string]string{"csi.storage.k8s.io/fstype": "ext4"},
|
|
|
|
deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2021-01-21 11:29:25 +00:00
|
|
|
err = validatePVCAndAppBinding(pvcPath, appPath, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate pvc and application binding with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2021-01-21 11:29:25 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2021-01-21 11:29:25 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
By("create a PVC and bind it to an app using rbd-nbd mounter", func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-06-25 12:38:30 +00:00
|
|
|
err = createRBDStorageClass(
|
|
|
|
f.ClientSet,
|
|
|
|
f,
|
|
|
|
defaultSCName,
|
|
|
|
nil,
|
|
|
|
map[string]string{"mounter": "rbd-nbd"},
|
|
|
|
deletePolicy)
|
2021-01-21 11:29:25 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2020-09-03 09:34:29 +00:00
|
|
|
err = validatePVCAndAppBinding(pvcPath, appPath, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate pvc and application binding with error %v", err)
|
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
2020-08-17 08:37:19 +00:00
|
|
|
}
|
2019-09-19 17:11:32 +00:00
|
|
|
})
|
|
|
|
|
2021-05-31 11:31:02 +00:00
|
|
|
By("perform IO on rbd-nbd volume after nodeplugin restart", func() {
|
2021-02-09 13:17:09 +00:00
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
// Storage class with rbd-nbd mounter
|
2021-06-25 12:38:30 +00:00
|
|
|
err = createRBDStorageClass(
|
|
|
|
f.ClientSet,
|
|
|
|
f,
|
|
|
|
defaultSCName,
|
|
|
|
nil,
|
|
|
|
map[string]string{"mounter": "rbd-nbd"},
|
|
|
|
deletePolicy)
|
2021-02-09 13:17:09 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
pvc, err := loadPVC(pvcPath)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to load PVC with error %v", err)
|
|
|
|
}
|
|
|
|
pvc.Namespace = f.UniqueName
|
|
|
|
|
|
|
|
app, err := loadApp(appPath)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to load application with error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
app.Namespace = f.UniqueName
|
|
|
|
label := map[string]string{
|
|
|
|
"app": app.Name,
|
|
|
|
}
|
|
|
|
app.Labels = label
|
|
|
|
app.Spec.Volumes[0].PersistentVolumeClaim.ClaimName = pvc.Name
|
|
|
|
err = createPVCAndApp("", f, pvc, app, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create PVC and application with error %v", err)
|
|
|
|
}
|
|
|
|
|
2021-07-29 11:44:50 +00:00
|
|
|
appOpt := metav1.ListOptions{
|
|
|
|
LabelSelector: fmt.Sprintf("app=%s", app.Name),
|
|
|
|
}
|
|
|
|
// TODO: Remove this once we ensure that rbd-nbd can sync data
|
|
|
|
// from Filesystem layer to backend rbd image as part of its
|
|
|
|
// detach or SIGTERM signal handler
|
|
|
|
_, stdErr, err := execCommandInPod(
|
|
|
|
f,
|
|
|
|
fmt.Sprintf("sync %s", app.Spec.Containers[0].VolumeMounts[0].MountPath),
|
|
|
|
app.Namespace,
|
|
|
|
&appOpt)
|
|
|
|
if err != nil || stdErr != "" {
|
|
|
|
e2elog.Failf("failed to sync, err: %v, stdErr: %v ", err, stdErr)
|
|
|
|
}
|
|
|
|
|
2021-02-09 13:17:09 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 1, defaultRBDPool)
|
2021-02-09 13:17:09 +00:00
|
|
|
|
|
|
|
selector, err := getDaemonSetLabelSelector(f, cephCSINamespace, rbdDaemonsetName)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to get the labels with error %v", err)
|
|
|
|
}
|
|
|
|
// delete rbd nodeplugin pods
|
|
|
|
err = deletePodWithLabel(selector, cephCSINamespace, false)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("fail to delete pod with error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// wait for nodeplugin pods to come up
|
|
|
|
err = waitForDaemonSets(rbdDaemonsetName, cephCSINamespace, f.ClientSet, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("timeout waiting for daemonset pods with error %v", err)
|
|
|
|
}
|
|
|
|
|
2021-02-25 07:23:22 +00:00
|
|
|
opt := metav1.ListOptions{
|
|
|
|
LabelSelector: selector,
|
|
|
|
}
|
|
|
|
uname, stdErr, err := execCommandInContainer(f, "uname -a", cephCSINamespace, "csi-rbdplugin", &opt)
|
|
|
|
if err != nil || stdErr != "" {
|
|
|
|
e2elog.Failf("failed to run uname cmd : %v, stdErr: %v ", err, stdErr)
|
|
|
|
}
|
|
|
|
e2elog.Logf("uname -a: %v", uname)
|
2021-06-25 12:38:30 +00:00
|
|
|
rpmv, stdErr, err := execCommandInContainer(
|
|
|
|
f,
|
|
|
|
"rpm -qa | grep rbd-nbd",
|
|
|
|
cephCSINamespace,
|
|
|
|
"csi-rbdplugin",
|
|
|
|
&opt)
|
2021-02-25 07:23:22 +00:00
|
|
|
if err != nil || stdErr != "" {
|
|
|
|
e2elog.Failf("failed to run rpm -qa cmd : %v, stdErr: %v ", err, stdErr)
|
|
|
|
}
|
|
|
|
e2elog.Logf("rbd-nbd package version: %v", rpmv)
|
|
|
|
|
2021-05-31 11:31:02 +00:00
|
|
|
timeout := time.Duration(deployTimeout) * time.Minute
|
|
|
|
var reason string
|
|
|
|
err = wait.PollImmediate(poll, timeout, func() (bool, error) {
|
|
|
|
var runningAttachCmd string
|
|
|
|
runningAttachCmd, stdErr, err = execCommandInContainer(
|
|
|
|
f,
|
|
|
|
"ps -eo 'cmd' | grep [r]bd-nbd",
|
|
|
|
cephCSINamespace,
|
|
|
|
"csi-rbdplugin",
|
|
|
|
&opt)
|
|
|
|
// if the rbd-nbd process is not running the ps | grep command
|
|
|
|
// will return with exit code 1
|
|
|
|
if err != nil {
|
|
|
|
if strings.Contains(err.Error(), "command terminated with exit code 1") {
|
|
|
|
reason = fmt.Sprintf("rbd-nbd process is not running yet: %v", err)
|
|
|
|
} else if stdErr != "" {
|
|
|
|
reason = fmt.Sprintf("failed to run ps cmd : %v, stdErr: %v", err, stdErr)
|
|
|
|
}
|
|
|
|
e2elog.Logf("%s", reason)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-05-31 11:31:02 +00:00
|
|
|
return false, nil
|
|
|
|
}
|
|
|
|
e2elog.Logf("attach command running after restart, runningAttachCmd: %v", runningAttachCmd)
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2021-05-31 11:31:02 +00:00
|
|
|
return true, nil
|
|
|
|
})
|
2021-02-25 07:23:22 +00:00
|
|
|
|
2021-05-31 11:31:02 +00:00
|
|
|
if errors.Is(err, wait.ErrWaitTimeout) {
|
|
|
|
e2elog.Failf("timed out waiting for the rbd-nbd process: %s", reason)
|
2021-02-25 07:23:22 +00:00
|
|
|
}
|
|
|
|
if err != nil {
|
2021-05-31 11:31:02 +00:00
|
|
|
e2elog.Failf("failed to poll: %v", err)
|
2021-02-25 07:23:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
filePath := app.Spec.Containers[0].VolumeMounts[0].MountPath + "/test"
|
2021-06-25 12:38:30 +00:00
|
|
|
_, stdErr, err = execCommandInPod(
|
|
|
|
f,
|
|
|
|
fmt.Sprintf("echo 'Hello World' > %s", filePath),
|
|
|
|
app.Namespace,
|
|
|
|
&appOpt)
|
2021-02-25 07:23:22 +00:00
|
|
|
if err != nil || stdErr != "" {
|
|
|
|
e2elog.Failf("failed to write IO, err: %v, stdErr: %v ", err, stdErr)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = deletePVCAndApp("", f, pvc, app)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete PVC and application with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2021-02-25 07:23:22 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2021-02-25 07:23:22 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
By("create a PVC and bind it to an app with encrypted RBD volume", func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-06-25 12:38:30 +00:00
|
|
|
err = createRBDStorageClass(
|
|
|
|
f.ClientSet,
|
|
|
|
f,
|
|
|
|
defaultSCName,
|
|
|
|
nil,
|
|
|
|
map[string]string{"encrypted": "true"},
|
|
|
|
deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2021-07-09 11:49:23 +00:00
|
|
|
err = validateEncryptedPVCAndAppBinding(pvcPath, appPath, noKMS, f)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate encrypted pvc with error %v", err)
|
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2021-07-07 10:21:21 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
By("Resize Encrypted Block PVC and check Device size", func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(
|
|
|
|
f.ClientSet,
|
|
|
|
f,
|
|
|
|
defaultSCName,
|
|
|
|
nil,
|
|
|
|
map[string]string{"encrypted": "true"},
|
|
|
|
deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// FileSystem PVC resize
|
|
|
|
err = resizePVCAndValidateSize(pvcPath, appPath, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to resize filesystem PVC with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
|
|
|
|
|
|
|
// Block PVC resize
|
|
|
|
err = resizePVCAndValidateSize(rawPvcPath, rawAppPath, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to resize block PVC with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
|
|
|
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
2020-08-17 08:37:19 +00:00
|
|
|
}
|
2020-01-29 11:44:45 +00:00
|
|
|
})
|
|
|
|
|
2020-12-09 16:10:43 +00:00
|
|
|
By("create a PVC and bind it to an app with encrypted RBD volume with VaultKMS", func() {
|
2020-09-03 09:34:29 +00:00
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2020-01-29 11:44:45 +00:00
|
|
|
scOpts := map[string]string{
|
|
|
|
"encrypted": "true",
|
|
|
|
"encryptionKMSID": "vault-test",
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, scOpts, deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2021-07-09 11:49:23 +00:00
|
|
|
err = validateEncryptedPVCAndAppBinding(pvcPath, appPath, vaultKMS, f)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate encrypted pvc with error %v", err)
|
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
2020-08-17 08:37:19 +00:00
|
|
|
}
|
2019-12-13 11:41:32 +00:00
|
|
|
})
|
|
|
|
|
2020-12-09 16:10:43 +00:00
|
|
|
By("create a PVC and bind it to an app with encrypted RBD volume with VaultTokensKMS", func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
scOpts := map[string]string{
|
|
|
|
"encrypted": "true",
|
|
|
|
"encryptionKMSID": "vault-tokens-test",
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, scOpts, deletePolicy)
|
2020-12-09 16:10:43 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// name(space) of the Tenant
|
|
|
|
tenant := f.UniqueName
|
|
|
|
|
|
|
|
// create the Secret with Vault Token in the Tenants namespace
|
|
|
|
token, err := getSecret(vaultExamplePath + "tenant-token.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to load tenant token from secret: %v", err)
|
|
|
|
}
|
|
|
|
_, err = c.CoreV1().Secrets(tenant).Create(context.TODO(), &token, metav1.CreateOptions{})
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create Secret with tenant token: %v", err)
|
|
|
|
}
|
|
|
|
|
2021-07-09 11:49:23 +00:00
|
|
|
err = validateEncryptedPVCAndAppBinding(pvcPath, appPath, vaultTokensKMS, f)
|
2020-12-09 16:10:43 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate encrypted pvc with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-12-09 16:10:43 +00:00
|
|
|
|
|
|
|
// delete the Secret of the Tenant
|
|
|
|
err = c.CoreV1().Secrets(tenant).Delete(context.TODO(), token.Name, metav1.DeleteOptions{})
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete Secret with tenant token: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2020-12-09 16:10:43 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-07-08 08:33:17 +00:00
|
|
|
By("create a PVC and bind it to an app with encrypted RBD volume with VaultTenantSA KMS", func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass: %v", err)
|
|
|
|
}
|
|
|
|
scOpts := map[string]string{
|
|
|
|
"encrypted": "true",
|
|
|
|
"encryptionKMSID": "vault-tenant-sa-test",
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, scOpts, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = createTenantServiceAccount(f.ClientSet, f.UniqueName)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create ServiceAccount: %v", err)
|
|
|
|
}
|
|
|
|
defer deleteTenantServiceAccount(f.UniqueName)
|
|
|
|
|
|
|
|
err = validateEncryptedPVCAndAppBinding(pvcPath, appPath, vaultTenantSAKMS, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate encrypted pvc: %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass: %v", err)
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass: %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-03-04 09:23:53 +00:00
|
|
|
By("create a PVC and bind it to an app with encrypted RBD volume with SecretsMetadataKMS", func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
scOpts := map[string]string{
|
|
|
|
"encrypted": "true",
|
|
|
|
"encryptionKMSID": "secrets-metadata-test",
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, scOpts, deletePolicy)
|
2021-03-04 09:23:53 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2021-07-09 11:49:23 +00:00
|
|
|
err = validateEncryptedPVCAndAppBinding(pvcPath, appPath, noKMS, f)
|
2021-03-04 09:23:53 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate encrypted pvc with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2021-03-04 09:23:53 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2021-03-04 09:23:53 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-07-05 08:28:33 +00:00
|
|
|
By("test RBD volume encryption with user secrets based SecretsMetadataKMS", func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass: %v", err)
|
|
|
|
}
|
|
|
|
scOpts := map[string]string{
|
|
|
|
"encrypted": "true",
|
|
|
|
"encryptionKMSID": "user-ns-secrets-metadata-test",
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, scOpts, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// user provided namespace where secret will be created
|
|
|
|
namespace := cephCSINamespace
|
|
|
|
|
|
|
|
// create user Secret
|
|
|
|
secret, err := getSecret(vaultExamplePath + "user-secret.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to load user Secret: %v", err)
|
|
|
|
}
|
|
|
|
_, err = c.CoreV1().Secrets(namespace).Create(context.TODO(), &secret, metav1.CreateOptions{})
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create user Secret: %v", err)
|
|
|
|
}
|
|
|
|
|
2021-07-09 11:49:23 +00:00
|
|
|
err = validateEncryptedPVCAndAppBinding(pvcPath, appPath, noKMS, f)
|
2021-07-05 08:28:33 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate encrypted pvc: %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
|
|
|
|
|
|
|
// delete user secret
|
|
|
|
err = c.CoreV1().Secrets(namespace).Delete(context.TODO(), secret.Name, metav1.DeleteOptions{})
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete user Secret: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass: %v", err)
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass: %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
By(
|
|
|
|
"test RBD volume encryption with user secrets based SecretsMetadataKMS with tenant namespace",
|
|
|
|
func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass: %v", err)
|
|
|
|
}
|
|
|
|
scOpts := map[string]string{
|
|
|
|
"encrypted": "true",
|
|
|
|
"encryptionKMSID": "user-secrets-metadata-test",
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, scOpts, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// PVC creation namespace where secret will be created
|
|
|
|
namespace := f.UniqueName
|
|
|
|
|
|
|
|
// create user Secret
|
|
|
|
secret, err := getSecret(vaultExamplePath + "user-secret.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to load user Secret: %v", err)
|
|
|
|
}
|
|
|
|
_, err = c.CoreV1().Secrets(namespace).Create(context.TODO(), &secret, metav1.CreateOptions{})
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create user Secret: %v", err)
|
|
|
|
}
|
|
|
|
|
2021-07-09 11:49:23 +00:00
|
|
|
err = validateEncryptedPVCAndAppBinding(pvcPath, appPath, noKMS, f)
|
2021-07-05 08:28:33 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate encrypted pvc: %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
|
|
|
|
|
|
|
// delete user secret
|
|
|
|
err = c.CoreV1().Secrets(namespace).Delete(context.TODO(), secret.Name, metav1.DeleteOptions{})
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete user Secret: %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass: %v", err)
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass: %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-06-25 12:38:30 +00:00
|
|
|
By(
|
|
|
|
"create a PVC and Bind it to an app with journaling/exclusive-lock image-features and rbd-nbd mounter",
|
|
|
|
func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(
|
|
|
|
f.ClientSet,
|
|
|
|
f,
|
|
|
|
defaultSCName,
|
|
|
|
nil,
|
|
|
|
map[string]string{"imageFeatures": "layering,journaling,exclusive-lock", "mounter": "rbd-nbd"},
|
|
|
|
deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = validatePVCAndAppBinding(pvcPath, appPath, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate pvc and application binding with error %v", err)
|
|
|
|
}
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
)
|
2021-03-11 06:28:48 +00:00
|
|
|
|
2020-05-15 08:34:59 +00:00
|
|
|
By("create a PVC clone and bind it to an app", func() {
|
2020-04-16 07:34:44 +00:00
|
|
|
// snapshot beta is only supported from v1.17+
|
2020-10-14 07:41:49 +00:00
|
|
|
if k8sVersionGreaterEquals(f.ClientSet, 1, 17) {
|
2021-06-25 12:38:30 +00:00
|
|
|
validatePVCSnapshot(
|
|
|
|
defaultCloneCount,
|
|
|
|
pvcPath,
|
|
|
|
appPath,
|
|
|
|
snapshotPath,
|
|
|
|
pvcClonePath,
|
|
|
|
appClonePath,
|
2021-07-09 11:49:23 +00:00
|
|
|
noKMS,
|
2021-06-25 12:38:30 +00:00
|
|
|
f)
|
2020-04-16 07:09:59 +00:00
|
|
|
}
|
|
|
|
})
|
2019-06-14 09:26:17 +00:00
|
|
|
|
2020-07-08 12:59:38 +00:00
|
|
|
By("create a PVC-PVC clone and bind it to an app", func() {
|
|
|
|
// pvc clone is only supported from v1.16+
|
2020-10-14 07:41:49 +00:00
|
|
|
if k8sVersionGreaterEquals(f.ClientSet, 1, 16) {
|
2021-06-25 12:38:30 +00:00
|
|
|
validatePVCClone(
|
|
|
|
defaultCloneCount,
|
|
|
|
pvcPath,
|
|
|
|
appPath,
|
|
|
|
pvcSmartClonePath,
|
|
|
|
appSmartClonePath,
|
2021-07-09 11:49:23 +00:00
|
|
|
noKMS,
|
2021-06-25 12:38:30 +00:00
|
|
|
noPVCValidation,
|
|
|
|
f)
|
2021-06-07 08:13:14 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
By("create a thick-provisioned PVC-PVC clone and bind it to an app", func() {
|
|
|
|
// pvc clone is only supported from v1.16+
|
|
|
|
if !k8sVersionGreaterEquals(f.ClientSet, 1, 16) {
|
|
|
|
Skip("pvc clone is only supported from v1.16+")
|
|
|
|
}
|
|
|
|
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, map[string]string{
|
2021-07-13 13:09:31 +00:00
|
|
|
"thickProvision": "true",
|
|
|
|
}, deletePolicy)
|
2021-06-07 08:13:14 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
|
2021-07-09 11:49:23 +00:00
|
|
|
validatePVCClone(1, pvcPath, appPath, pvcSmartClonePath, appSmartClonePath, noKMS, isThickPVC, f)
|
2021-06-07 08:13:14 +00:00
|
|
|
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
2021-03-12 15:42:31 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-04-26 13:15:18 +00:00
|
|
|
By("create an encrypted PVC snapshot and restore it for an app with VaultKMS", func() {
|
2021-04-08 15:46:11 +00:00
|
|
|
if !k8sVersionGreaterEquals(f.ClientSet, 1, 16) {
|
|
|
|
Skip("pvc clone is only supported from v1.16+")
|
|
|
|
}
|
|
|
|
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
scOpts := map[string]string{
|
|
|
|
"encrypted": "true",
|
2021-04-26 13:15:18 +00:00
|
|
|
"encryptionKMSID": "vault-test",
|
2021-04-08 15:46:11 +00:00
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, scOpts, deletePolicy)
|
2021-04-08 15:46:11 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
|
2021-07-09 11:49:23 +00:00
|
|
|
validatePVCSnapshot(1, pvcPath, appPath, snapshotPath, pvcClonePath, appClonePath, vaultKMS, f)
|
2021-04-08 15:46:11 +00:00
|
|
|
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2021-04-08 15:46:11 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-03-12 15:42:31 +00:00
|
|
|
By("create an encrypted PVC-PVC clone and bind it to an app", func() {
|
|
|
|
if !k8sVersionGreaterEquals(f.ClientSet, 1, 16) {
|
|
|
|
Skip("pvc clone is only supported from v1.16+")
|
|
|
|
}
|
|
|
|
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
scOpts := map[string]string{
|
|
|
|
"encrypted": "true",
|
|
|
|
"encryptionKMSID": "secrets-metadata-test",
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, scOpts, deletePolicy)
|
2021-03-12 15:42:31 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
|
2021-07-09 11:49:23 +00:00
|
|
|
validatePVCClone(1, pvcPath, appPath, pvcSmartClonePath, appSmartClonePath, secretsMetadataKMS, isEncryptedPVC, f)
|
2021-05-20 08:46:39 +00:00
|
|
|
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
By("create an encrypted PVC-PVC clone and bind it to an app with VaultKMS", func() {
|
|
|
|
if !k8sVersionGreaterEquals(f.ClientSet, 1, 16) {
|
|
|
|
Skip("pvc clone is only supported from v1.16+")
|
|
|
|
}
|
|
|
|
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
scOpts := map[string]string{
|
|
|
|
"encrypted": "true",
|
|
|
|
"encryptionKMSID": "vault-test",
|
|
|
|
}
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, scOpts, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
|
2021-07-09 11:49:23 +00:00
|
|
|
validatePVCClone(1, pvcPath, appPath, pvcSmartClonePath, appSmartClonePath, vaultKMS, isEncryptedPVC, f)
|
2021-03-12 15:42:31 +00:00
|
|
|
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2021-03-12 15:42:31 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
2020-07-08 12:59:38 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
By("create a block type PVC and bind it to an app", func() {
|
|
|
|
err := validatePVCAndAppBinding(rawPvcPath, rawAppPath, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate pvc and application binding with error %v", err)
|
|
|
|
}
|
2019-12-18 08:36:47 +00:00
|
|
|
})
|
2020-10-15 13:54:57 +00:00
|
|
|
By("create a Block mode PVC-PVC clone and bind it to an app", func() {
|
|
|
|
v, err := f.ClientSet.Discovery().ServerVersion()
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to get server version with error %v", err)
|
|
|
|
}
|
|
|
|
// pvc clone is only supported from v1.16+
|
|
|
|
if v.Major > "1" || (v.Major == "1" && v.Minor >= "16") {
|
2021-06-25 12:38:30 +00:00
|
|
|
validatePVCClone(
|
|
|
|
defaultCloneCount,
|
|
|
|
rawPvcPath,
|
|
|
|
rawAppPath,
|
|
|
|
pvcBlockSmartClonePath,
|
|
|
|
appBlockSmartClonePath,
|
2021-07-09 11:49:23 +00:00
|
|
|
noKMS,
|
2021-06-25 12:38:30 +00:00
|
|
|
noPVCValidation,
|
|
|
|
f)
|
2020-10-15 13:54:57 +00:00
|
|
|
}
|
|
|
|
})
|
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 {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load PVC with error %v", err)
|
2019-06-18 07:07:11 +00:00
|
|
|
}
|
|
|
|
pvc.Namespace = f.UniqueName
|
|
|
|
|
|
|
|
app, err := loadApp(appPath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load application with error %v", err)
|
2019-06-18 07:07:11 +00:00
|
|
|
}
|
|
|
|
app.Namespace = f.UniqueName
|
2020-09-03 09:34:29 +00:00
|
|
|
// create PVC and app
|
2019-06-18 07:07:11 +00:00
|
|
|
for i := 0; i < totalCount; i++ {
|
|
|
|
name := fmt.Sprintf("%s%d", f.UniqueName, i)
|
2020-03-27 18:21:18 +00:00
|
|
|
err := createPVCAndApp(name, f, pvc, app, deployTimeout)
|
2019-06-18 07:07:11 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create PVC and application with error %v", err)
|
2019-06-18 07:07:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, totalCount, defaultRBDPool)
|
2020-09-03 09:34:29 +00:00
|
|
|
// delete PVC and app
|
2019-06-18 07:07:11 +00:00
|
|
|
for i := 0; i < totalCount; i++ {
|
|
|
|
name := fmt.Sprintf("%s%d", f.UniqueName, i)
|
|
|
|
err := deletePVCAndApp(name, f, pvc, app)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete PVC and application with error %v", err)
|
2019-06-18 07:07:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2019-06-14 09:26:17 +00:00
|
|
|
})
|
2019-07-03 10:02:36 +00:00
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
By("check data persist after recreating pod", func() {
|
2019-07-03 10:02:36 +00:00
|
|
|
err := checkDataPersist(pvcPath, appPath, f)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to check data persist with error %v", err)
|
2019-07-03 10:02:36 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2019-07-03 10:02:36 +00:00
|
|
|
})
|
2019-09-19 12:19:57 +00:00
|
|
|
|
2019-12-18 10:35:48 +00:00
|
|
|
By("Resize Filesystem PVC and check application directory size", func() {
|
2019-11-27 12:15:49 +00:00
|
|
|
// Resize 0.3.0 is only supported from v1.15+
|
2020-10-14 07:41:49 +00:00
|
|
|
if k8sVersionGreaterEquals(f.ClientSet, 1, 15) {
|
2019-11-27 12:15:49 +00:00
|
|
|
err := resizePVCAndValidateSize(pvcPath, appPath, f)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to resize filesystem PVC %v", err)
|
2019-11-27 12:15:49 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-06-25 12:38:30 +00:00
|
|
|
err = createRBDStorageClass(
|
|
|
|
f.ClientSet,
|
|
|
|
f,
|
|
|
|
defaultSCName,
|
|
|
|
nil,
|
|
|
|
map[string]string{"csi.storage.k8s.io/fstype": "xfs"},
|
|
|
|
deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2019-12-13 10:29:33 +00:00
|
|
|
err = resizePVCAndValidateSize(pvcPath, appPath, f)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to resize filesystem PVC with error %v", err)
|
2019-12-13 10:29:33 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2019-12-13 10:29:33 +00:00
|
|
|
}
|
2019-11-27 12:15:49 +00:00
|
|
|
})
|
|
|
|
|
2019-12-18 10:35:48 +00:00
|
|
|
By("Resize Block PVC and check Device size", func() {
|
|
|
|
// Block PVC resize is supported in kubernetes 1.16+
|
2020-10-14 07:41:49 +00:00
|
|
|
if k8sVersionGreaterEquals(f.ClientSet, 1, 16) {
|
2019-12-18 10:35:48 +00:00
|
|
|
err := resizePVCAndValidateSize(rawPvcPath, rawAppPath, f)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to resize block PVC with error %v", err)
|
2019-12-18 10:35:48 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2019-12-18 10:35:48 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2019-09-19 12:19:57 +00:00
|
|
|
By("Test unmount after nodeplugin restart", func() {
|
|
|
|
pvc, err := loadPVC(pvcPath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load PVC with error %v", err)
|
2019-09-19 12:19:57 +00:00
|
|
|
}
|
|
|
|
pvc.Namespace = f.UniqueName
|
|
|
|
|
|
|
|
app, err := loadApp(appPath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load application with error %v", err)
|
2019-09-19 12:19:57 +00:00
|
|
|
}
|
|
|
|
app.Namespace = f.UniqueName
|
2020-03-27 18:21:18 +00:00
|
|
|
err = createPVCAndApp("", f, pvc, app, deployTimeout)
|
2019-09-19 12:19:57 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create PVC and application with error %v", err)
|
2019-09-19 12:19:57 +00:00
|
|
|
}
|
|
|
|
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 1, defaultRBDPool)
|
2019-09-19 12:19:57 +00:00
|
|
|
// delete rbd nodeplugin pods
|
2020-04-01 07:20:43 +00:00
|
|
|
err = deletePodWithLabel("app=csi-rbdplugin", cephCSINamespace, false)
|
2019-09-19 12:19:57 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("fail to delete pod with error %v", err)
|
2019-09-19 12:19:57 +00:00
|
|
|
}
|
|
|
|
// wait for nodeplugin pods to come up
|
2020-02-25 11:45:54 +00:00
|
|
|
err = waitForDaemonSets(rbdDaemonsetName, cephCSINamespace, f.ClientSet, deployTimeout)
|
2019-09-19 12:19:57 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("timeout waiting for daemonset pods with error %v", err)
|
2019-09-19 12:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = deletePVCAndApp("", f, pvc, app)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete PVC and application with error %v", err)
|
2019-09-19 12:19:57 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2019-09-19 12:19:57 +00:00
|
|
|
})
|
2020-01-31 08:49:11 +00:00
|
|
|
|
2020-02-24 13:19:42 +00:00
|
|
|
By("create PVC in storageClass with volumeNamePrefix", func() {
|
|
|
|
volumeNamePrefix := "foo-bar-"
|
2020-09-03 09:34:29 +00:00
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-06-25 12:38:30 +00:00
|
|
|
err = createRBDStorageClass(
|
|
|
|
f.ClientSet,
|
|
|
|
f,
|
|
|
|
defaultSCName,
|
|
|
|
nil,
|
|
|
|
map[string]string{"volumeNamePrefix": volumeNamePrefix},
|
|
|
|
deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2020-02-24 13:19:42 +00:00
|
|
|
// set up PVC
|
|
|
|
pvc, err := loadPVC(pvcPath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load PVC with error %v", err)
|
2020-02-24 13:19:42 +00:00
|
|
|
}
|
|
|
|
pvc.Namespace = f.UniqueName
|
|
|
|
err = createPVCAndvalidatePV(f.ClientSet, pvc, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create PVC with error %v", err)
|
2020-02-24 13:19:42 +00:00
|
|
|
}
|
|
|
|
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 1, defaultRBDPool)
|
2020-02-24 13:19:42 +00:00
|
|
|
// list RBD images and check if one of them has the same prefix
|
|
|
|
foundIt := false
|
2021-03-19 09:09:28 +00:00
|
|
|
images, err := listRBDImages(f, defaultRBDPool)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to list rbd images with error %v", err)
|
|
|
|
}
|
|
|
|
for _, imgName := range images {
|
2020-02-24 13:19:42 +00:00
|
|
|
fmt.Printf("Checking prefix on %s\n", imgName)
|
|
|
|
if strings.HasPrefix(imgName, volumeNamePrefix) {
|
|
|
|
foundIt = true
|
2021-07-22 05:45:17 +00:00
|
|
|
|
2020-02-24 13:19:42 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// clean up after ourselves
|
|
|
|
err = deletePVCAndValidatePV(f.ClientSet, pvc, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete PVC with error %v", err)
|
2020-02-24 13:19:42 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-02-24 13:19:42 +00:00
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2020-02-24 13:19:42 +00:00
|
|
|
if !foundIt {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("could not find image with prefix %s", volumeNamePrefix)
|
2020-02-24 13:19:42 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-01-20 07:11:21 +00:00
|
|
|
By("validate RBD static FileSystem PVC", func() {
|
2021-06-15 10:08:51 +00:00
|
|
|
err := validateRBDStaticPV(f, appPath, false, false)
|
2020-01-20 07:11:21 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to validate rbd static pv with error %v", err)
|
2020-01-20 07:11:21 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-01-20 07:11:21 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
By("validate RBD static Block PVC", func() {
|
2021-06-15 10:08:51 +00:00
|
|
|
err := validateRBDStaticPV(f, rawAppPath, true, false)
|
2020-01-20 07:11:21 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to validate rbd block pv with error %v", err)
|
2020-01-20 07:11:21 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-01-20 07:11:21 +00:00
|
|
|
})
|
|
|
|
|
2021-06-15 10:08:51 +00:00
|
|
|
By("validate failure of RBD static PVC without imageFeatures parameter", func() {
|
|
|
|
err := validateRBDStaticPV(f, rawAppPath, true, true)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("Validation of static PVC without imageFeatures parameter failed with err %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
|
|
|
})
|
|
|
|
|
2020-03-02 08:31:44 +00:00
|
|
|
By("validate mount options in app pod", func() {
|
|
|
|
mountFlags := []string{"discard"}
|
|
|
|
err := checkMountOptions(pvcPath, appPath, f, mountFlags)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to check mount options with error %v", err)
|
2020-03-02 08:31:44 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-03-02 08:31:44 +00:00
|
|
|
})
|
|
|
|
|
2020-03-27 18:21:18 +00:00
|
|
|
By("creating an app with a PVC, using a topology constrained StorageClass", func() {
|
|
|
|
By("checking node has required CSI topology labels set", func() {
|
2020-09-03 09:34:29 +00:00
|
|
|
err := checkNodeHasLabel(f.ClientSet, nodeCSIRegionLabel, regionValue)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to check node label with error %v", err)
|
|
|
|
}
|
|
|
|
err = checkNodeHasLabel(f.ClientSet, nodeCSIZoneLabel, zoneValue)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to check node label with error %v", err)
|
|
|
|
}
|
2020-03-27 18:21:18 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
By("creating a StorageClass with delayed binding mode and CSI topology parameter")
|
2020-09-03 09:34:29 +00:00
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2020-03-27 18:21:18 +00:00
|
|
|
topologyConstraint := "[{\"poolName\":\"" + rbdTopologyPool + "\",\"domainSegments\":" +
|
|
|
|
"[{\"domainLabel\":\"region\",\"value\":\"" + regionValue + "\"}," +
|
|
|
|
"{\"domainLabel\":\"zone\",\"value\":\"" + zoneValue + "\"}]}]"
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName,
|
2020-03-27 18:21:18 +00:00
|
|
|
map[string]string{"volumeBindingMode": "WaitForFirstConsumer"},
|
2020-10-28 06:08:11 +00:00
|
|
|
map[string]string{"topologyConstrainedPools": topologyConstraint}, deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2020-03-27 18:21:18 +00:00
|
|
|
|
|
|
|
By("creating an app using a PV from the delayed binding mode StorageClass")
|
2020-09-03 09:34:29 +00:00
|
|
|
pvc, app, err := createPVCAndAppBinding(pvcPath, appPath, f, 0)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create PVC and application with error %v", err)
|
|
|
|
}
|
2020-03-27 18:21:18 +00:00
|
|
|
By("ensuring created PV has required node selector values populated")
|
2020-09-03 09:34:29 +00:00
|
|
|
err = checkPVSelectorValuesForPVC(f, pvc)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to check pv selector values with error %v", err)
|
|
|
|
}
|
2020-03-27 18:21:18 +00:00
|
|
|
By("ensuring created PV has its image in the topology specific pool")
|
2020-09-03 09:34:29 +00:00
|
|
|
err = checkPVCImageInPool(f, pvc, rbdTopologyPool)
|
2020-03-27 18:21:18 +00:00
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to check image in pool with error %v", err)
|
2020-03-27 18:21:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
By("ensuring created PV has its image journal in the topology specific pool")
|
|
|
|
err = checkPVCImageJournalInPool(f, pvc, rbdTopologyPool)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to check image journal with error %v", err)
|
2020-03-27 18:21:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
By("ensuring created PV has its CSI journal in the CSI journal specific pool")
|
|
|
|
err = checkPVCCSIJournalInPool(f, pvc, "replicapool")
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to check csi journal in pool with error %v", err)
|
2020-03-27 18:21:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = deletePVCAndApp("", f, pvc, app)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete PVC and application with error %v", err)
|
2020-03-27 18:21:18 +00:00
|
|
|
}
|
2020-04-06 20:19:13 +00:00
|
|
|
|
|
|
|
By("checking if data pool parameter is honored", func() {
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2020-04-06 20:19:13 +00:00
|
|
|
topologyConstraint := "[{\"poolName\":\"" + rbdTopologyPool + "\",\"dataPool\":\"" + rbdTopologyDataPool +
|
|
|
|
"\",\"domainSegments\":" +
|
|
|
|
"[{\"domainLabel\":\"region\",\"value\":\"" + regionValue + "\"}," +
|
|
|
|
"{\"domainLabel\":\"zone\",\"value\":\"" + zoneValue + "\"}]}]"
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName,
|
2020-04-06 20:19:13 +00:00
|
|
|
map[string]string{"volumeBindingMode": "WaitForFirstConsumer"},
|
2020-10-28 06:08:11 +00:00
|
|
|
map[string]string{"topologyConstrainedPools": topologyConstraint}, deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2020-04-06 20:19:13 +00:00
|
|
|
By("creating an app using a PV from the delayed binding mode StorageClass with a data pool")
|
2020-09-03 09:34:29 +00:00
|
|
|
pvc, app, err = createPVCAndAppBinding(pvcPath, appPath, f, 0)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create PVC and application with error %v", err)
|
|
|
|
}
|
2020-04-06 20:19:13 +00:00
|
|
|
|
|
|
|
By("ensuring created PV has its image in the topology specific pool")
|
|
|
|
err = checkPVCImageInPool(f, pvc, rbdTopologyPool)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to check pvc image in pool with error %v", err)
|
2020-04-06 20:19:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
By("ensuring created image has the right data pool parameter set")
|
|
|
|
err = checkPVCDataPoolForImageInPool(f, pvc, rbdTopologyPool, rbdTopologyDataPool)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to check data pool for image with error %v", err)
|
2020-04-06 20:19:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// cleanup and undo changes made by the test
|
|
|
|
err = deletePVCAndApp("", f, pvc, app)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete PVC and application with error %v", err)
|
2020-04-06 20:19:13 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
|
|
|
// cleanup and undo changes made by the test
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2020-03-27 18:21:18 +00:00
|
|
|
})
|
|
|
|
|
2020-05-18 13:07:58 +00:00
|
|
|
// Mount pvc to pod with invalid mount option,expected that
|
|
|
|
// mounting will fail
|
|
|
|
By("Mount pvc to pod with invalid mount option", func() {
|
2020-09-03 09:34:29 +00:00
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-06-25 12:38:30 +00:00
|
|
|
err = createRBDStorageClass(
|
|
|
|
f.ClientSet,
|
|
|
|
f,
|
|
|
|
defaultSCName,
|
|
|
|
map[string]string{rbdMountOptions: "debug,invalidOption"},
|
|
|
|
nil,
|
|
|
|
deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2020-05-18 13:07:58 +00:00
|
|
|
pvc, err := loadPVC(pvcPath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load PVC with error %v", err)
|
2020-05-18 13:07:58 +00:00
|
|
|
}
|
|
|
|
pvc.Namespace = f.UniqueName
|
|
|
|
|
|
|
|
app, err := loadApp(appPath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load application with error %v", err)
|
2020-05-18 13:07:58 +00:00
|
|
|
}
|
|
|
|
app.Namespace = f.UniqueName
|
|
|
|
err = createPVCAndvalidatePV(f.ClientSet, pvc, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create PVC with error %v", err)
|
2020-05-18 13:07:58 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 1, defaultRBDPool)
|
2020-09-03 09:34:29 +00:00
|
|
|
|
2020-07-03 10:03:11 +00:00
|
|
|
// create an app and wait for 1 min for it to go to running state
|
|
|
|
err = createApp(f.ClientSet, app, 1)
|
2020-05-18 13:07:58 +00:00
|
|
|
if err == nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("application should not go to running state due to invalid mount option")
|
2020-05-18 13:07:58 +00:00
|
|
|
}
|
|
|
|
err = deletePVCAndApp("", f, pvc, app)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete PVC and application with error %v", err)
|
2020-05-18 13:07:58 +00:00
|
|
|
}
|
|
|
|
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
2020-08-17 08:37:19 +00:00
|
|
|
}
|
2020-05-18 13:07:58 +00:00
|
|
|
})
|
|
|
|
|
2021-03-22 07:35:15 +00:00
|
|
|
By("create rbd clones in different pool", func() {
|
|
|
|
// snapshot beta is only supported from v1.17+
|
|
|
|
if !k8sVersionGreaterEquals(f.ClientSet, 1, 17) {
|
|
|
|
Skip("pvc restore is only supported from v1.17+")
|
|
|
|
}
|
|
|
|
clonePool := "clone-test"
|
|
|
|
// create pool for clones
|
|
|
|
err := createPool(f, clonePool)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create pool %s with error %v", clonePool, err)
|
|
|
|
}
|
|
|
|
err = createRBDSnapshotClass(f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create snapshotclass with error %v", err)
|
|
|
|
}
|
|
|
|
cloneSC := "clone-storageclass"
|
|
|
|
param := map[string]string{
|
|
|
|
"pool": clonePool,
|
|
|
|
}
|
|
|
|
// create new storageclass with new pool
|
|
|
|
err = createRBDStorageClass(f.ClientSet, f, cloneSC, nil, param, deletePolicy)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = validateCloneInDifferentPool(f, defaultRBDPool, cloneSC, clonePool)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate clones in different pool with error %v", err)
|
|
|
|
}
|
|
|
|
|
2021-07-28 03:51:18 +00:00
|
|
|
err = retryKubectlArgs(
|
|
|
|
cephCSINamespace,
|
|
|
|
kubectlDelete,
|
|
|
|
deployTimeout,
|
|
|
|
"sc",
|
|
|
|
cloneSC,
|
|
|
|
"--ignore-not-found=true")
|
2021-03-22 07:35:15 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass %s with error %v", cloneSC, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = deleteResource(rbdExamplePath + "snapshotclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete snapshotclass with error %v", err)
|
|
|
|
}
|
2021-06-15 05:08:38 +00:00
|
|
|
// validate images in trash
|
|
|
|
err = waitToRemoveImagesFromTrash(f, clonePool, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate rbd images in pool %s trash with error %v", clonePool, err)
|
|
|
|
}
|
|
|
|
err = waitToRemoveImagesFromTrash(f, defaultRBDPool, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate rbd images in pool %s trash with error %v", defaultRBDPool, err)
|
|
|
|
}
|
2021-03-22 07:35:15 +00:00
|
|
|
|
|
|
|
err = deletePool(clonePool, false, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete pool %s with error %v", clonePool, err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-04-16 14:47:43 +00:00
|
|
|
By("create ROX PVC clone and mount it to multiple pods", func() {
|
|
|
|
// snapshot beta is only supported from v1.17+
|
2020-10-14 07:41:49 +00:00
|
|
|
if k8sVersionGreaterEquals(f.ClientSet, 1, 17) {
|
2021-04-08 15:46:11 +00:00
|
|
|
err := createRBDSnapshotClass(f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
err = deleteRBDSnapshotClass()
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete VolumeSnapshotClass: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
// create PVC and bind it to an app
|
2020-04-16 14:47:43 +00:00
|
|
|
pvc, err := loadPVC(pvcPath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load PVC with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pvc.Namespace = f.UniqueName
|
|
|
|
app, err := loadApp(appPath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load application with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
|
|
|
app.Namespace = f.UniqueName
|
|
|
|
err = createPVCAndApp("", f, pvc, app, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create PVC and application with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 1, defaultRBDPool)
|
2020-04-16 14:47:43 +00:00
|
|
|
// delete pod as we should not create snapshot for in-use pvc
|
|
|
|
err = deletePod(app.Name, app.Namespace, f.ClientSet, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete application with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
snap := getSnapshot(snapshotPath)
|
|
|
|
snap.Namespace = f.UniqueName
|
|
|
|
snap.Spec.Source.PersistentVolumeClaimName = &pvc.Name
|
|
|
|
|
|
|
|
err = createSnapshot(&snap, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create snapshot with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
|
|
|
// parent PVC + snapshot
|
|
|
|
totalImages := 2
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, totalImages, defaultRBDPool)
|
2020-04-16 14:47:43 +00:00
|
|
|
pvcClone, err := loadPVC(pvcClonePath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load PVC with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// create clone PVC as ROX
|
|
|
|
pvcClone.Namespace = f.UniqueName
|
|
|
|
pvcClone.Spec.AccessModes = []v1.PersistentVolumeAccessMode{v1.ReadOnlyMany}
|
|
|
|
err = createPVCAndvalidatePV(f.ClientSet, pvcClone, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create PVC with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
|
|
|
// parent pvc+ snapshot + clone
|
|
|
|
totalImages = 3
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, totalImages, defaultRBDPool)
|
2020-09-03 09:34:29 +00:00
|
|
|
|
2020-04-16 14:47:43 +00:00
|
|
|
appClone, err := loadApp(appClonePath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load application with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 10:03:11 +00:00
|
|
|
totalCount := 2
|
2020-04-16 14:47:43 +00:00
|
|
|
appClone.Namespace = f.UniqueName
|
|
|
|
appClone.Spec.Volumes[0].PersistentVolumeClaim.ClaimName = pvcClone.Name
|
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
// create PVC and app
|
2020-04-16 14:47:43 +00:00
|
|
|
for i := 0; i < totalCount; i++ {
|
|
|
|
name := fmt.Sprintf("%s%d", f.UniqueName, i)
|
|
|
|
label := map[string]string{
|
|
|
|
"app": name,
|
|
|
|
}
|
|
|
|
appClone.Labels = label
|
|
|
|
appClone.Name = name
|
|
|
|
err = createApp(f.ClientSet, appClone, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create application with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < totalCount; i++ {
|
|
|
|
name := fmt.Sprintf("%s%d", f.UniqueName, i)
|
|
|
|
opt := metav1.ListOptions{
|
|
|
|
LabelSelector: fmt.Sprintf("app=%s", name),
|
|
|
|
}
|
|
|
|
|
|
|
|
filePath := appClone.Spec.Containers[0].VolumeMounts[0].MountPath + "/test"
|
2021-06-25 12:38:30 +00:00
|
|
|
_, stdErr := execCommandInPodAndAllowFail(
|
|
|
|
f,
|
|
|
|
fmt.Sprintf("echo 'Hello World' > %s", filePath),
|
|
|
|
appClone.Namespace,
|
|
|
|
&opt)
|
2020-04-16 14:47:43 +00:00
|
|
|
readOnlyErr := fmt.Sprintf("cannot create %s: Read-only file system", filePath)
|
|
|
|
if !strings.Contains(stdErr, readOnlyErr) {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf(stdErr)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete app
|
|
|
|
for i := 0; i < totalCount; i++ {
|
|
|
|
name := fmt.Sprintf("%s%d", f.UniqueName, i)
|
|
|
|
appClone.Name = name
|
|
|
|
err = deletePod(appClone.Name, appClone.Namespace, f.ClientSet, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete application with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
|
|
|
}
|
2020-09-03 09:34:29 +00:00
|
|
|
// delete PVC clone
|
2020-04-16 14:47:43 +00:00
|
|
|
err = deletePVCAndValidatePV(f.ClientSet, pvcClone, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete PVC with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
|
|
|
// delete snapshot
|
|
|
|
err = deleteSnapshot(&snap, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete snapshot with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
|
|
|
// delete parent pvc
|
|
|
|
err = deletePVCAndValidatePV(f.ClientSet, pvc, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete PVC with error %v", err)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-04-16 14:47:43 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2021-05-03 11:22:30 +00:00
|
|
|
By("validate PVC mounting if snapshot and parent PVC are deleted", func() {
|
|
|
|
// snapshot beta is only supported from v1.17+
|
|
|
|
if !k8sVersionGreaterEquals(f.ClientSet, 1, 17) {
|
|
|
|
Skip("pvc restore is only supported from v1.17+")
|
|
|
|
}
|
|
|
|
err := createRBDSnapshotClass(f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
err = deleteRBDSnapshotClass()
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete VolumeSnapshotClass: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
// create PVC and bind it to an app
|
|
|
|
pvc, err := loadPVC(pvcPath)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to load PVC with error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
pvc.Namespace = f.UniqueName
|
|
|
|
app, err := loadApp(appPath)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to load application with error %v", err)
|
|
|
|
}
|
|
|
|
app.Namespace = f.UniqueName
|
|
|
|
err = createPVCAndApp("", f, pvc, app, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create PVC and application with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 1, defaultRBDPool)
|
2021-05-03 11:22:30 +00:00
|
|
|
|
|
|
|
snap := getSnapshot(snapshotPath)
|
|
|
|
snap.Namespace = f.UniqueName
|
|
|
|
snap.Spec.Source.PersistentVolumeClaimName = &pvc.Name
|
|
|
|
|
|
|
|
err = createSnapshot(&snap, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create snapshot with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
|
|
|
// parent PVC + snapshot
|
|
|
|
totalImages := 2
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, totalImages, defaultRBDPool)
|
2021-05-03 11:22:30 +00:00
|
|
|
pvcClone, err := loadPVC(pvcClonePath)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to load PVC with error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// delete parent PVC
|
|
|
|
err = deletePVCAndApp("", f, pvc, app)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete PVC and application with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 1, defaultRBDPool)
|
2021-05-03 11:22:30 +00:00
|
|
|
|
|
|
|
// create clone PVC
|
|
|
|
pvcClone.Namespace = f.UniqueName
|
|
|
|
err = createPVCAndvalidatePV(f.ClientSet, pvcClone, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create PVC with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images = snapshot + clone
|
|
|
|
totalImages = 2
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, totalImages, defaultRBDPool)
|
2021-05-03 11:22:30 +00:00
|
|
|
|
|
|
|
// delete snapshot
|
|
|
|
err = deleteSnapshot(&snap, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete snapshot with error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
// validate created backend rbd images = clone
|
|
|
|
totalImages = 1
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, totalImages, defaultRBDPool)
|
2021-05-03 11:22:30 +00:00
|
|
|
|
|
|
|
appClone, err := loadApp(appClonePath)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to load application with error %v", err)
|
|
|
|
}
|
|
|
|
appClone.Namespace = f.UniqueName
|
|
|
|
appClone.Spec.Volumes[0].PersistentVolumeClaim.ClaimName = pvcClone.Name
|
|
|
|
|
|
|
|
// create application
|
|
|
|
err = createApp(f.ClientSet, appClone, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create application with error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = deletePod(appClone.Name, appClone.Namespace, f.ClientSet, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete application with error %v", err)
|
|
|
|
}
|
|
|
|
// delete PVC clone
|
|
|
|
err = deletePVCAndValidatePV(f.ClientSet, pvcClone, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete PVC with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2021-05-03 11:22:30 +00:00
|
|
|
})
|
|
|
|
|
2020-06-02 19:19:57 +00:00
|
|
|
By("ensuring all operations will work within a rados namespace", func() {
|
|
|
|
updateConfigMap := func(radosNS string) {
|
|
|
|
radosNamespace = radosNS
|
2020-09-03 09:34:29 +00:00
|
|
|
err := deleteConfigMap(rbdDirPath)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete configmap with Error: %v", err)
|
|
|
|
}
|
|
|
|
err = createConfigMap(rbdDirPath, f.ClientSet, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create configmap with error %v", err)
|
|
|
|
}
|
|
|
|
err = createRadosNamespace(f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create rados namespace with error %v", err)
|
|
|
|
}
|
2020-06-02 19:19:57 +00:00
|
|
|
// delete csi pods
|
2020-09-03 09:34:29 +00:00
|
|
|
err = deletePodWithLabel("app in (ceph-csi-rbd, csi-rbdplugin, csi-rbdplugin-provisioner)",
|
2020-06-02 19:19:57 +00:00
|
|
|
cephCSINamespace, false)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete pods with labels with error %v", err)
|
2020-06-02 19:19:57 +00:00
|
|
|
}
|
|
|
|
// wait for csi pods to come up
|
|
|
|
err = waitForDaemonSets(rbdDaemonsetName, cephCSINamespace, f.ClientSet, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("timeout waiting for daemonset pods with error %v", err)
|
2020-06-02 19:19:57 +00:00
|
|
|
}
|
|
|
|
err = waitForDeploymentComplete(rbdDeploymentName, cephCSINamespace, f.ClientSet, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("timeout waiting for deployment to be in running state with error %v", err)
|
2020-06-02 19:19:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
updateConfigMap("e2e-ns")
|
2021-02-22 11:13:40 +00:00
|
|
|
// create rbd provisioner secret
|
2021-06-25 12:38:30 +00:00
|
|
|
key, err := createCephUser(
|
|
|
|
f,
|
|
|
|
keyringRBDNamespaceProvisionerUsername,
|
|
|
|
rbdProvisionerCaps(defaultRBDPool, radosNamespace),
|
|
|
|
)
|
2021-02-22 11:13:40 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create user %s with error %v", keyringRBDNamespaceProvisionerUsername, err)
|
|
|
|
}
|
|
|
|
err = createRBDSecret(f, rbdNamespaceProvisionerSecretName, keyringRBDNamespaceProvisionerUsername, key)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create provisioner secret with error %v", err)
|
|
|
|
}
|
|
|
|
// create rbd plugin secret
|
2021-06-25 12:38:30 +00:00
|
|
|
key, err = createCephUser(
|
|
|
|
f,
|
|
|
|
keyringRBDNamespaceNodePluginUsername,
|
|
|
|
rbdNodePluginCaps(defaultRBDPool, radosNamespace))
|
2021-02-22 11:13:40 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create user %s with error %v", keyringRBDNamespaceNodePluginUsername, err)
|
|
|
|
}
|
|
|
|
err = createRBDSecret(f, rbdNamespaceNodePluginSecretName, keyringRBDNamespaceNodePluginUsername, key)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create node secret with error %v", err)
|
|
|
|
}
|
2020-06-02 19:19:57 +00:00
|
|
|
|
2021-02-22 11:13:40 +00:00
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
param := make(map[string]string)
|
|
|
|
// override existing secrets
|
|
|
|
param["csi.storage.k8s.io/provisioner-secret-namespace"] = cephCSINamespace
|
|
|
|
param["csi.storage.k8s.io/provisioner-secret-name"] = rbdProvisionerSecretName
|
|
|
|
param["csi.storage.k8s.io/controller-expand-secret-namespace"] = cephCSINamespace
|
|
|
|
param["csi.storage.k8s.io/controller-expand-secret-name"] = rbdProvisionerSecretName
|
|
|
|
param["csi.storage.k8s.io/node-stage-secret-namespace"] = cephCSINamespace
|
|
|
|
param["csi.storage.k8s.io/node-stage-secret-name"] = rbdNodePluginSecretName
|
|
|
|
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, param, deletePolicy)
|
2021-02-22 11:13:40 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = validateImageOwner(pvcPath, f)
|
2020-11-26 10:44:22 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate owner of pvc with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-11-26 10:44:22 +00:00
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
// Create a PVC and bind it to an app within the namesapce
|
2020-11-26 10:44:22 +00:00
|
|
|
err = validatePVCAndAppBinding(pvcPath, appPath, f)
|
2020-09-03 09:34:29 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate pvc and application binding with error %v", err)
|
|
|
|
}
|
2021-01-02 19:15:56 +00:00
|
|
|
|
2020-06-02 19:19:57 +00:00
|
|
|
// Resize Block PVC and check Device size within the namespace
|
|
|
|
// Block PVC resize is supported in kubernetes 1.16+
|
2020-10-14 07:41:49 +00:00
|
|
|
if k8sVersionGreaterEquals(f.ClientSet, 1, 16) {
|
2020-06-02 19:19:57 +00:00
|
|
|
err = resizePVCAndValidateSize(rawPvcPath, rawAppPath, f)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to resize block PVC with error %v", err)
|
2020-06-02 19:19:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-02 19:15:56 +00:00
|
|
|
// Resize Filesystem PVC and check application directory size
|
|
|
|
// Resize 0.3.0 is only supported from v1.15+
|
|
|
|
if k8sVersionGreaterEquals(f.ClientSet, 1, 15) {
|
2021-02-22 11:13:40 +00:00
|
|
|
err = resizePVCAndValidateSize(pvcPath, appPath, f)
|
2021-01-02 19:15:56 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to resize filesystem PVC %v", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-02 19:19:57 +00:00
|
|
|
// Create a PVC clone and bind it to an app within the namespace
|
|
|
|
// snapshot beta is only supported from v1.17+
|
2020-10-14 07:41:49 +00:00
|
|
|
if k8sVersionGreaterEquals(f.ClientSet, 1, 17) {
|
2021-04-08 15:46:11 +00:00
|
|
|
err = createRBDSnapshotClass(f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
err = deleteRBDSnapshotClass()
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete VolumeSnapshotClass: %v", err)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2021-07-13 13:09:31 +00:00
|
|
|
pvc, pvcErr := loadPVC(pvcPath)
|
|
|
|
if pvcErr != nil {
|
|
|
|
e2elog.Failf("failed to load PVC with error %v", pvcErr)
|
2020-06-02 19:19:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pvc.Namespace = f.UniqueName
|
|
|
|
err = createPVCAndvalidatePV(f.ClientSet, pvc, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create PVC with error %v", err)
|
2020-06-02 19:19:57 +00:00
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 1, defaultRBDPool)
|
2020-09-03 09:34:29 +00:00
|
|
|
|
2020-06-02 19:19:57 +00:00
|
|
|
snap := getSnapshot(snapshotPath)
|
|
|
|
snap.Namespace = f.UniqueName
|
|
|
|
snap.Spec.Source.PersistentVolumeClaimName = &pvc.Name
|
|
|
|
err = createSnapshot(&snap, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create snapshot with error %v", err)
|
2020-06-02 19:19:57 +00:00
|
|
|
}
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 2, defaultRBDPool)
|
2020-06-02 19:19:57 +00:00
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
err = validatePVCAndAppBinding(pvcClonePath, appClonePath, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate pvc and application binding with error %v", err)
|
|
|
|
}
|
2020-06-02 19:19:57 +00:00
|
|
|
err = deleteSnapshot(&snap, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete snapshot with error %v", err)
|
2020-06-02 19:19:57 +00:00
|
|
|
}
|
2020-09-22 05:44:21 +00:00
|
|
|
// as snapshot is deleted the image count should be one
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 1, defaultRBDPool)
|
2020-09-22 05:44:21 +00:00
|
|
|
|
2020-06-02 19:19:57 +00:00
|
|
|
err = deletePVCAndValidatePV(f.ClientSet, pvc, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete PVC with error %v", err)
|
2020-06-02 19:19:57 +00:00
|
|
|
}
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2021-07-27 06:45:09 +00:00
|
|
|
|
|
|
|
err = waitToRemoveImagesFromTrash(f, defaultRBDPool, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate rbd images in pool %s trash with error %v", rbdOptions(defaultRBDPool), err)
|
|
|
|
}
|
2020-06-02 19:19:57 +00:00
|
|
|
}
|
|
|
|
|
2021-02-22 11:13:40 +00:00
|
|
|
// delete RBD provisioner secret
|
|
|
|
err = deleteCephUser(f, keyringRBDNamespaceProvisionerUsername)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete user %s with error %v", keyringRBDNamespaceProvisionerUsername, err)
|
|
|
|
}
|
2021-06-25 12:38:30 +00:00
|
|
|
err = c.CoreV1().
|
|
|
|
Secrets(cephCSINamespace).
|
|
|
|
Delete(context.TODO(), rbdNamespaceProvisionerSecretName, metav1.DeleteOptions{})
|
2021-02-22 11:13:40 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete provisioner secret with error %v", err)
|
|
|
|
}
|
|
|
|
// delete RBD plugin secret
|
|
|
|
err = deleteCephUser(f, keyringRBDNamespaceNodePluginUsername)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete user %s with error %v", keyringRBDNamespaceNodePluginUsername, err)
|
|
|
|
}
|
2021-06-25 12:38:30 +00:00
|
|
|
err = c.CoreV1().
|
|
|
|
Secrets(cephCSINamespace).
|
|
|
|
Delete(context.TODO(), rbdNamespaceNodePluginSecretName, metav1.DeleteOptions{})
|
2021-02-22 11:13:40 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete node secret with error %v", err)
|
|
|
|
}
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2021-02-22 11:13:40 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
2020-06-02 19:19:57 +00:00
|
|
|
updateConfigMap("")
|
|
|
|
})
|
|
|
|
|
2020-05-19 07:46:39 +00:00
|
|
|
By("Mount pvc as readonly in pod", func() {
|
2020-09-03 09:34:29 +00:00
|
|
|
// create PVC and bind it to an app
|
2020-05-19 07:46:39 +00:00
|
|
|
pvc, err := loadPVC(pvcPath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load PVC with error %v", err)
|
2020-05-19 07:46:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pvc.Namespace = f.UniqueName
|
|
|
|
|
|
|
|
app, err := loadApp(appPath)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to load application with error %v", err)
|
2020-05-19 07:46:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
app.Namespace = f.UniqueName
|
|
|
|
label := map[string]string{
|
|
|
|
"app": app.Name,
|
|
|
|
}
|
|
|
|
app.Labels = label
|
|
|
|
app.Spec.Volumes[0].PersistentVolumeClaim.ClaimName = pvc.Name
|
|
|
|
app.Spec.Volumes[0].PersistentVolumeClaim.ReadOnly = true
|
|
|
|
err = createPVCAndApp("", f, pvc, app, deployTimeout)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to create PVC and application with error %v", err)
|
2020-05-19 07:46:39 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 1, defaultRBDPool)
|
2020-05-19 07:46:39 +00:00
|
|
|
|
|
|
|
opt := metav1.ListOptions{
|
|
|
|
LabelSelector: fmt.Sprintf("app=%s", app.Name),
|
|
|
|
}
|
|
|
|
|
|
|
|
filePath := app.Spec.Containers[0].VolumeMounts[0].MountPath + "/test"
|
2021-06-25 12:38:30 +00:00
|
|
|
_, stdErr := execCommandInPodAndAllowFail(
|
|
|
|
f,
|
|
|
|
fmt.Sprintf("echo 'Hello World' > %s", filePath),
|
|
|
|
app.Namespace,
|
|
|
|
&opt)
|
2020-05-19 07:46:39 +00:00
|
|
|
readOnlyErr := fmt.Sprintf("cannot create %s: Read-only file system", filePath)
|
|
|
|
if !strings.Contains(stdErr, readOnlyErr) {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf(stdErr)
|
2020-05-19 07:46:39 +00:00
|
|
|
}
|
|
|
|
|
2020-09-03 09:34:29 +00:00
|
|
|
// delete PVC and app
|
2020-05-19 07:46:39 +00:00
|
|
|
err = deletePVCAndApp("", f, pvc, app)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete PVC and application with error %v", err)
|
2020-05-19 07:46:39 +00:00
|
|
|
}
|
2020-08-17 08:37:19 +00:00
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2020-05-19 07:46:39 +00:00
|
|
|
})
|
|
|
|
|
2021-01-06 09:58:54 +00:00
|
|
|
By("create a thick-provisioned PVC", func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, map[string]string{
|
2021-07-13 13:09:31 +00:00
|
|
|
"thickProvision": "true",
|
|
|
|
}, deletePolicy)
|
2021-01-06 09:58:54 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
pvc, err := loadPVC(rawPvcPath)
|
|
|
|
if err != nil {
|
2021-03-11 08:42:02 +00:00
|
|
|
e2elog.Failf("failed to load PVC with error: %v", err)
|
2021-01-06 09:58:54 +00:00
|
|
|
}
|
|
|
|
|
2021-03-11 08:42:02 +00:00
|
|
|
pvcSizes := []string{
|
|
|
|
// original value from the yaml file (100MB)
|
|
|
|
"100Mi",
|
|
|
|
// half the size (50MB), is not stripe-size roundable
|
|
|
|
"50Mi",
|
2021-01-06 09:58:54 +00:00
|
|
|
}
|
|
|
|
|
2021-03-11 08:42:02 +00:00
|
|
|
for _, pvcSize := range pvcSizes {
|
|
|
|
err = validateThickPVC(f, pvc, pvcSize)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("validating thick-provisioning failed: %v", err)
|
|
|
|
}
|
2021-01-06 09:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2021-01-06 09:58:54 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-09-08 05:23:28 +00:00
|
|
|
By("create a PVC and Bind it to an app for mapped rbd image with options", func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, map[string]string{
|
2020-09-08 05:23:28 +00:00
|
|
|
"mapOptions": "lock_on_read,queue_depth=1024",
|
2021-07-13 13:09:31 +00:00
|
|
|
"unmapOptions": "force",
|
|
|
|
}, deletePolicy)
|
2020-09-08 05:23:28 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = validatePVCAndAppBinding(pvcPath, appPath, f)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate pvc and application binding with error %v", err)
|
|
|
|
}
|
|
|
|
err = deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2020-09-08 05:23:28 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-10-28 07:43:52 +00:00
|
|
|
By("validate the functionality of controller", func() {
|
|
|
|
err := deleteResource(rbdExamplePath + "storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
err = validateController(f, pvcPath, appPath, rbdExamplePath+"storageclass.yaml")
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate controller with error %v", err)
|
|
|
|
}
|
|
|
|
// validate created backend rbd images
|
2021-03-19 09:09:28 +00:00
|
|
|
validateRBDImageCount(f, 0, defaultRBDPool)
|
2021-03-22 05:48:22 +00:00
|
|
|
err = createRBDStorageClass(f.ClientSet, f, defaultSCName, nil, nil, deletePolicy)
|
2020-10-28 07:43:52 +00:00
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to create storageclass with error %v", err)
|
|
|
|
}
|
|
|
|
})
|
2021-06-15 05:08:38 +00:00
|
|
|
|
|
|
|
By("validate stale images in trash", func() {
|
|
|
|
err := waitToRemoveImagesFromTrash(f, defaultRBDPool, deployTimeout)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to validate rbd images in pool %s trash with error %v", defaultRBDPool, err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-01-31 08:49:11 +00:00
|
|
|
// Make sure this should be last testcase in this file, because
|
|
|
|
// it deletes pool
|
2020-09-03 09:34:29 +00:00
|
|
|
By("Create a PVC and delete PVC when backend pool deleted", func() {
|
2020-01-31 08:49:11 +00:00
|
|
|
err := pvcDeleteWhenPoolNotFound(pvcPath, false, f)
|
|
|
|
if err != nil {
|
2020-09-03 09:34:29 +00:00
|
|
|
e2elog.Failf("failed to delete PVC when pool not found with error %v", err)
|
2020-01-31 08:49:11 +00:00
|
|
|
}
|
|
|
|
})
|
2021-02-22 11:13:40 +00:00
|
|
|
// delete RBD provisioner secret
|
|
|
|
err := deleteCephUser(f, keyringRBDProvisionerUsername)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete user %s with error %v", keyringRBDProvisionerUsername, err)
|
|
|
|
}
|
|
|
|
// delete RBD plugin secret
|
|
|
|
err = deleteCephUser(f, keyringRBDNodePluginUsername)
|
|
|
|
if err != nil {
|
|
|
|
e2elog.Failf("failed to delete user %s with error %v", keyringRBDNodePluginUsername, err)
|
|
|
|
}
|
2019-05-31 09:34:04 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|