dip 8.2.1 → 8.2.3
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 +19 -7
- 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,11 +98,15 @@
|
|
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",
|
96
108
|
"patternProperties": {
|
97
|
-
"^[\\w
|
109
|
+
"^[\\w\\-.:/\\s]+$": {
|
98
110
|
"$ref": "#/definitions/interaction_command"
|
99
111
|
}
|
100
112
|
},
|
@@ -142,7 +154,7 @@
|
|
142
154
|
"type": "object",
|
143
155
|
"description": "Defines the commands and their configurations",
|
144
156
|
"patternProperties": {
|
145
|
-
"^[\\w
|
157
|
+
"^[\\w\\-.:/\\s]+$": {
|
146
158
|
"$ref": "#/definitions/interaction_command"
|
147
159
|
}
|
148
160
|
},
|
@@ -191,13 +203,13 @@
|
|
191
203
|
"description": "Contains infrastructure services configuration",
|
192
204
|
"additionalProperties": false,
|
193
205
|
"patternProperties": {
|
194
|
-
"^[\\w
|
206
|
+
"^[\\w\\-.:/\\s]+$": {
|
195
207
|
"type": "object",
|
196
208
|
"additionalProperties": false,
|
197
209
|
"properties": {
|
198
210
|
"git": {
|
199
211
|
"type": "string",
|
200
|
-
"pattern": "^(git@|git://|https?://)[\\w\\d
|
212
|
+
"pattern": "^(git@|git://|https?://)[\\w\\d.@:/\\-]+$",
|
201
213
|
"description": "Git repository URL for the infrastructure component",
|
202
214
|
"examples": ["https://github.com/mycompany/redis-config.git"]
|
203
215
|
},
|
@@ -213,12 +225,12 @@
|
|
213
225
|
}
|
214
226
|
},
|
215
227
|
"oneOf": [
|
216
|
-
{ "required": ["git"
|
228
|
+
{ "required": ["git"] },
|
217
229
|
{ "required": ["path"] }
|
218
230
|
]
|
219
231
|
}
|
220
232
|
}
|
221
233
|
}
|
222
234
|
},
|
223
|
-
"required": ["version"
|
235
|
+
"required": ["version"]
|
224
236
|
}
|