You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A set of Parameters the containerapp requires, has set some defaults for or needs user input.
177
+
A list of Parameters the containerapp requires, has set some defaults for or needs user input.
178
178
179
179
##### Fields
180
180
181
181
Field Name | Type | Description
182
182
---|:---:|---
183
+
<aname="parametersName"></a>name| `string` | **Required.** The name of the parameter.
183
184
<aname="parametersDescription"></a>description | `string` | **Required.** A human readable description of the parameter.
184
185
<aname="parametersConstraints"></a>constraints | [ConstraintObject](#constraintObject) | **Optional** An optional definition of constraints to the parameter.
185
186
<aname="parametersDefault"></a>default | `string` | **Optional** An optional default value for the parameter.
186
187
187
188
##### Parameters Object Example:
188
189
189
190
```yaml
191
+
name: password
190
192
description: mongoDB Admin password
191
193
constraints:
192
194
- allowed_pattern: "[A-Z0-9]+"
193
195
description: Must consist of characters and numbers only.
0 commit comments