mirror of
https://github.com/ceph/ceph-csi.git
synced 2025-06-13 10:33:35 +00:00
Provide option to skip ceph-csi plugin deployment
To test helm charts in CI we need to skip the ceph-csi deployment in E2E, This PR provides an option in E2E to enable/disable cephcsi deployment. Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
This commit is contained in:
committed by
mergify[bot]
parent
0f6bceb662
commit
59fe8c1f2f
@ -16,12 +16,16 @@ import (
|
||||
|
||||
var (
|
||||
deployTimeout int
|
||||
deployCephFS bool
|
||||
deployRBD bool
|
||||
)
|
||||
|
||||
func init() {
|
||||
log.SetOutput(GinkgoWriter)
|
||||
|
||||
flag.IntVar(&deployTimeout, "deploy-timeout", 10, "timeout to wait for created kubernetes resources")
|
||||
flag.BoolVar(&deployCephFS, "deploy-cephfs", true, "deploy cephfs csi driver")
|
||||
flag.BoolVar(&deployRBD, "deploy-rbd", true, "deploy rbd csi driver")
|
||||
|
||||
setDefaultKubeconfig()
|
||||
|
||||
|
Reference in New Issue
Block a user