mirror of https://github.com/linkerd/linkerd2.git
20 lines
329 B
Bash
Executable File
20 lines
329 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
if [ $# -eq 1 ]; then
|
|
tag="${1:-}"
|
|
else
|
|
echo "usage: ${0##*/} tag" >&2
|
|
exit 64
|
|
fi
|
|
|
|
bindir=$( cd "${BASH_SOURCE[0]%/*}" && pwd )
|
|
|
|
# shellcheck source=_docker.sh
|
|
. "$bindir"/_docker.sh
|
|
|
|
for img in cli-bin cni-plugin controller debug grafana proxy web ; do
|
|
docker_push $img "$tag"
|
|
done
|