dcremonini opened a new issue, #61:
URL: https://github.com/apache/openserverless/issues/61
- Kind of request: feature request
# Problem
Currently the wizard doesn't allow the developer to specify the default
value for a single item.
The implementation of this feature should affect all the types:
- string
- int
- float
- bool
# Impact
100% of users that will install the ops
# Priority
high
# Suggested solution:
```
"OPERATOR_COMPONENT_REDIS": {
"type": "bool",
"default": "true"
},
"RAMGB": {
"type": "int",
"default": "24"
},
"SERVICENAME": {
"type": "string",
"default": "monitoring"
},
"GRAVITYACCELERATION": {
"type": "float",
"default": "9.81"
}
```
to show on the screen
shows on the screen something like:
```
OPERATOR_COMPONENT_REDIS
True (*)
False
RAMGB
24 (the value should be editable)
SERVICENAME
monitoring (the value should be editable)
GRAVITYACCELERATION
9.81 (the value should be editable)
```
Please note that this feature request doesn't suggest if/how specify a
format for data entry of float number (for example #.## for a float having two
decimals).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]