mirror of https://github.com/linkerd/linkerd2.git
20 lines
397 B
Bash
Executable File
20 lines
397 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ $# -eq 1 ]; then
|
|
tag="${1:-}"
|
|
else
|
|
echo "usage: $(basename $0) tag" >&2
|
|
exit 64
|
|
fi
|
|
|
|
. bin/_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
|