Skip to content

Commit ddfea34

Browse files
authored
Merge pull request #22 from hortonworks/CB-12968
CB-12968 Fix fail fast of Azure copy
2 parents a6bd3b2 + 6ef855b commit ddfea34

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ RUN apk update && apk add bash coreutils jq curl
88

99
ADD ./azure-copy /bin/
1010

11-
RUN curl -Lsf https://github.com/hortonworks/pollprogress/releases/download/0.2.3/pollprogress_0.2.3_Linux_x86_64.tgz | tar -xz -C /bin
11+
RUN curl -Lsf https://github.com/hortonworks/pollprogress/releases/download/0.2.4/pollprogress_0.2.4_Linux_x86_64.tgz | tar -xz -C /bin
1212
ENV PATH /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/azure/bin
1313

1414
ENTRYPOINT ["/bin/pollprogress"]

azure-copy

+5-5
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ azure_blob_check() {
6767
debug "$dest_account"
6868
debug "$dest_container"
6969
debug "$dest_blob"
70-
local dest_key=$(_azure_get_account_key $dest_account)
70+
local dest_key=$(_azure_get_account_key $dest_account) || exit 1
7171
debug "$dest_key"
7272
local result=$(az storage blob exists \
7373
--container-name $dest_container \
@@ -85,8 +85,8 @@ azure_blob_copy() {
8585

8686
read source_account source_container source_blob <<< "$(echo $source | sed 's:/: :'| sed 's:/: :')"
8787
read dest_account dest_container dest_blob <<< "$(echo $dest | sed 's:/: :'| sed 's:/: :')"
88-
local source_key=$(_azure_get_account_key $source_account)
89-
local dest_key=$(_azure_get_account_key $dest_account)
88+
local source_key=$(_azure_get_account_key $source_account) || exit 1
89+
local dest_key=$(_azure_get_account_key $dest_account) || exit 1
9090
az storage blob copy start \
9191
--source-account-name $source_account \
9292
--source-account-key $source_key \
@@ -121,7 +121,7 @@ _azure_get_account_key() {
121121
declare group=${2}
122122

123123
if [[ -z "$group" ]]; then
124-
group=$(_azure_get_account_group ${storage})
124+
group=$(_azure_get_account_group ${storage}) || exit 1
125125
fi
126126

127127
local account_key=$(az storage account keys list --resource-group $group --account-name $storage --output json | jq -r '.[0].value')
@@ -135,7 +135,7 @@ _azure_get_account_key() {
135135
azure_latest_vhd_by_prefix() {
136136
declare imageName=${1:? required: imageName prefix like cloudbreak-2016-02-24}
137137

138-
local key=$(_azure_get_account_key $ARM_STORAGE_ACCOUNT)
138+
local key=$(_azure_get_account_key $ARM_STORAGE_ACCOUNT) || exit 1
139139
az storage blob list \
140140
--account-name $ARM_STORAGE_ACCOUNT \
141141
--account-key $key \

0 commit comments

Comments
 (0)