File tree Expand file tree Collapse file tree 12 files changed +3123
-1
lines changed Expand file tree Collapse file tree 12 files changed +3123
-1
lines changed Original file line number Diff line number Diff line change 73
73
OPTS+=(-p)
74
74
ginkgo -mod=mod " ${OPTS[@]} " --focus=" csi-block-vanilla-parallelized" tests/e2e
75
75
else
76
- ginkgo -mod=mod " ${OPTS[@]} " --focus=" $FOCUS " tests/e2e
76
+ ginkgo -mod=mod " ${OPTS[@]} " --focus=" $FOCUS " -r tests/e2e
77
77
fi
78
78
79
79
# Checking for test status
Original file line number Diff line number Diff line change @@ -160,11 +160,14 @@ const (
160
160
EnsureAccessibilityMModeType = "ensureObjectAccessibility"
161
161
EnvClusterFlavor = "CLUSTER_FLAVOR"
162
162
EnvDiskSizeLarge = "LARGE_DISK_SIZE"
163
+ EnvClusterName = "CLUSTER_NAME"
163
164
EnvCSINamespace = "CSI_NAMESPACE"
164
165
EnvContentLibraryUrl = "CONTENT_LIB_URL"
165
166
EnvContentLibraryUrlSslThumbprint = "CONTENT_LIB_THUMBPRINT"
167
+ EnvDevopsUserName = "DEVOPS_USERNAME"
166
168
EnvEsxHostIP = "ESX_TEST_HOST_IP"
167
169
EnvFileServiceDisabledSharedDatastoreURL = "FILE_SERVICE_DISABLED_SHARED_VSPHERE_DATASTORE_URL"
170
+ EnvFileShareDomainID = "FILE_SHARE_DOMAIN_ID"
168
171
EnvFullSyncWaitTime = "FULL_SYNC_WAIT_TIME"
169
172
EnvGatewayVmIp = "GATEWAY_VM_IP"
170
173
EnvGatewayVmUser = "GATEWAY_VM_USER"
@@ -214,3 +217,10 @@ const (
214
217
EnvAccessMode = "ACCESS_MODE"
215
218
EnvVpToCsi = "VCPTOCSI"
216
219
)
220
+
221
+ // for devops persona testing
222
+ const (
223
+ EnvAdminKubeconfig = "ADMIN_KUBECONFIG"
224
+ EnvDevopsKubeconfig = "DEVOPS_KUBE_CONFIG"
225
+ EnvIsDevopsUser = "IS_DEVOPS_USER"
226
+ )
Original file line number Diff line number Diff line change @@ -69,6 +69,7 @@ const (
69
69
DefaultrqLimit = "20Gi"
70
70
RqStorageType = ".storageclass.storage.k8s.io/requests.storage"
71
71
ResizerContainerName = "csi-resizer"
72
+ ReadWritePermission = "READ_WRITE"
72
73
ScParamDatastoreURL = "DatastoreURL"
73
74
ScParamFsType = "csi.storage.k8s.io/fstype"
74
75
ScParamStoragePolicyID = "storagePolicyID"
@@ -194,3 +195,11 @@ var UsageSuffixes = []string{
194
195
"-vm-usage" ,
195
196
"-latebinding-vm-usage" ,
196
197
}
198
+
199
+ // for devops persona testing
200
+ const (
201
+ RbacApiGroup = "rbac.authorization.k8s.io"
202
+ RoleKeyword = "Role"
203
+ AudienceForSvcAccountName = "https://kubernetes.default.svc.cluster.local"
204
+ ServiceAccountKeyword = "ServiceAccount"
205
+ )
Original file line number Diff line number Diff line change @@ -81,6 +81,7 @@ const (
81
81
Vc90 = "vc90"
82
82
Vc80 = "vc80"
83
83
Vc70 = "vc70"
84
+ Vc901 = "vc901"
84
85
Wldi = "wldi"
85
86
VmServiceVm = "vmServiceVm"
86
87
VcptocsiTest = "vcptocsiTest"
Original file line number Diff line number Diff line change @@ -28,4 +28,6 @@ const (
28
28
HealthRed = "red"
29
29
HealthStatusAccessible = "accessible"
30
30
HealthStatusInAccessible = "inaccessible"
31
+ VsanClusterFileServiceSystem = "vsan-cluster-file-service-system"
32
+ VsanFileServiceType = "VsanFileServiceSystem"
31
33
)
Original file line number Diff line number Diff line change @@ -42,6 +42,7 @@ const (
42
42
EztAllocType = "Fully initialized"
43
43
LztAllocType = "Reserve space"
44
44
Nfs4FSType = "nfs4"
45
+ Nfs4Keyword = "NFSv4.1"
45
46
ObjOrItemNotFoundErr = "The object or item referred to could not be found"
46
47
ProviderPrefix = "vsphere://"
47
48
)
You can’t perform that action at this time.
0 commit comments