Add Helm documentation (#517)

* Add required blocks to Helm templates

Signed-off-by: lucperkins <lucperkins@gmail.com>

* Make CLI table border lighter

Signed-off-by: lucperkins <lucperkins@gmail.com>

* Change aesthetic of CLI table

Signed-off-by: lucperkins <lucperkins@gmail.com>

* Add admonition blocks

Signed-off-by: lucperkins <lucperkins@gmail.com>

* Fix wording

Signed-off-by: lucperkins <lucperkins@gmail.com>
This commit is contained in:
Luc Perkins
2019-03-28 15:30:30 -07:00
committed by Brian Goff
parent bf420eac41
commit 561ccca561
12 changed files with 74 additions and 13 deletions

View File

@@ -0,0 +1 @@
{{ partial "admonition.html" (dict "type" "danger" "icon" "ban" "content" .Inner) }}

View File

@@ -0,0 +1 @@
{{ partial "admonition.html" (dict "type" "info" "icon" "info-circle" "content" .Inner) }}

View File

@@ -0,0 +1 @@
{{ partial "admonition.html" (dict "type" "requirement" "icon" "wrench" "content" .Inner) }}

View File

@@ -0,0 +1 @@
{{ partial "admonition.html" (dict "type" "success" "icon" "check-circle" "content" .Inner) }}

View File

@@ -0,0 +1 @@
{{ partial "admonition.html" (dict "type" "warning" "icon" "exclamation" "content" .Inner) }}