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
{{ message }}
This repository has been archived by the owner on Dec 9, 2024. It is now read-only.
Is your feature request related to a problem? Please describe.
Some SDLs (for example the kava node SDL in omnibus) require that the base parameter be updated with a use specific value (in case of kava node, it is the SNAPSHOT_URL). Since Console hides the params in the UI to reduce cognitive overload, it is easy for the user to miss updating them.
Describe the solution you'd like
Console should support validating required URLs and surfacing them up in the parameter editor step. Suggested design would be:
Any missing, required parameters would be marked with asterisk
The parameter editor fields that are normally minimized under the specific service name, would be open and exposed.
A message would be shown at the top (right under the service name) indicating that the required parameters need to be filled in and a link to the SDL that contains comments would be provided.
Describe alternatives you've considered
Provide instructions to users to update and have them use the import function to fill in the custom SDL. While this is a workable solution, it doesn't result in the best "one-click" user experience we desire.
The text was updated successfully, but these errors were encountered:
@anilmurty sounds good to me. I was thinking of using a format like this for the env variables:
env:
- MYENVAR={{description of value|optional default value}}
If the default value is defined, the parameter becomes optional. If only the description is provided, the field must be provided by the user at deployment.
@jtary - are you suggesting changing the annotation in the SDL itself (that would be a bigger lift)? or, is this just in the console code (in which case, sounds good to me). I guess we also would need to define some metadata somewhere that describes what fields are required, right?
I am talking about changing the SDL themselves. Ultimately that's the only "input" into the console, and the only thing we have to use as far a data about what is required. The format is deliberately still valid SDL, it would just be up to the client weather it supports the format.
There is probably an alternate way to represent the data that would fail more gracefully if the client didn't understand the special meaning. Just wanted to get the discussion going.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Is your feature request related to a problem? Please describe.
Some SDLs (for example the kava node SDL in omnibus) require that the base parameter be updated with a use specific value (in case of kava node, it is the SNAPSHOT_URL). Since Console hides the params in the UI to reduce cognitive overload, it is easy for the user to miss updating them.
Describe the solution you'd like
Console should support validating required URLs and surfacing them up in the parameter editor step. Suggested design would be:
Describe alternatives you've considered
Provide instructions to users to update and have them use the import function to fill in the custom SDL. While this is a workable solution, it doesn't result in the best "one-click" user experience we desire.
The text was updated successfully, but these errors were encountered: