Merge pull request #30376 from albers/completion-fix-node-list

Fix bash completion for completing nodes
This commit is contained in:
Kenfe-Mickaël Laventure 2017-01-25 11:52:13 -08:00 committed by GitHub
commit db657a558e
1 changed files with 24 additions and 10 deletions

View File

@ -361,18 +361,33 @@ __docker_complete_stacks() {
# An optional first option `--id|--name` may be used to limit the # An optional first option `--id|--name` may be used to limit the
# output to the IDs or names of matching items. This setting takes # output to the IDs or names of matching items. This setting takes
# precedence over the environment setting. # precedence over the environment setting.
# Completions may be added with `--add`, e.g. `--add self`.
__docker_nodes() { __docker_nodes() {
local add=()
local fields='$2' # default: node name only local fields='$2' # default: node name only
[ "${DOCKER_COMPLETION_SHOW_NODE_IDS}" = yes ] && fields='$1,$2' # ID and name [ "${DOCKER_COMPLETION_SHOW_NODE_IDS}" = yes ] && fields='$1,$2' # ID and name
if [ "$1" = "--id" ] ; then while true ; do
case "$1" in
--id)
fields='$1' # IDs only fields='$1' # IDs only
shift shift
elif [ "$1" = "--name" ] ; then ;;
--name)
fields='$2' # names only fields='$2' # names only
shift shift
fi ;;
__docker_q node ls "$@" | tr -d '*' | awk "NR>1 {print $fields}" --add)
add+=("$2")
shift 2
;;
*)
break
;;
esac
done
echo $(__docker_q node ls "$@" | tr -d '*' | awk "NR>1 {print $fields}") "${add[@]}"
} }
# __docker_complete_nodes applies completion of nodes based on the current # __docker_complete_nodes applies completion of nodes based on the current
@ -388,8 +403,7 @@ __docker_complete_nodes() {
} }
__docker_complete_nodes_plus_self() { __docker_complete_nodes_plus_self() {
__docker_complete_nodes "$@" __docker_complete_nodes --add self "$@"
COMPREPLY+=( self )
} }
# __docker_services returns a list of all services. Additional options to # __docker_services returns a list of all services. Additional options to