mirror of https://github.com/linkerd/linkerd2.git
22 lines
409 B
Bash
Executable File
22 lines
409 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_push proxy "${tag}"
|
|
docker_push proxy-init "${tag}"
|
|
docker_push controller "${tag}"
|
|
docker_push web "${tag}"
|
|
docker_push cli "${tag}"
|
|
docker_push cli-bin "${tag}"
|