swarm mode tutorial improvements

modified what's next link to map to left nav TOC

Signed-off-by: Victoria Bialas <victoria.bialas@docker.com>
This commit is contained in:
Victoria Bialas 2017-02-23 13:12:14 -08:00
parent 52a426164b
commit d4add4ee20
9 changed files with 19 additions and 4 deletions

View File

@ -2,6 +2,7 @@
description: Add nodes to the swarm description: Add nodes to the swarm
keywords: tutorial, cluster management, swarm keywords: tutorial, cluster management, swarm
title: Add nodes to the swarm title: Add nodes to the swarm
notoc: true
--- ---
Once you've [created a swarm](create-swarm.md) with a manager node, you're ready Once you've [created a swarm](create-swarm.md) with a manager node, you're ready

View File

@ -2,6 +2,7 @@
description: Initialize the swarm description: Initialize the swarm
keywords: tutorial, cluster management, swarm mode keywords: tutorial, cluster management, swarm mode
title: Create a swarm title: Create a swarm
notoc: true
--- ---
After you complete the [tutorial setup](index.md) steps, you're ready After you complete the [tutorial setup](index.md) steps, you're ready

View File

@ -2,6 +2,7 @@
description: Remove the service from the swarm description: Remove the service from the swarm
keywords: tutorial, cluster management, swarm, service keywords: tutorial, cluster management, swarm, service
title: Delete the service running on the swarm title: Delete the service running on the swarm
notoc: true
--- ---
The remaining steps in the tutorial don't use the `helloworld` service, so now The remaining steps in the tutorial don't use the `helloworld` service, so now

View File

@ -2,6 +2,7 @@
description: Deploy a service to the swarm description: Deploy a service to the swarm
keywords: tutorial, cluster management, swarm mode keywords: tutorial, cluster management, swarm mode
title: Deploy a service to the swarm title: Deploy a service to the swarm
notoc: true
--- ---
After you [create a swarm](create-swarm.md), you can deploy a service to the After you [create a swarm](create-swarm.md), you can deploy a service to the

View File

@ -2,6 +2,7 @@
description: Drain nodes on the swarm description: Drain nodes on the swarm
keywords: tutorial, cluster management, swarm, service, drain keywords: tutorial, cluster management, swarm, service, drain
title: Drain a node on the swarm title: Drain a node on the swarm
notoc: true
--- ---
In earlier steps of the tutorial, all the nodes have been running with `ACTIVE` In earlier steps of the tutorial, all the nodes have been running with `ACTIVE`
@ -121,3 +122,7 @@ drained node to an active state:
* during a rolling update * during a rolling update
* when you set another node to `Drain` availability * when you set another node to `Drain` availability
* when a task fails on another active node * when a task fails on another active node
## What's next?
Learn how to [use a swarm mode routing mesh](/engine/swarm/ingress.md).

View File

@ -2,6 +2,7 @@
description: Getting Started tutorial for Docker Engine swarm mode description: Getting Started tutorial for Docker Engine swarm mode
keywords: tutorial, cluster management, swarm mode keywords: tutorial, cluster management, swarm mode
title: Getting started with swarm mode title: Getting started with swarm mode
toc_max: 4
--- ---
This tutorial introduces you to the features of Docker Engine Swarm mode. You This tutorial introduces you to the features of Docker Engine Swarm mode. You

View File

@ -2,6 +2,7 @@
description: Inspect the application description: Inspect the application
keywords: tutorial, cluster management, swarm mode keywords: tutorial, cluster management, swarm mode
title: Inspect a service on the swarm title: Inspect a service on the swarm
notoc: true
--- ---
When you have [deployed a service](deploy-service.md) to your swarm, you can use When you have [deployed a service](deploy-service.md) to your swarm, you can use

View File

@ -2,6 +2,7 @@
description: Apply rolling updates to a service on the swarm description: Apply rolling updates to a service on the swarm
keywords: tutorial, cluster management, swarm, service, rolling-update keywords: tutorial, cluster management, swarm, service, rolling-update
title: Apply rolling updates to a service title: Apply rolling updates to a service
notoc: true
--- ---
In a previous step of the tutorial, you [scaled](scale-service.md) the number of In a previous step of the tutorial, you [scaled](scale-service.md) the number of
@ -145,4 +146,6 @@ desired state:
`redis:3.0.6` while others are running `redis:3.0.7`. The output above shows `redis:3.0.6` while others are running `redis:3.0.7`. The output above shows
the state once the rolling updates are done. the state once the rolling updates are done.
## What's next?
Next, learn about how to [drain a node](drain-node.md) in the swarm. Next, learn about how to [drain a node](drain-node.md) in the swarm.

View File

@ -2,6 +2,7 @@
description: Scale the service running in the swarm description: Scale the service running in the swarm
keywords: tutorial, cluster management, swarm mode, scale keywords: tutorial, cluster management, swarm mode, scale
title: Scale the service in the swarm title: Scale the service in the swarm
notoc: true
--- ---
Once you have [deployed a service](deploy-service.md) to a swarm, you are ready Once you have [deployed a service](deploy-service.md) to a swarm, you are ready