Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion ci-operator/config/openshift/hive/openshift-hive-master.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,9 @@ tests:
test:
- as: test
cli: latest
commands: GO_COMPLIANCE_INFO=0 CLOUD=azure make test-e2e
commands: |
export BASE_DOMAIN=$(<"${SHARED_DIR}"/basedomain.txt)
GO_COMPLIANCE_INFO=0 CLOUD=azure make test-e2e
dependencies:
- env: HIVE_IMAGE
name: hive
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,9 @@ tests:
test:
- as: test
cli: latest
commands: CLOUD=azure make test-e2e
commands: |
export BASE_DOMAIN=$(<"${SHARED_DIR}"/basedomain.txt)
CLOUD=azure make test-e2e
dependencies:
- env: HIVE_IMAGE
name: hive
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ else
AZURE_BASE_DOMAIN=$(< ${CLUSTER_PROFILE_DIR}/baseDomain)
fi

echo "${AZURE_BASE_DOMAIN}" > "${SHARED_DIR}/basedomain.txt"

CONFIG="${SHARED_DIR}/install-config.yaml"

REGION="${LEASED_RESOURCE}"
Expand Down