mirror of
https://github.com/moby/moby.git
synced 2026-08-09 01:21:37 +00:00
cli: docker service|node|stack ps instead of tasks
Rather than conflict with the unexposed task model, change the names of the object-oriented task display to `docker <object> ps`. The command works identically to `docker service tasks`. This change is superficial. This provides a more sensical docker experience while not trampling on the task model that may be introduced as a top-level command at a later date. The following is an example of the display using `docker service ps` with a service named `condescending_cori`: ``` $ docker service ps condescending_cori ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE e2cd9vqb62qjk38lw65uoffd2 condescending_cori.1 condescending_cori alpine Running 13 minutes ago Running 6c6d232a5d0e ``` The following shows the output for the node on which the command is running: ```console $ docker node ps self ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE b1tpbi43k1ibevg2e94bmqo0s mad_kalam.1 mad_kalam apline Accepted 2 seconds ago Accepted 6c6d232a5d0e e2cd9vqb62qjk38lw65uoffd2 condescending_cori.1 condescending_cori alpine Running 12 minutes ago Running 6c6d232a5d0e 4x609m5o0qyn0kgpzvf0ad8x5 furious_davinci.1 furious_davinci redis Running 32 minutes ago Running 6c6d232a5d0e ``` Signed-off-by: Stephen J Day <stephen.day@docker.com>
This commit is contained in:
@@ -115,7 +115,7 @@ read the [`dockerd`](dockerd.md) reference page.
|
||||
| [node demote](node_demote.md) | Demotes an existing manager so that it is no longer a manager |
|
||||
| [node inspect](node_inspect.md) | Inspect a node in the swarm |
|
||||
| [node update](node_update.md) | Update attributes for a node |
|
||||
| [node tasks](node_tasks.md) | List tasks running on a node |
|
||||
| [node ps](node_ps.md) | List tasks running on a node |
|
||||
| [node ls](node_ls.md) | List nodes in the swarm |
|
||||
| [node rm](node_rm.md) | Remove a node from the swarm |
|
||||
|
||||
@@ -138,5 +138,5 @@ read the [`dockerd`](dockerd.md) reference page.
|
||||
| [service ls](service_ls.md) | List services in the swarm |
|
||||
| [service rm](service_rm.md) | Reemove a swervice from the swarm |
|
||||
| [service scale](service_scale.md) | Set the number of replicas for the desired state of the service |
|
||||
| [service tasks](service_tasks.md) | List the tasks of a service |
|
||||
| [service ps](service_ps.md) | List the tasks of a service |
|
||||
| [service update](service_update.md) | Update the attributes of a service |
|
||||
|
||||
@@ -120,6 +120,6 @@ Example output:
|
||||
## Related information
|
||||
|
||||
* [node update](node_update.md)
|
||||
* [node tasks](node_tasks.md)
|
||||
* [node ps](node_ps.md)
|
||||
* [node ls](node_ls.md)
|
||||
* [node rm](node_rm.md)
|
||||
|
||||
@@ -91,5 +91,5 @@ ID HOSTNAME STATUS AVAILABILITY MANAGER STATUS
|
||||
|
||||
* [node inspect](node_inspect.md)
|
||||
* [node update](node_update.md)
|
||||
* [node tasks](node_tasks.md)
|
||||
* [node ps](node_ps.md)
|
||||
* [node rm](node_rm.md)
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
<!--[metadata]>
|
||||
+++
|
||||
title = "node tasks"
|
||||
description = "The node tasks command description and usage"
|
||||
keywords = ["node, tasks"]
|
||||
title = "node ps"
|
||||
description = "The node ps command description and usage"
|
||||
keywords = ["node, tasks", "ps"]
|
||||
aliases = ["/engine/reference/commandline/node_tasks/"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
|
||||
# node tasks
|
||||
# node ps
|
||||
|
||||
```markdown
|
||||
Usage: docker node tasks [OPTIONS] self|NODE
|
||||
Usage: docker node ps [OPTIONS] self|NODE
|
||||
|
||||
List tasks running on a node
|
||||
|
||||
@@ -26,7 +27,7 @@ Lists all the tasks on a Node that Docker knows about. You can filter using the
|
||||
|
||||
Example output:
|
||||
|
||||
$ docker node tasks swarm-manager1
|
||||
$ docker node ps swarm-manager1
|
||||
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
|
||||
7q92v0nr1hcgts2amcjyqg3pq redis.1 redis redis:3.0.6 Running 5 hours Running swarm-manager1
|
||||
b465edgho06e318egmgjbqo4o redis.6 redis redis:3.0.6 Running 29 seconds Running swarm-manager1
|
||||
@@ -53,7 +54,7 @@ The `name` filter matches on all or part of a task's name.
|
||||
|
||||
The following filter matches all tasks with a name containing the `redis` string.
|
||||
|
||||
$ docker node tasks -f name=redis swarm-manager1
|
||||
$ docker node ps -f name=redis swarm-manager1
|
||||
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
|
||||
7q92v0nr1hcgts2amcjyqg3pq redis.1 redis redis:3.0.6 Running 5 hours Running swarm-manager1
|
||||
b465edgho06e318egmgjbqo4o redis.6 redis redis:3.0.6 Running 29 seconds Running swarm-manager1
|
||||
@@ -66,7 +67,7 @@ The following filter matches all tasks with a name containing the `redis` string
|
||||
|
||||
The `id` filter matches a task's id.
|
||||
|
||||
$ docker node tasks -f id=bg8c07zzg87di2mufeq51a2qp swarm-manager1
|
||||
$ docker node ps -f id=bg8c07zzg87di2mufeq51a2qp swarm-manager1
|
||||
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
|
||||
bg8c07zzg87di2mufeq51a2qp redis.7 redis redis:3.0.6 Running 5 seconds Running swarm-manager1
|
||||
|
||||
@@ -79,7 +80,7 @@ value.
|
||||
The following filter matches tasks with the `usage` label regardless of its value.
|
||||
|
||||
```bash
|
||||
$ docker node tasks -f "label=usage"
|
||||
$ docker node ps -f "label=usage"
|
||||
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
|
||||
b465edgho06e318egmgjbqo4o redis.6 redis redis:3.0.6 Running 10 minutes Running swarm-manager1
|
||||
bg8c07zzg87di2mufeq51a2qp redis.7 redis redis:3.0.6 Running 9 minutes Running swarm-manager1
|
||||
@@ -35,5 +35,5 @@ Example output:
|
||||
|
||||
* [node inspect](node_inspect.md)
|
||||
* [node update](node_update.md)
|
||||
* [node tasks](node_tasks.md)
|
||||
* [node ps](node_ps.md)
|
||||
* [node ls](node_ls.md)
|
||||
|
||||
@@ -59,6 +59,6 @@ metadata](../../userguide/labels-custom-metadata.md).
|
||||
## Related information
|
||||
|
||||
* [node inspect](node_inspect.md)
|
||||
* [node tasks](node_tasks.md)
|
||||
* [node ps](node_ps.md)
|
||||
* [node ls](node_ls.md)
|
||||
* [node rm](node_rm.md)
|
||||
|
||||
@@ -183,5 +183,5 @@ $ docker service create \
|
||||
* [service ls](service_ls.md)
|
||||
* [service rm](service_rm.md)
|
||||
* [service scale](service_scale.md)
|
||||
* [service tasks](service_tasks.md)
|
||||
* [service ps](service_ps.md)
|
||||
* [service update](service_update.md)
|
||||
|
||||
@@ -149,5 +149,5 @@ $ docker service inspect --format='{{.Spec.Mode.Replicated.Replicas}}' redis
|
||||
* [service ls](service_ls.md)
|
||||
* [service rm](service_rm.md)
|
||||
* [service scale](service_scale.md)
|
||||
* [service tasks](service_tasks.md)
|
||||
* [service ps](service_ps.md)
|
||||
* [service update](service_update.md)
|
||||
|
||||
@@ -104,5 +104,5 @@ ID NAME REPLICAS IMAGE COMMAND
|
||||
* [service inspect](service_inspect.md)
|
||||
* [service rm](service_rm.md)
|
||||
* [service scale](service_scale.md)
|
||||
* [service tasks](service_tasks.md)
|
||||
* [service ps](service_ps.md)
|
||||
* [service update](service_update.md)
|
||||
|
||||
@@ -1,17 +1,18 @@
|
||||
<!--[metadata]>
|
||||
+++
|
||||
title = "service tasks"
|
||||
description = "The service tasks command description and usage"
|
||||
keywords = ["service, tasks"]
|
||||
title = "service ps"
|
||||
description = "The service ps command description and usage"
|
||||
keywords = ["service, tasks", "ps"]
|
||||
aliases = ["/engine/reference/commandline/service_tasks/"]
|
||||
[menu.main]
|
||||
parent = "smn_cli"
|
||||
+++
|
||||
<![end-metadata]-->
|
||||
|
||||
# service tasks
|
||||
# service ps
|
||||
|
||||
```Markdown
|
||||
Usage: docker service tasks [OPTIONS] SERVICE
|
||||
Usage: docker service ps [OPTIONS] SERVICE
|
||||
|
||||
List the tasks of a service
|
||||
|
||||
@@ -33,7 +34,7 @@ has to be run targeting a manager node.
|
||||
The following command shows all the tasks that are part of the `redis` service:
|
||||
|
||||
```bash
|
||||
$ docker service tasks redis
|
||||
$ docker service ps redis
|
||||
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
|
||||
0qihejybwf1x5vqi8lgzlgnpq redis.1 redis redis:3.0.6 Running 8 seconds Running manager1
|
||||
bk658fpbex0d57cqcwoe3jthu redis.2 redis redis:3.0.6 Running 9 seconds Running worker2
|
||||
@@ -67,7 +68,7 @@ The currently supported filters are:
|
||||
The `id` filter matches on all or a prefix of a task's ID.
|
||||
|
||||
```bash
|
||||
$ docker service tasks -f "id=8" redis
|
||||
$ docker service ps -f "id=8" redis
|
||||
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
|
||||
8ryt076polmclyihzx67zsssj redis.4 redis redis:3.0.6 Running 4 minutes Running worker1
|
||||
8eaxrb2fqpbnv9x30vr06i6vt redis.10 redis redis:3.0.6 Running 4 minutes Running manager1
|
||||
@@ -78,7 +79,7 @@ ID NAME SERVICE IMAGE LAST STATE DE
|
||||
The `name` filter matches on task names.
|
||||
|
||||
```bash
|
||||
$ docker service tasks -f "name=redis.1" redis
|
||||
$ docker service ps -f "name=redis.1" redis
|
||||
ID NAME SERVICE IMAGE DESIRED STATE LAST STATE NODE
|
||||
0qihejybwf1x5vqi8lgzlgnpq redis.1 redis redis:3.0.6 Running Running 8 seconds manager1
|
||||
```
|
||||
@@ -45,5 +45,5 @@ ID NAME SCALE IMAGE COMMAND
|
||||
* [service inspect](service_inspect.md)
|
||||
* [service ls](service_ls.md)
|
||||
* [service scale](service_scale.md)
|
||||
* [service tasks](service_tasks.md)
|
||||
* [service ps](service_ps.md)
|
||||
* [service update](service_update.md)
|
||||
|
||||
@@ -74,5 +74,5 @@ ID NAME REPLICAS IMAGE COMMAND
|
||||
* [service inspect](service_inspect.md)
|
||||
* [service ls](service_ls.md)
|
||||
* [service rm](service_rm.md)
|
||||
* [service tasks](service_tasks.md)
|
||||
* [service ps](service_ps.md)
|
||||
* [service update](service_update.md)
|
||||
|
||||
@@ -71,6 +71,6 @@ $ docker service update --limit-cpu 2 redis
|
||||
|
||||
* [service create](service_create.md)
|
||||
* [service inspect](service_inspect.md)
|
||||
* [service tasks](service_tasks.md)
|
||||
* [service ps](service_ps.md)
|
||||
* [service ls](service_ls.md)
|
||||
* [service rm](service_rm.md)
|
||||
|
||||
@@ -87,5 +87,5 @@ roll-back a task to a previous version of the service.
|
||||
* [service ls](../reference/commandline/service_ls.md)
|
||||
* [service rm](../reference/commandline/service_rm.md)
|
||||
* [service scale](../reference/commandline/service_scale.md)
|
||||
* [service tasks](../reference/commandline/service_tasks.md)
|
||||
* [service ps](../reference/commandline/service_ps.md)
|
||||
* [service update](../reference/commandline/service_update.md)
|
||||
|
||||
@@ -45,11 +45,11 @@ update](rolling-update.md) tutorial, start it now:
|
||||
c5uo6kdmzpon37mgj9mwglcfw
|
||||
```
|
||||
|
||||
4. Run `docker service tasks redis` to see how the Swarm manager assigned the
|
||||
4. Run `docker service ps redis` to see how the Swarm manager assigned the
|
||||
tasks to different nodes:
|
||||
|
||||
```bash
|
||||
$ docker service tasks redis
|
||||
$ docker service ps redis
|
||||
|
||||
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
|
||||
7q92v0nr1hcgts2amcjyqg3pq redis.1 redis redis:3.0.6 Running 26 seconds Running manager1
|
||||
@@ -84,11 +84,11 @@ had a task assigned to it:
|
||||
|
||||
The drained node shows `Drain` for `AVAILABILITY`.
|
||||
|
||||
7. Run `docker service tasks redis` to see how the Swarm manager updated the
|
||||
7. Run `docker service ps redis` to see how the Swarm manager updated the
|
||||
task assignments for the `redis` service:
|
||||
|
||||
```bash
|
||||
$ docker service tasks redis
|
||||
$ docker service ps redis
|
||||
|
||||
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
|
||||
7q92v0nr1hcgts2amcjyqg3pq redis.1 redis redis:3.0.6 Running 4 minutes Running manager1
|
||||
|
||||
@@ -91,11 +91,11 @@ about a service in an easily readable format.
|
||||
]
|
||||
```
|
||||
|
||||
4. Run `docker service tasks <SERVICE-ID>` to see which nodes are running the
|
||||
4. Run `docker service ps <SERVICE-ID>` to see which nodes are running the
|
||||
service:
|
||||
|
||||
```
|
||||
$ docker service tasks helloworld
|
||||
$ docker service ps helloworld
|
||||
|
||||
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
|
||||
8p1vev3fq5zm0mi8g0as41w35 helloworld.1 helloworld alpine Running 3 minutes Running worker2
|
||||
|
||||
@@ -133,10 +133,10 @@ desired state:
|
||||
To avoid repeating certain update failures, you may need to reconfigure the
|
||||
service by passing flags to `docker service update`.
|
||||
|
||||
6. Run `docker service tasks <SERVICE-ID>` to watch the rolling update:
|
||||
6. Run `docker service ps <SERVICE-ID>` to watch the rolling update:
|
||||
|
||||
```bash
|
||||
$ docker service tasks redis
|
||||
$ docker service ps redis
|
||||
|
||||
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
|
||||
dos1zffgeofhagnve8w864fco redis.1 redis redis:3.0.7 Running 37 seconds Running worker1
|
||||
|
||||
@@ -13,7 +13,7 @@ weight=18
|
||||
# Scale the service in the swarm
|
||||
|
||||
Once you have [deployed a service](deploy-service.md) to a swarm, you are ready
|
||||
to use the Docker CLI to scale the number of service tasks in
|
||||
to use the Docker CLI to scale the number of service ps in
|
||||
the swarm.
|
||||
|
||||
1. If you haven't already, open a terminal and ssh into the machine where you
|
||||
@@ -35,10 +35,10 @@ service running in the swarm:
|
||||
helloworld scaled to 5
|
||||
```
|
||||
|
||||
3. Run `docker service tasks <SERVICE-ID>` to see the updated task list:
|
||||
3. Run `docker service ps <SERVICE-ID>` to see the updated task list:
|
||||
|
||||
```
|
||||
$ docker service tasks helloworld
|
||||
$ docker service ps helloworld
|
||||
|
||||
ID NAME SERVICE IMAGE LAST STATE DESIRED STATE NODE
|
||||
8p1vev3fq5zm0mi8g0as41w35 helloworld.1 helloworld alpine Running 7 minutes Running worker2
|
||||
|
||||
Reference in New Issue
Block a user