зеркало из https://github.com/github/vitess-gh.git
21 строка
412 B
Bash
Executable File
21 строка
412 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This is a script that uses kubectl to figure out the address for vtctld,
|
|
# and then runs vtctlclient with that address.
|
|
|
|
set -e
|
|
|
|
script_root=`dirname "${BASH_SOURCE}"`
|
|
source $script_root/env.sh
|
|
|
|
echo "Getting vtctld address from kubectl..."
|
|
server=$(get_vtctld_addr)
|
|
if [[ -z "$server" ]]; then
|
|
echo "Can't find VTCTLD_ADDR."
|
|
exit 1
|
|
fi
|
|
|
|
echo "Using $server"
|
|
vtctlclient -server $server "$@"
|
|
|