create config map for cephfs

add fs name to storageclass in e2e

Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
Madhu Rajanna
2019-06-07 12:22:58 +05:30
parent 864e6baea9
commit a4655f7549
3 changed files with 11 additions and 4 deletions

View File

@ -35,8 +35,9 @@ var _ = Describe("cephfs", func() {
//deploy cephfs CSI
BeforeEach(func() {
createFileSystem(f.ClientSet)
createConfigMap(f.ClientSet, f)
deployCephfsPlugin()
createCephfsStorageClass(f.ClientSet)
createCephfsStorageClass(f.ClientSet, f)
createCephfsSecret(f.ClientSet, f)
})