From 063cd08fb9ae29cb36447ce74e2a90d8a266dd84 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 1 Mar 2024 10:57:45 -0500 Subject: [PATCH 1/4] update bosh cli to latest version --- config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config.sh b/config.sh index ac17f59..cacfa82 100755 --- a/config.sh +++ b/config.sh @@ -14,7 +14,7 @@ CF_CLI_RELEASE_VERSION7=7.7.1 CREDHUB_CLI_RELEASE_VERSION=2.9.18 # bosh-cli gets really slow at 6.2.0, so we're pinned here. # check https://github.com/cloudfoundry/bosh-cli/issues/570 for details -BOSH_CLI_V2_RELEASE_VERSION=7.2.3 +BOSH_CLI_V2_RELEASE_VERSION=7.5.4 UAAC_CLI_RELEASE_VERSION=4.14.0 RUBY_RELEASE_VERSION=3.2.2 RAKE_RELEASE_VERSION=13.0.6 From 3f7d413d52a4f414427df5d72aa317753e277ee9 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 1 Mar 2024 11:14:49 -0500 Subject: [PATCH 2/4] remove old comments --- config.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/config.sh b/config.sh index cacfa82..45326af 100755 --- a/config.sh +++ b/config.sh @@ -12,8 +12,6 @@ TERRAFORM_RELEASE_VERSION=1.5.3 TERRAFORM_TEST_RELEASE_VERSION=1.5.3 CF_CLI_RELEASE_VERSION7=7.7.1 CREDHUB_CLI_RELEASE_VERSION=2.9.18 -# bosh-cli gets really slow at 6.2.0, so we're pinned here. -# check https://github.com/cloudfoundry/bosh-cli/issues/570 for details BOSH_CLI_V2_RELEASE_VERSION=7.5.4 UAAC_CLI_RELEASE_VERSION=4.14.0 RUBY_RELEASE_VERSION=3.2.2 From a996e4cc96c90186584212383abd74545c2aeeb4 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 1 Mar 2024 11:25:23 -0500 Subject: [PATCH 3/4] use github as source --- scripts/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 5da2bd2..3ac94d8 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -153,7 +153,7 @@ echo "Installing uaac" gem install cf-uaac -v "$UAAC_CLI_RELEASE_VERSION" --no-document echo "Installing BOSH CLI v2 version ${BOSH_CLI_V2_RELEASE_VERSION}" -curl -L -o /usr/local/bin/bosh "https://s3.amazonaws.com/bosh-cli-artifacts/bosh-cli-${BOSH_CLI_V2_RELEASE_VERSION}-linux-amd64" +curl -L -o /usr/local/bin/bosh "https://github.com/cloudfoundry/bosh-cli/releases/download/${BOSH_CLI_V2_RELEASE_VERSION}/bosh-cli-${BOSH_CLI_V2_RELEASE_VERSION}-linux-amd64" chmod +x /usr/local/bin/bosh ln -s /usr/local/bin/bosh /usr/local/bin/bosh2 ln -s /usr/local/bin/bosh /usr/local/bin/bosh-cli From f88e04062c0e3da2dd2f032aaeaa1ee9be3114cb Mon Sep 17 00:00:00 2001 From: David Anderson Date: Fri, 1 Mar 2024 14:38:45 -0500 Subject: [PATCH 4/4] add missing v --- scripts/build.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/build.sh b/scripts/build.sh index 3ac94d8..2a0ad58 100755 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -153,7 +153,8 @@ echo "Installing uaac" gem install cf-uaac -v "$UAAC_CLI_RELEASE_VERSION" --no-document echo "Installing BOSH CLI v2 version ${BOSH_CLI_V2_RELEASE_VERSION}" -curl -L -o /usr/local/bin/bosh "https://github.com/cloudfoundry/bosh-cli/releases/download/${BOSH_CLI_V2_RELEASE_VERSION}/bosh-cli-${BOSH_CLI_V2_RELEASE_VERSION}-linux-amd64" +curl -L -o /usr/local/bin/bosh "https://github.com/cloudfoundry/bosh-cli/releases/download/v${BOSH_CLI_V2_RELEASE_VERSION}/bosh-cli-${BOSH_CLI_V2_RELEASE_VERSION}-linux-amd64" + chmod +x /usr/local/bin/bosh ln -s /usr/local/bin/bosh /usr/local/bin/bosh2 ln -s /usr/local/bin/bosh /usr/local/bin/bosh-cli