-
Notifications
You must be signed in to change notification settings - Fork 284
steps/clusterinstall: Upgrade template is out of date #1662
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
steps/clusterinstall: Upgrade template is out of date #1662
Conversation
Update it to the latest state which contains important fixes for some upgrade environments and gather data on teardown.
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: petr-muller, smarterclayton The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
# TODO: make openshift-tests auto-discover this from cluster config | ||
REGION="$(oc get -o jsonpath='{.status.platformStatus.gcp.region}' infrastructure cluster)" | ||
export TEST_PROVIDER="{\"type\":\"gce\",\"region\":\"${REGION}\",\"multizone\": true,\"multimaster\":true,\"projectid\":\"openshift-gce-devel-ci\"}" | ||
export TEST_PROVIDER='{"type":"gce","region":"us-east1","multizone": true,"multimaster":true,"projectid":"openshift-gce-devel-ci"}' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this is backsliding vs #1527 , because I haven't been able to convince anyone to review openshift/release#14324, and haven't bothered pushing the change to other sections of openshift/release with that PR still in flight.
AWS_REGION="${LEASED_RESOURCE}" | ||
case "${AWS_REGION}" in | ||
us-east-1) | ||
case $((RANDOM % 4)) in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is backsliding vs. #1527.
@@ -562,7 +545,17 @@ objects: | |||
EOF | |||
|
|||
elif [[ "${CLUSTER_TYPE}" == "azure4" ]]; then | |||
AZURE_REGION="${LEASED_RESOURCE}" | |||
case $((RANDOM % 8)) in |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is backsliding vs #1527.
Update it to the latest state which contains important fixes for
some upgrade environments and gather data on teardown.