File tree 1 file changed +2
-1
lines changed
1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ func ProjectSpec(ctx context.Context, inputGetter func() CommonSpecInput) {
45
45
)
46
46
47
47
BeforeEach (func () {
48
+ Skip ("Skipping project spec due to intermittent failures" )
48
49
Expect (ctx ).NotTo (BeNil (), "ctx is required for %s spec" , specName )
49
50
input = inputGetter ()
50
51
Expect (input .E2EConfig ).ToNot (BeNil (), "Invalid argument. input.E2EConfig can't be nil when calling %s spec" , specName )
@@ -62,7 +63,7 @@ func ProjectSpec(ctx context.Context, inputGetter func() CommonSpecInput) {
62
63
input = inputGetter ()
63
64
64
65
projectName = os .Getenv ("CLOUDSTACK_PROJECT_NAME" )
65
- vpcName = fmt .Sprintf ("%s-%s" , os .Getenv ("CLOUDSTACK_PROJECT_NAME" ), input .E2EConfig .GetVariable ("CLOUDSTACK_VPC_NETWORK_NAME " ))
66
+ vpcName = fmt .Sprintf ("%s-%s" , os .Getenv ("CLOUDSTACK_PROJECT_NAME" ), input .E2EConfig .GetVariable ("CLOUDSTACK_VPC_NAME " ))
66
67
csClient := CreateCloudStackClient (ctx , input .BootstrapClusterProxy .GetKubeconfigPath ())
67
68
project , _ , err := csClient .Project .GetProjectByName (projectName )
68
69
if (err != nil ) || (project == nil ) {
You can’t perform that action at this time.
0 commit comments