Skip to content
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

fix: Update schema.json #181

Merged
merged 1 commit into from
Nov 26, 2024
Merged
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
16 changes: 14 additions & 2 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"type": "object",
"description": "Defines environment variables",
"additionalProperties": {
"type": "string"
"type": ["string", "boolean", "number"]
},
"examples": [
{ "RAILS_ENV": "development" },
Expand Down Expand Up @@ -68,6 +68,14 @@
"description": "Options to pass to the 'docker-compose run' command",
"examples": [["service-ports", "rm"]]
},
"compose_run_options": {
"type": "array",
"items": {
"type": "string"
},
"description": "DEPRECATED: Options to pass to the 'docker-compose run' command",
"examples": [["service-ports", "rm"]]
},
"profiles": {
"type": "array",
"items": {
Expand All @@ -90,6 +98,10 @@
"type": "string",
"description": "Specifies the runner (e.g., docker_compose, kubectl)"
},
"pod": {
"type": "string",
"description": "Specifies the pod for the kubectl runner"
},
"subcommands": {
"type": "object",
"description": "Contains subcommands with the same structure as main commands",
Expand Down Expand Up @@ -213,7 +225,7 @@
}
},
"oneOf": [
{ "required": ["git", "ref"] },
{ "required": ["git"] },
{ "required": ["path"] }
]
}
Expand Down
Loading