From 45b4bd97323670ff16185e8f77f7d5472b7fb122 Mon Sep 17 00:00:00 2001 From: Michael Irwin Date: Mon, 15 Mar 2021 16:20:16 -0400 Subject: [PATCH] Fix indentation on examples in the Deployment spec Signed-off-by: Michael Irwin --- deploy.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/deploy.md b/deploy.md index cecf16a9..023f160f 100644 --- a/deploy.md +++ b/deploy.md @@ -77,16 +77,16 @@ by a list or a map with string values. ```yml deploy: - placement: + placement: constraints: - - disktype=ssd + - disktype=ssd ``` ```yml deploy: - placement: + placement: constraints: - disktype: ssd + disktype: ssd ``` #### preferences @@ -96,16 +96,16 @@ by a list or a map with string values. ```yml deploy: - placement: + placement: preferences: - - datacenter=us-east + - datacenter=us-east ``` ```yml deploy: - placement: + placement: preferences: - datacenter: us-east + datacenter: us-east ``` ### replicas @@ -249,11 +249,11 @@ deploy: ```yml deploy: - restart_policy: - condition: on-failure - delay: 5s - max_attempts: 3 - window: 120s + restart_policy: + condition: on-failure + delay: 5s + max_attempts: 3 + window: 120s ``` ### rollback_config @@ -282,8 +282,8 @@ deploy: ```yml deploy: - update_config: - parallelism: 2 - delay: 10s - order: stop-first + update_config: + parallelism: 2 + delay: 10s + order: stop-first ```