Skip to content

Update metadata for collection releases #461

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
106 changes: 106 additions & 0 deletions collections/prefect/workers/v3.1.11.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,106 @@
{
"prefect": {
"prefect-agent": {
"type": "prefect-agent",
"documentation_url": "https://docs.prefect.io/latest/concepts/work-pools/#agent-overview",
"display_name": "Prefect Agent",
"logo_url": "https://cdn.sanity.io/images/3ugk85nk/production/c771bb53894c877e169c8db158c5598558b8f175-24x24.svg",
"install_command": "pip install prefect",
"default_base_job_configuration": {},
"description": "Execute flow runs on heterogeneous infrastructure using infrastructure blocks."
},
"process": {
"default_base_job_configuration": {
"job_configuration": {
"command": "{{ command }}",
"env": "{{ env }}",
"labels": "{{ labels }}",
"name": "{{ name }}",
"stream_output": "{{ stream_output }}",
"working_dir": "{{ working_dir }}"
},
"variables": {
"properties": {
"name": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Name given to infrastructure created by a worker.",
"title": "Name"
},
"env": {
"additionalProperties": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
]
},
"description": "Environment variables to set when starting a flow run.",
"title": "Environment Variables",
"type": "object"
},
"labels": {
"additionalProperties": {
"type": "string"
},
"description": "Labels applied to infrastructure created by a worker.",
"title": "Labels",
"type": "object"
},
"command": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "The command to use when starting a flow run. In most cases, this should be left blank and the command will be automatically generated by the worker.",
"title": "Command"
},
"stream_output": {
"default": true,
"description": "If enabled, workers will stream output from flow run processes to local standard output.",
"title": "Stream Output",
"type": "boolean"
},
"working_dir": {
"anyOf": [
{
"format": "path",
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "If provided, workers will open flow run processes within the specified path as the working directory. Otherwise, a temporary directory will be created.",
"title": "Working Directory"
}
},
"type": "object"
}
},
"description": "Execute flow runs as subprocesses on a worker. Works well for local execution when first getting started.",
"display_name": "Process",
"documentation_url": "https://docs.prefect.io/latest/get-started/quickstart",
"install_command": "pip install prefect",
"is_beta": false,
"logo_url": "https://cdn.sanity.io/images/3ugk85nk/production/356e6766a91baf20e1d08bbe16e8b5aaef4d8643-48x48.png",
"type": "process"
}
}
}
Loading