microscopic-river-74022
09/07/2023, 3:46 AMmicroscopic-river-74022
09/07/2023, 3:46 AMgarden version
.
2. If you're working with a specific project, make sure you've correctly cloned the project and are in the right directory. For example, if you're working with the quickstart example, you should have cloned it with git clone <https://github.com/garden-io/quickstart-example.git> && cd quickstart-example
.
3. Try running garden dev
again. This command starts the Garden dev console, which initializes Garden and waits for further instructions.
4. If you're still encountering issues, it might be helpful to check if there are any known bugs related to your problem on the Garden GitHub issues page ().
If none of these steps resolve your issue, you might want to reach out to the Garden community or support for more specific assistance.
----------------------
Note: you can ask me a follow up question by @ mentioning me again
:speech_balloon:
----------------------microscopic-river-74022
09/07/2023, 4:34 AMswift-spring-8620
09/07/2023, 4:34 AMmicroscopic-river-74022
09/07/2023, 4:35 AMConfigTemplate
using the inputsSchemaPath
field, which points to a standard JSON Schema file. This schema describes the inputs for every action and module that references the template. These inputs can then be referenced using ${inputs.*}
template strings, anywhere under the configs
and modules
fields.
Here's an example of how it might look:
json
{
"type": "object",
"properties": {
"containerPort": {
"type": "integer"
},
"servicePort": {
"type": "integer"
},
"replicas": {
"type": "integer",
"default": 3
}
},
"required": [
"containerPort",
"servicePort"
]
}
In this example, the containerPort
and servicePort
inputs are required, and you can optionally set a replicas
value as well.
However, this doesn't directly allow for user input during a workflow. It's more about defining what inputs are required for the actions and modules that are part of the workflow.
For more information, you can refer to the Garden documentation on Config Templates () and Workflows ().
----------------------
Note: you can ask me a follow up question by @ mentioning me again
:speech_balloon:
----------------------