File tree Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Expand file tree Collapse file tree 3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -203,9 +203,10 @@ test: generate fmt vet setup-envtest $(GOTESTSUM) ## Run tests
203
203
GINKGO_FOCUS ?= Workload cluster creation
204
204
GINKGO_NODES ?= 3
205
205
GINKGO_NOCOLOR ?= false
206
+ GINKGO_TIMEOUT ?= 2h
206
207
E2E_FLAVOR ?= powervs-md-remediation
207
208
JUNIT_FILE ?= junit.e2e_suite.1.xml
208
- GINKGO_ARGS ?= -v --trace --tags=e2e --focus=$(GINKGO_FOCUS ) --nodes=$(GINKGO_NODES ) --no-color=$(GINKGO_NOCOLOR ) --output-dir="$(ARTIFACTS ) " --junit-report="$(JUNIT_FILE ) "
209
+ GINKGO_ARGS ?= -v --trace --tags=e2e --timeout= $( GINKGO_TIMEOUT ) -- focus=$(GINKGO_FOCUS ) --nodes=$(GINKGO_NODES ) --no-color=$(GINKGO_NOCOLOR ) --output-dir="$(ARTIFACTS ) " --junit-report="$(JUNIT_FILE ) "
209
210
ARTIFACTS ?= $(REPO_ROOT ) /_artifacts
210
211
SKIP_CLEANUP ?= false
211
212
SKIP_CREATE_MGMT_CLUSTER ?= false
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ mkdir -p "${ARTIFACTS}/logs/"
36
36
37
37
ARCH=$( uname -m)
38
38
OS=$( uname -s)
39
- IBMCLOUD_CLI_VERSION=${IBMCLOUD_CLI_VERSION:- " 2.13 .0" }
39
+ IBMCLOUD_CLI_VERSION=${IBMCLOUD_CLI_VERSION:- " 2.14 .0" }
40
40
PVSADM_VERSION=${PVSADM_VERSION:- " v0.1.9" }
41
41
E2E_FLAVOR=${E2E_FLAVOR:- }
42
42
REGION=${REGION:- " jp-osa" }
@@ -74,11 +74,12 @@ install_ibmcloud_cli(){
74
74
create_powervs_network_instance (){
75
75
install_ibmcloud_cli
76
76
77
+ ibmcloud config --check-version=false
77
78
# Login to IBM Cloud using the API Key
78
79
ibmcloud login -a cloud.ibm.com -r ${REGION}
79
80
80
81
# Install power-iaas command-line plug-in and target the required service instance
81
- ibmcloud plugin install power-iaas
82
+ ibmcloud plugin install power-iaas -f
82
83
CRN=$( ibmcloud resource service-instance ${IBMPOWERVS_SERVICE_INSTANCE_ID} --output json | jq -r ' .[].crn' )
83
84
ibmcloud pi service-target ${CRN}
84
85
Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ variables:
60
60
intervals :
61
61
default/wait-controllers : ["3m", "10s"]
62
62
default/wait-cluster : ["20m", "10s"]
63
- default/wait-control-plane : ["60m ", "10s"]
64
- default/wait-worker-nodes : ["60m ", "10s"]
63
+ default/wait-control-plane : ["40m ", "10s"]
64
+ default/wait-worker-nodes : ["40m ", "10s"]
65
65
default/wait-delete-cluster : ["20m", "10s"]
66
66
default/wait-machine-upgrade : ["50m", "10s"]
67
67
default/wait-machine-remediation : ["30m", "10s"]
You can’t perform that action at this time.
0 commit comments