dip 8.2.2 → 8.2.3
Sign up to get free protection for your applications and to get access to all the features.
- 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: cef4c76593a2af78a46a3e9fb36d642f912b87dc8b939e1e0a580f62c3f5d33b
|
4
|
+
data.tar.gz: e2afdd5cfb201523ad972b6cc41997eba442818613aa1ced80fe05e70e57d43b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54352e613f428a907d2ba006cadac8ec34272830986724a91a80ca733bda2f08321d77bc64320c5912fd2242d2f9dbb7b4a1db962cf56230f36c9883f74571e9
|
7
|
+
data.tar.gz: ce55bf08b13e369da2189d9e416249a5cb7421edc44066eae3c87645f6a373af92ea498aa3a24323f588e492701769ae6a555a4911f465b3f0e647eea28384d4
|
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" },
|
@@ -68,6 +68,14 @@
|
|
68
68
|
"description": "Options to pass to the 'docker-compose run' command",
|
69
69
|
"examples": [["service-ports", "rm"]]
|
70
70
|
},
|
71
|
+
"compose_run_options": {
|
72
|
+
"type": "array",
|
73
|
+
"items": {
|
74
|
+
"type": "string"
|
75
|
+
},
|
76
|
+
"description": "DEPRECATED: Options to pass to the 'docker-compose run' command",
|
77
|
+
"examples": [["service-ports", "rm"]]
|
78
|
+
},
|
71
79
|
"profiles": {
|
72
80
|
"type": "array",
|
73
81
|
"items": {
|
@@ -90,6 +98,10 @@
|
|
90
98
|
"type": "string",
|
91
99
|
"description": "Specifies the runner (e.g., docker_compose, kubectl)"
|
92
100
|
},
|
101
|
+
"pod": {
|
102
|
+
"type": "string",
|
103
|
+
"description": "Specifies the pod for the kubectl runner"
|
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
|
}
|