fix: review comments

Signed-off-by: Gabriel Dantas <gabriel.dantas98@outlook.com.br>
This commit is contained in:
Gabriel Dantas
2022-10-28 15:37:43 -03:00
parent 2815e37895
commit 87f1b7e515
2 changed files with 24 additions and 13 deletions
@@ -77,18 +77,23 @@ parameters:
title: Volume Type
type: string
description: The volume type to be used.
enum: ['gp2', 'gp3', 'io1', 'io2', 'sc1', 'st1', 'standard']
default: 'gp2'
enum:
- 'gp2'
- 'gp3'
- 'io1'
- 'io2'
- 'sc1'
- 'st1'
- 'standard'
enumNames:
[
'General Purpose SSD (gp2)',
'General Purpose SSD (gp3)',
'Provisioned IOPS (io1)',
'Provisioned IOPS (io2)',
'Cold HDD (sc1)',
'Throughput Optimized HDD (st1)',
'Magnetic (standard)',
]
- 'General Purpose SSD (gp2)'
- 'General Purpose SSD (gp3)'
- 'Provisioned IOPS (io1)'
- 'Provisioned IOPS (io2)'
- 'Cold HDD (sc1)'
- 'Throughput Optimized HDD (st1)'
- 'Magnetic (standard)'
```
### A multiple choices list
@@ -102,7 +107,10 @@ parameters:
type: array
items:
type: string
enum: ['production', 'staging', 'development']
enum:
- 'production'
- 'staging'
- 'development'
uniqueItems: true
ui:widget: checkboxes
```
@@ -176,7 +184,10 @@ parameters:
type: array
items:
type: boolean
enum: ['Enable scraping', 'Enable HPA', 'Enable cache']
enum:
- 'Enable scraping'
- 'Enable HPA'
- 'Enable cache'
uniqueItems: true
ui:widget: checkboxes
```
+1 -1
View File
@@ -61,7 +61,7 @@ nav:
- Overview: 'features/software-templates/index.md'
- Configuration: 'features/software-templates/configuration.md'
- Adding your own Templates: 'features/software-templates/adding-templates.md'
- Inputs examples: 'features/software-templates/inputs-examples.md'
- Input examples: 'features/software-templates/inputs-examples.md'
- Writing Templates: 'features/software-templates/writing-templates.md'
- Builtin Actions: 'features/software-templates/builtin-actions.md'
- Writing Custom Actions: 'features/software-templates/writing-custom-actions.md'