mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-03-27 12:05:05 +00:00
With #3327, the restic binary for the Tilt Velero image is downloaded on the local machine using the `./hack/download-restic.sh` script. This script relies on `wget` being availabe on the local machine. `wget` is not commonly available on macOS but `curl` is. This change modifies the `./hack/download-restic.sh` script to use `curl` instead as it is available on both Linux and macOS and is available in our `golang` docker build image. Signed-off-by: Bridget McErlean <bmcerlean@vmware.com>
60 lines
1.9 KiB
Bash
Executable File
60 lines
1.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# Copyright 2020 the Velero contributors.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
set -o errexit
|
|
set -o nounset
|
|
set -o pipefail
|
|
|
|
# Use /output/usr/bin/ as the default output directory as this
|
|
# is the path expected by the Velero Dockerfile.
|
|
output_dir=${OUTPUT_DIR:-/output/usr/bin}
|
|
restic_bin=${output_dir}/restic
|
|
|
|
if [[ -z "${BIN}" ]]; then
|
|
echo "BIN must be set"
|
|
exit 1
|
|
fi
|
|
|
|
if [[ "${BIN}" != "velero" ]]; then
|
|
echo "${BIN} does not need the restic binary"
|
|
exit 0
|
|
fi
|
|
|
|
if [[ -z "${GOOS}" ]]; then
|
|
echo "GOOS must be set"
|
|
exit 1
|
|
fi
|
|
if [[ -z "${GOARCH}" ]]; then
|
|
echo "GOARCH must be set"
|
|
exit 1
|
|
fi
|
|
if [[ -z "${RESTIC_VERSION}" ]]; then
|
|
echo "RESTIC_VERSION must be set"
|
|
exit 1
|
|
fi
|
|
|
|
# TODO: when the new restic version is released, make ppc64le to be also downloaded from their github releases.
|
|
# This has been merged and will be applied to next release: https://github.com/restic/restic/pull/2342
|
|
if [[ "${GOARCH}" = "ppc64le" ]]; then
|
|
curl -s --retry 5 -L https://oplab9.parqtec.unicamp.br/pub/ppc64el/restic/restic-${RESTIC_VERSION} -o ${restic_bin}
|
|
else
|
|
curl -s -L https://github.com/restic/restic/releases/download/v${RESTIC_VERSION}/restic_${RESTIC_VERSION}_${GOOS}_${GOARCH}.bz2 -O
|
|
bunzip2 restic_${RESTIC_VERSION}_${GOOS}_${GOARCH}.bz2
|
|
mv restic_${RESTIC_VERSION}_${GOOS}_${GOARCH} ${restic_bin}
|
|
fi
|
|
|
|
chmod +x ${restic_bin}
|