Skip to content
This repository has been archived by the owner on Nov 27, 2024. It is now read-only.

ci: clone all repos during kubesaw deployment #133

Merged
merged 3 commits into from
May 16, 2024
Merged
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
8 changes: 7 additions & 1 deletion ci/toolchain_manager.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,19 @@ function publish {
}

function deploy {
clone "${TOOLCHAIN_E2E_REPO}" "${TOOLCHAIN_E2E_BRANCH}"
clone "${HOST_OPERATOR_REPO}" "${HOST_OPERATOR_BRANCH}"
clone "${MEMBER_OPERATOR_REPO}" "${MEMBER_OPERATOR_BRANCH}"
clone "${TOOLCHAIN_E2E_REPO}" "${TOOLCHAIN_E2E_BRANCH}"
clone "${REGISTRATION_SERVICE_REPO}" "${REGISTRATION_SERVICE_BRANCH}"

make -C toolchain-e2e deploy-published-operators-e2e \
FORCED_TAG="${TAG}" \
QUAY_NAMESPACE="${QUAY_NAMESPACE}" \
SECOND_MEMBER_MODE=false \
CI=true \
REG_REPO_PATH=../registration-service \
HOST_REPO_PATH=../host-operator \
MEMBER_REPO_PATH=../member-operator \
HOST_NS=toolchain-host-operator \
MEMBER_NS=toolchain-member-operator

Expand Down