mirror of https://github.com/linkerd/linkerd2.git
22 lines
463 B
Bash
Executable File
22 lines
463 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
if [ $# -eq 1 ]; then
|
|
tag="${1:-}"
|
|
else
|
|
echo "usage: $(basename $0) tag" >&2
|
|
exit 64
|
|
fi
|
|
|
|
bindir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
. $bindir/_docker.sh
|
|
|
|
docker_pull proxy "${tag}" || true
|
|
docker_pull proxy-init "${tag}" || true
|
|
docker_pull controller "${tag}" || true
|
|
docker_pull web "${tag}" || true
|
|
docker_pull cli "${tag}" || true
|
|
docker_pull cli-bin "${tag}" || true
|