From 9f97a6fe2ece6c689bcd2945fc842f8f4da95a56 Mon Sep 17 00:00:00 2001 From: Heechul Ryu Date: Fri, 24 Apr 2020 18:02:08 +0100 Subject: [PATCH] docs: fix indentation on creating-a-project.md --- docs/using-garden/creating-a-project.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/using-garden/creating-a-project.md b/docs/using-garden/creating-a-project.md index e22e6ba7ff..ff77f7184d 100644 --- a/docs/using-garden/creating-a-project.md +++ b/docs/using-garden/creating-a-project.md @@ -35,12 +35,12 @@ A project consists of one or more **modules** that each has a specific `type`, f Consider a project with the following three environments: ```yaml - kind: Project - name: my-project - environments: - - name: empty - - name: local - - name: remote +kind: Project +name: my-project +environments: + - name: empty + - name: local + - name: remote providers: - name: local-kubernetes environments: ["local"] @@ -48,11 +48,11 @@ providers: environments: ["remote"] context: my-context ... - --- - kind: Module - name: my-module - type: container - ... +--- +kind: Module +name: my-module +type: container +... ``` Our choice of providers and their configuration dictates how the module in the example above is handled: