domino-py-iisas 1.0.4__py3-none-any.whl → 1.0.5__py3-none-any.whl
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.
- domino/VERSION +1 -1
- domino/cli/utils/config-domino-local.toml +2 -12
- domino/cli/utils/platform.py +3 -31
- {domino_py_iisas-1.0.4.dist-info → domino_py_iisas-1.0.5.dist-info}/METADATA +1 -1
- {domino_py_iisas-1.0.4.dist-info → domino_py_iisas-1.0.5.dist-info}/RECORD +9 -9
- {domino_py_iisas-1.0.4.dist-info → domino_py_iisas-1.0.5.dist-info}/WHEEL +0 -0
- {domino_py_iisas-1.0.4.dist-info → domino_py_iisas-1.0.5.dist-info}/entry_points.txt +0 -0
- {domino_py_iisas-1.0.4.dist-info → domino_py_iisas-1.0.5.dist-info}/licenses/LICENSE +0 -0
- {domino_py_iisas-1.0.4.dist-info → domino_py_iisas-1.0.5.dist-info}/top_level.txt +0 -0
domino/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.5
|
|
@@ -26,19 +26,9 @@ DOMINO_DB_USER = "postgres"
|
|
|
26
26
|
DOMINO_DB_PASSWORD = "postgres"
|
|
27
27
|
DOMINO_DB_NAME = "postgres"
|
|
28
28
|
DOMINO_CREATE_DEFAULT_USER = true
|
|
29
|
-
DOMINO_POSTGRES_PORT_HOST = 5433
|
|
30
|
-
|
|
31
|
-
[domino_rest]
|
|
32
|
-
DOMINO_REST_PORT_HOST = 8000
|
|
33
29
|
|
|
34
30
|
[domino_frontend]
|
|
35
|
-
|
|
31
|
+
API_URL = "http://localhost:80/api"
|
|
36
32
|
|
|
37
33
|
[dev]
|
|
38
|
-
DOMINO_LOCAL_DOMINO_PACKAGE=""
|
|
39
|
-
|
|
40
|
-
[flower]
|
|
41
|
-
FLOWER_PORT_HOST = 5555
|
|
42
|
-
|
|
43
|
-
[docker_proxy]
|
|
44
|
-
DOCKER_PROXY_PORT_HOST = 2376
|
|
34
|
+
DOMINO_LOCAL_DOMINO_PACKAGE=""
|
domino/cli/utils/platform.py
CHANGED
|
@@ -181,42 +181,12 @@ def create_platform(install_airflow: bool = True, use_gpu: bool = False) -> None
|
|
|
181
181
|
listenAddress="0.0.0.0",
|
|
182
182
|
protocol="TCP"
|
|
183
183
|
),
|
|
184
|
-
dict(
|
|
185
|
-
containerPort=2376,
|
|
186
|
-
hostPort=platform_config['docker_proxy'].get('DOCKER_PROXY_PORT_HOST', 2376),
|
|
187
|
-
listenAddress="0.0.0.0",
|
|
188
|
-
protocol="TCP"
|
|
189
|
-
),
|
|
190
|
-
dict(
|
|
191
|
-
containerPort=3000,
|
|
192
|
-
hostPort=platform_config['domino_frontend'].get('DOMINO_FRONTEND_PORT_HOST', 3000),
|
|
193
|
-
listenAddress="0.0.0.0",
|
|
194
|
-
protocol="TCP"
|
|
195
|
-
),
|
|
196
|
-
dict(
|
|
197
|
-
containerPort=5433,
|
|
198
|
-
hostPort=platform_config['domino_db'].get('DOMINO_POSTGRES_PORT_HOST', 5433),
|
|
199
|
-
listenAddress="0.0.0.0",
|
|
200
|
-
protocol="TCP"
|
|
201
|
-
),
|
|
202
|
-
dict(
|
|
203
|
-
containerPort=5555,
|
|
204
|
-
hostPort=platform_config['flower'].get('FLOWER_PORT_HOST', 5555),
|
|
205
|
-
listenAddress="0.0.0.0",
|
|
206
|
-
protocol="TCP"
|
|
207
|
-
),
|
|
208
|
-
dict(
|
|
209
|
-
containerPort=8000,
|
|
210
|
-
hostPort=platform_config['domino_rest'].get('DOMINO_REST_PORT_HOST', 8000),
|
|
211
|
-
listenAddress="0.0.0.0",
|
|
212
|
-
protocol="TCP"
|
|
213
|
-
),
|
|
214
184
|
dict(
|
|
215
185
|
containerPort=8080,
|
|
216
186
|
hostPort=platform_config['airflow'].get('AIRFLOW_APISERVER_PORT_HOST', 8080),
|
|
217
187
|
listenAddress="0.0.0.0",
|
|
218
188
|
protocol="TCP"
|
|
219
|
-
)
|
|
189
|
+
)
|
|
220
190
|
]
|
|
221
191
|
),
|
|
222
192
|
dict(
|
|
@@ -331,6 +301,8 @@ def create_platform(install_airflow: bool = True, use_gpu: bool = False) -> None
|
|
|
331
301
|
"image": domino_frontend_image,
|
|
332
302
|
"apiEnv": "dev" if platform_config['kind']["DOMINO_DEPLOY_MODE"] in ['local-k8s-dev', 'local-k8s'] else 'prod',
|
|
333
303
|
"deployMode": platform_config['kind']["DOMINO_DEPLOY_MODE"],
|
|
304
|
+
"apiUrl": platform_config['domino_frontend'].get('API_URL', 'http://localhost:{}/api'.format(platform_config['kind'].get('HTTP_PORT_HOST', 80))),
|
|
305
|
+
"baseName": platform_config['domino_frontend'].get('BASE_NAME', '/')
|
|
334
306
|
},
|
|
335
307
|
"rest": {
|
|
336
308
|
"enabled": True,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: domino-py-iisas
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.5
|
|
4
4
|
Summary: Fork of the original Python package for Domino.
|
|
5
5
|
Author-email: Stefan Dlugolinsky <stefan.dlugolinsky@savba.sk>, Luiz Tauffer <luiz@taufferconsulting.com>, Vinicius Vaz <vinicius@taufferconsulting.com>
|
|
6
6
|
License:
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
domino/VERSION,sha256=
|
|
1
|
+
domino/VERSION,sha256=jFS_q38a6b0acUjq5B57Co9K03JuDKxw-COi1F255gw,6
|
|
2
2
|
domino/__init__.py,sha256=I3dmIBqKnlYjo-VFCDdA_7YUqsNT-i9QtQqXnV9pW4U,233
|
|
3
3
|
domino/base_piece.py,sha256=LZE08XqU63Zq_W7G9DuFk8ZEjKNhgSE7pumXBctW9BE,17610
|
|
4
4
|
domino/logger.py,sha256=08Km3_NmgYH3HrxJjZJWGSmOv7dE5E5xvo9_ZnKut_o,889
|
|
@@ -8,11 +8,11 @@ domino/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
8
8
|
domino/cli/cli.py,sha256=efdDEFw08ieb4gcVTMMkaAyo7e-6OpLq34q5ExUM8vI,14372
|
|
9
9
|
domino/cli/tests/test_create_piece.py,sha256=DQuJDG8kVEtDHxQjh4uttbkp21vtsmsBPvZhAV8vvjs,3305
|
|
10
10
|
domino/cli/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
domino/cli/utils/config-domino-local.toml,sha256=
|
|
11
|
+
domino/cli/utils/config-domino-local.toml,sha256=VGwEBPygTzyaiGdt2B3QAOVs0MyjmwCN5VZbtwp1A8k,852
|
|
12
12
|
domino/cli/utils/constants.py,sha256=lRIRQawTyOePcMoZYggtER3kFDv_Pzu5o66v7h_kQ-c,246
|
|
13
13
|
domino/cli/utils/docker-compose.yaml,sha256=ysWa5x_jSY8TZzGaodgh6MJVvrK7SDeA4NrGhF4MSJU,12664
|
|
14
14
|
domino/cli/utils/pieces_repository.py,sha256=5lkUZtY3PH5pSwenNDi2kGfxWLL4v2uWLNYI62Sd16Q,22760
|
|
15
|
-
domino/cli/utils/platform.py,sha256=
|
|
15
|
+
domino/cli/utils/platform.py,sha256=rYeCH0wQhn6HUG8j6o_YMKoCQYZldNo0yQVrJ_JdnD4,41979
|
|
16
16
|
domino/cli/utils/templates.py,sha256=b7YhxqblrWeFhxmYiFh_iqRcJxIUZgPiaWhOHeb0shY,1982
|
|
17
17
|
domino/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
18
|
domino/client/domino_backend_client.py,sha256=GuE4nZYt7Ke8vrnSa7o2VRAUYvy19RdyYwJD6WpoAik,2861
|
|
@@ -63,9 +63,9 @@ domino/utils/__init__.py,sha256=7CET-zz6y1EBuBJQLgF3rXNhKOSj32Z3X_3mKUAirII,231
|
|
|
63
63
|
domino/utils/metadata_default.py,sha256=4tbmWoVuoRMxd2c2vkwKYLkTTDf1I0OooXB_P5DGWXM,455
|
|
64
64
|
domino/utils/piece_generator.py,sha256=Yww5PwH-EDLqNrnWAinCgpG5-uQSVi_3UbMw4HZCE-E,514
|
|
65
65
|
domino/utils/workflow_shared_storage.py,sha256=USt_Q6nRGrtbcgrWHjtEvBDMSGSDd3BwUrZVe0RItH0,272
|
|
66
|
-
domino_py_iisas-1.0.
|
|
67
|
-
domino_py_iisas-1.0.
|
|
68
|
-
domino_py_iisas-1.0.
|
|
69
|
-
domino_py_iisas-1.0.
|
|
70
|
-
domino_py_iisas-1.0.
|
|
71
|
-
domino_py_iisas-1.0.
|
|
66
|
+
domino_py_iisas-1.0.5.dist-info/licenses/LICENSE,sha256=ZOzivsSTOmVUr23IVL-IMv2nDRhWBp4hVxwYTNe4fBc,11353
|
|
67
|
+
domino_py_iisas-1.0.5.dist-info/METADATA,sha256=sWbRQkyXxVp3vvacgOYe1CKRia8IdcjCILeFLJnVuyg,15476
|
|
68
|
+
domino_py_iisas-1.0.5.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
69
|
+
domino_py_iisas-1.0.5.dist-info/entry_points.txt,sha256=EBX10akoWncqaYPjad7nTNFpge2bbooLSZJGPT-Ivzk,46
|
|
70
|
+
domino_py_iisas-1.0.5.dist-info/top_level.txt,sha256=Mo0jr96Ke1GnB5Qa_U9nSu_7yRSWsu5dvPJk8RFiwRw,7
|
|
71
|
+
domino_py_iisas-1.0.5.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|