mirror of https://github.com/docker/cli.git
Add --no-trunc to service/node/stack ps output
Signed-off-by: Josh Horwitz <horwitzja@gmail.com>
This commit is contained in:
parent
9b4b730adb
commit
b5c313651f
|
@ -1713,7 +1713,7 @@ _docker_service_ps() {
|
||||||
|
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
-*)
|
-*)
|
||||||
COMPREPLY=( $( compgen -W "--all -a --filter -f --help --no-resolve" -- "$cur" ) )
|
COMPREPLY=( $( compgen -W "--all -a --filter -f --help --no-resolve --no-trunc" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
local counter=$(__docker_pos_first_nonflag '--filter|-f')
|
local counter=$(__docker_pos_first_nonflag '--filter|-f')
|
||||||
|
@ -2085,7 +2085,7 @@ _docker_node_ps() {
|
||||||
|
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
-*)
|
-*)
|
||||||
COMPREPLY=( $( compgen -W "--all -a --filter -f --help --no-resolve" -- "$cur" ) )
|
COMPREPLY=( $( compgen -W "--all -a --filter -f --help --no-resolve --no-trunc" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
local counter=$(__docker_pos_first_nonflag '--filter|-f')
|
local counter=$(__docker_pos_first_nonflag '--filter|-f')
|
||||||
|
|
|
@ -841,6 +841,7 @@ __docker_node_subcommand() {
|
||||||
"($help -a --all)"{-a,--all}"[Display all instances]" \
|
"($help -a --all)"{-a,--all}"[Display all instances]" \
|
||||||
"($help)*"{-f=,--filter=}"[Provide filter values]:filter:->filter-options" \
|
"($help)*"{-f=,--filter=}"[Provide filter values]:filter:->filter-options" \
|
||||||
"($help)--no-resolve[Do not map IDs to Names]" \
|
"($help)--no-resolve[Do not map IDs to Names]" \
|
||||||
|
"($help)--no-trunc[Do not truncate output]" \
|
||||||
"($help -)1:node:__docker_complete_nodes" && ret=0
|
"($help -)1:node:__docker_complete_nodes" && ret=0
|
||||||
case $state in
|
case $state in
|
||||||
(filter-options)
|
(filter-options)
|
||||||
|
@ -1156,6 +1157,7 @@ __docker_service_subcommand() {
|
||||||
"($help -a --all)"{-a,--all}"[Display all tasks]" \
|
"($help -a --all)"{-a,--all}"[Display all tasks]" \
|
||||||
"($help)*"{-f=,--filter=}"[Provide filter values]:filter:->filter-options" \
|
"($help)*"{-f=,--filter=}"[Provide filter values]:filter:->filter-options" \
|
||||||
"($help)--no-resolve[Do not map IDs to Names]" \
|
"($help)--no-resolve[Do not map IDs to Names]" \
|
||||||
|
"($help)--no-trunc[Do not truncate output]" \
|
||||||
"($help -)1:service:__docker_complete_services" && ret=0
|
"($help -)1:service:__docker_complete_services" && ret=0
|
||||||
case $state in
|
case $state in
|
||||||
(filter-options)
|
(filter-options)
|
||||||
|
|
|
@ -21,6 +21,7 @@ Options:
|
||||||
-f, --filter value Filter output based on conditions provided
|
-f, --filter value Filter output based on conditions provided
|
||||||
--help Print usage
|
--help Print usage
|
||||||
--no-resolve Do not map IDs to Names
|
--no-resolve Do not map IDs to Names
|
||||||
|
--no-trunc Do not truncate output
|
||||||
```
|
```
|
||||||
|
|
||||||
Lists all the tasks on a Node that Docker knows about. You can filter using the `-f` or `--filter` flag. Refer to the [filtering](#filtering) section for more information about available filter options.
|
Lists all the tasks on a Node that Docker knows about. You can filter using the `-f` or `--filter` flag. Refer to the [filtering](#filtering) section for more information about available filter options.
|
||||||
|
|
|
@ -21,6 +21,7 @@ Options:
|
||||||
-f, --filter value Filter output based on conditions provided
|
-f, --filter value Filter output based on conditions provided
|
||||||
--help Print usage
|
--help Print usage
|
||||||
--no-resolve Do not map IDs to Names
|
--no-resolve Do not map IDs to Names
|
||||||
|
--no-trunc Do not truncate output
|
||||||
```
|
```
|
||||||
|
|
||||||
Lists the tasks that are running as part of the specified service. This command
|
Lists the tasks that are running as part of the specified service. This command
|
||||||
|
|
Loading…
Reference in New Issue