dip 8.2.2 → 8.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/dip/version.rb +1 -1
- data/schema.json +14 -2
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 517d3e67f9ef9adb70103d135dd6569b2adcc95f8b47c2263ff24627b9b0af87
|
4
|
+
data.tar.gz: 223107379a499fcd0724d30b4cab55336a84d1c196f33d71895d9459411fce24
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1347cebef78a36db54d5842376755eb3329021dbe780c1ba7fdde0bc2662b796ffbcbc731c4472ba83bb3dd5f67175d1351aea9970397c40fcae346265ac783c
|
7
|
+
data.tar.gz: 4b4cd090e8b944a0cba7b98f0ffd422cc6bfb0e1e53bc25339ded9a4924884321206c30fc4862e3bcddbf87b9790e317b9c718aa36d3d4d4c678a16ae38d9f2a
|
data/lib/dip/version.rb
CHANGED
data/schema.json
CHANGED
@@ -9,7 +9,7 @@
|
|
9
9
|
"type": "object",
|
10
10
|
"description": "Defines environment variables",
|
11
11
|
"additionalProperties": {
|
12
|
-
"type": "string"
|
12
|
+
"type": ["string", "boolean", "number"]
|
13
13
|
},
|
14
14
|
"examples": [
|
15
15
|
{ "RAILS_ENV": "development" },
|
@@ -90,6 +90,18 @@
|
|
90
90
|
"type": "string",
|
91
91
|
"description": "Specifies the runner (e.g., docker_compose, kubectl)"
|
92
92
|
},
|
93
|
+
"pod": {
|
94
|
+
"type": "string",
|
95
|
+
"description": "Specifies the pod for the kubectl runner"
|
96
|
+
},
|
97
|
+
"compose_run_options": {
|
98
|
+
"type": "array",
|
99
|
+
"items": {
|
100
|
+
"type": "string"
|
101
|
+
},
|
102
|
+
"description": "DEPRECATED: Options to pass to the 'docker-compose run' command",
|
103
|
+
"examples": [["service-ports", "rm"]]
|
104
|
+
},
|
93
105
|
"subcommands": {
|
94
106
|
"type": "object",
|
95
107
|
"description": "Contains subcommands with the same structure as main commands",
|
@@ -213,7 +225,7 @@
|
|
213
225
|
}
|
214
226
|
},
|
215
227
|
"oneOf": [
|
216
|
-
{ "required": ["git"
|
228
|
+
{ "required": ["git"] },
|
217
229
|
{ "required": ["path"] }
|
218
230
|
]
|
219
231
|
}
|