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

Add azure-storage-cli to the stemcells #295

Merged
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
2 changes: 1 addition & 1 deletion bosh-stemcell/spec/stemcells/go_agent_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

describe 'Stemcell with Go Agent', stemcell_image: true do
describe 'installed by bosh_go_agent' do
%w(bosh-agent bosh-agent-rc bosh-blobstore-dav bosh-blobstore-gcs bosh-blobstore-s3).each do |binary|
%w(bosh-agent bosh-agent-rc bosh-blobstore-dav bosh-blobstore-gcs bosh-blobstore-s3 bosh-blobstore-azure-storage).each do |binary|
describe file("/var/vcap/bosh/bin/#{binary}") do
it { should be_file }
it { should be_executable }
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
1fd60bacfe3c7db91f4cd943c55f27eb80fcfab56b83ded69417f0247bdf78ac
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
https://bosh-azure-storage-cli-artifacts.s3.us-east-1.amazonaws.com/azure-storage-cli-0.0.7-linux-amd64
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.0.7
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just noticed That there is a 0.0.8 already

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this should auto update later on when the cloudfoundry/bosh-stemcells-ci#14 pr is merged

2 changes: 1 addition & 1 deletion stemcell_builder/stages/blobstore_clis/config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ persist_value downloaded_cli_dir
rm -rf "${downloaded_cli_dir}"
mkdir -p "${downloaded_cli_dir}"

blobstore_clis=(bosh-blobstore-dav bosh-blobstore-gcs bosh-blobstore-s3)
blobstore_clis=(bosh-blobstore-dav bosh-blobstore-gcs bosh-blobstore-s3 bosh-blobstore-azure-storage)

for cli_binary in "${blobstore_clis[@]}"; do
# shellcheck disable=SC2154
Expand Down