Paweł Biernat
06/27/2024, 8:51 AM"env": {
"type": "object",
"title": "Environment Variables",
"description": "Environment variables to set when starting a flow run.",
"additionalProperties": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
}
},
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Name",
"default": null,
"description": "Name given to infrastructure created by a worker."
is it supposed to be like that?Paweł Biernat
06/27/2024, 8:52 AM"env": {
"type": "object",
"title": "Environment Variables",
"description": "Environment variables to set when starting a flow run.",
"additionalProperties": {
"type": "string"
}
},
"name": {
"type": "string",
"title": "Name",
"description": "Name given to infrastructure created by a worker."
},
Paweł Biernat
06/27/2024, 8:54 AMPaweł Biernat
06/27/2024, 8:54 AMPaweł Biernat
06/27/2024, 9:07 AM"image_registry": {
"anyOf": [
{
"$ref": "#/definitions/ACRManagedIdentity"
},
{},
{
"type": "null"
}
],
"title": "Image Registry (Optional)",
"description": "To use any private container registry with a username and password, choose DockerRegistry. To use a private Azure Container Registry with a managed identity, choose ACRManagedIdentity."
}
and it renders to a blank field in UIPaweł Biernat
06/27/2024, 9:07 AM