Skip to content
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

chore: update to v1.5 branch for harvester and addons repos #933

Open
wants to merge 1 commit into
base: v1.5
Choose a base branch
from
Open
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: 2 additions & 2 deletions scripts/build
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ cd ${TOP_DIR}
harvester_path=../harvester
if [ ! -d ${harvester_path} ];then
echo "No existing harvester source. Pulling..."
git clone --branch master --single-branch --depth 1 https://github.com/harvester/harvester.git ../harvester
git clone --branch v1.5 --single-branch --depth 1 https://github.com/harvester/harvester.git ../harvester
else
# When building against locally modified harvester source with
# "-v /path/to/local/harvester/repo:/go/src/github.com/harvester/harvester"
Expand All @@ -30,7 +30,7 @@ fi
addons_path=../addons
if [ ! -d ${addons_path} ];then
echo "No existing addons source. Pulling..."
git clone --branch main --single-branch --depth 1 https://github.com/harvester/addons.git ../addons
git clone --branch v1.5 --single-branch --depth 1 https://github.com/harvester/addons.git ../addons
fi

source ${SCRIPTS_DIR}/version-harvester $harvester_path
Expand Down
4 changes: 2 additions & 2 deletions scripts/build-bundle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ cd ${TOP_DIR}
addons_path=../addons
if [ ! -d ${addons_path} ];then
echo "No existing addons source. Pulling..."
git clone --branch main --single-branch --depth 1 https://github.com/harvester/addons.git ../addons
git clone --branch v1.5 --single-branch --depth 1 https://github.com/harvester/addons.git ../addons
fi

source ${SCRIPTS_DIR}/version-monitoring
Expand Down Expand Up @@ -95,7 +95,7 @@ mkdir -p ${RANCHERD_IMAGES_DIR}
harvester_path=../harvester
if [ ! -d ${harvester_path} ];then
echo "No existing harvester source. Pulling..."
git clone --branch master --single-branch --depth 1 https://github.com/harvester/harvester.git ../harvester
git clone --branch v1.5 --single-branch --depth 1 https://github.com/harvester/harvester.git ../harvester
fi

# Revert harvester chart version patch to clean dirty git status
Expand Down
Loading