Skip to content

Commit

Permalink
fix: Update schema.json (#181)
Browse files Browse the repository at this point in the history
  • Loading branch information
bibendi authored Nov 26, 2024
1 parent 5ef7cc5 commit 38cbf08
Showing 1 changed file with 14 additions and 2 deletions.
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

0 comments on commit 38cbf08

Please sign in to comment.