vantage6 5.0.0a33__py3-none-any.whl → 5.0.0a34__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.
Potentially problematic release.
This version of vantage6 might be problematic. Click here for more details.
- vantage6/cli/algostore/new.py +24 -46
- vantage6/cli/algostore/start.py +33 -67
- vantage6/cli/algostore/stop.py +75 -40
- vantage6/cli/common/new.py +60 -0
- vantage6/cli/common/start.py +17 -223
- vantage6/cli/common/stop.py +1 -1
- vantage6/cli/common/utils.py +212 -16
- vantage6/cli/configuration_manager.py +65 -0
- vantage6/cli/configuration_wizard.py +95 -76
- vantage6/cli/context/algorithm_store.py +7 -6
- vantage6/cli/context/base_server.py +22 -30
- vantage6/cli/context/node.py +4 -0
- vantage6/cli/context/server.py +16 -7
- vantage6/cli/globals.py +12 -11
- vantage6/cli/node/common/__init__.py +1 -1
- vantage6/cli/node/create_private_key.py +9 -6
- vantage6/cli/node/set_api_key.py +7 -4
- vantage6/cli/node/start.py +1 -1
- vantage6/cli/node/stop.py +7 -7
- vantage6/cli/server/import_.py +1 -2
- vantage6/cli/server/list.py +0 -3
- vantage6/cli/server/new.py +13 -51
- vantage6/cli/server/shell.py +1 -1
- vantage6/cli/server/start.py +17 -17
- vantage6/cli/server/stop.py +64 -15
- vantage6/cli/template/algo_store_config.j2 +195 -22
- vantage6/cli/template/server_config.j2 +255 -33
- {vantage6-5.0.0a33.dist-info → vantage6-5.0.0a34.dist-info}/METADATA +4 -4
- {vantage6-5.0.0a33.dist-info → vantage6-5.0.0a34.dist-info}/RECORD +31 -31
- vantage6/cli/template/server_import_config.j2 +0 -31
- {vantage6-5.0.0a33.dist-info → vantage6-5.0.0a34.dist-info}/WHEEL +0 -0
- {vantage6-5.0.0a33.dist-info → vantage6-5.0.0a34.dist-info}/entry_points.txt +0 -0
|
@@ -1,34 +1,256 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
1
|
+
# Override the chart name
|
|
2
|
+
nameOverride: {{ nameOverride | default('vantage6-server') }}
|
|
3
|
+
# Optional, by default the Release.Namespace is used
|
|
4
|
+
# namespace: vantage6-server
|
|
5
|
+
server:
|
|
6
|
+
# The description of the server
|
|
7
|
+
description: {{ server.description | default('Vantage6 server version 5') }}
|
|
8
|
+
|
|
9
|
+
# The external URL of the server
|
|
10
|
+
baseUrl: {{ server.baseUrl | default('http://localhost:7601') }}
|
|
11
|
+
apiPath: {{ server.apiPath | default('/server') }}
|
|
12
|
+
|
|
13
|
+
# Keycloak configuration
|
|
14
|
+
keycloakUrl: {{ server.keycloakUrl }}
|
|
15
|
+
keycloakRealm: {{ server.keycloakRealm | default('vantage6') }}
|
|
16
|
+
keycloakAdminUsername: {{ server.keycloakAdminUsername | default('admin') }}
|
|
17
|
+
keycloakAdminPassword: {{ server.keycloakAdminPassword | default('admin') }}
|
|
18
|
+
keycloakAdminClient: {{ server.keycloakAdminClient | default('backend-admin-client') }}
|
|
19
|
+
keycloakAdminClientSecret: {{ server.keycloakAdminClientSecret | default('myadminclientsecret') }}
|
|
20
|
+
{% if server.keycloak is defined %}
|
|
21
|
+
keycloak:
|
|
22
|
+
manage_users_and_nodes: {{ server.keycloak.manage_users_and_nodes | default(true) }}
|
|
23
|
+
{% endif %}
|
|
24
|
+
{% if server.keycloak is not defined %}
|
|
25
|
+
keycloak:
|
|
26
|
+
manage_users_and_nodes: true
|
|
27
|
+
{% endif %}
|
|
28
|
+
|
|
29
|
+
{% if server.internal is defined %}
|
|
30
|
+
internal:
|
|
31
|
+
port: {{ server.internal.port | default(7601) }}
|
|
32
|
+
{% endif %}
|
|
33
|
+
{% if server.internal is not defined %}
|
|
34
|
+
internal:
|
|
35
|
+
port: 7601
|
|
36
|
+
{% endif %}
|
|
37
|
+
|
|
38
|
+
port: {{ server.port | default(7601) }}
|
|
39
|
+
|
|
40
|
+
# The number of replicas of the server
|
|
41
|
+
replications: {{ server.replications | default(1) }}
|
|
42
|
+
|
|
43
|
+
# The image used to start the server
|
|
44
|
+
image: {{ server.image | default('harbor2.vantage6.ai/infrastructure/server:latest') }}
|
|
45
|
+
|
|
46
|
+
logging:
|
|
47
|
+
# Controls the logging output level. Could be one of the following
|
|
48
|
+
# levels: CRITICAL, ERROR, WARNING, INFO, DEBUG, NOTSET
|
|
49
|
+
level: {{ server.logging.level | default('INFO') }}
|
|
50
|
+
|
|
51
|
+
# Location to the log file
|
|
52
|
+
file: {{ server.logging.file | default('server.log') }}
|
|
53
|
+
|
|
54
|
+
# Size in kb of a single log file
|
|
55
|
+
max_size: {{ server.logging.max_size | default(1024) }}
|
|
56
|
+
use_console: {{ server.logging.use_console | default(true) }}
|
|
57
|
+
|
|
58
|
+
# Date format for the log file
|
|
59
|
+
datefmt: "{{ server.logging.datefmt | default('%Y-%m-%d %H:%M:%S') }}"
|
|
60
|
+
|
|
61
|
+
# Format for the log file
|
|
62
|
+
format: "{{ server.logging.format | default('%(asctime)s - %(name)-14s - %(levelname)-8s - %(message)s') }}"
|
|
63
|
+
|
|
64
|
+
# Maximum number of log files to keep. Log files are rotated when the size of the
|
|
65
|
+
# current log file exceeds `max_size`.
|
|
66
|
+
backup_count: {{ server.logging.backup_count | default(5) }}
|
|
67
|
+
|
|
68
|
+
# Loggers to include in the log file
|
|
69
|
+
loggers:
|
|
70
|
+
{% if server.logging.loggers is defined %}
|
|
71
|
+
{% for logger in server.logging.loggers %}
|
|
72
|
+
- level: {{ logger.level }}
|
|
73
|
+
name: {{ logger.name }}
|
|
74
|
+
{% endfor %}
|
|
75
|
+
{% endif %}
|
|
76
|
+
{% if server.logging.loggers is not defined %}
|
|
77
|
+
- level: warning
|
|
78
|
+
name: urllib3
|
|
79
|
+
- level: warning
|
|
80
|
+
name: socketIO-client
|
|
81
|
+
- level: warning
|
|
82
|
+
name: socketio.server
|
|
83
|
+
- level: warning
|
|
84
|
+
name: engineio.server
|
|
85
|
+
- level: warning
|
|
86
|
+
name: sqlalchemy.engine
|
|
87
|
+
{% endif %}
|
|
88
|
+
|
|
89
|
+
{% if server.jwt is defined and server.jwt.secret is defined %}
|
|
90
|
+
# Setting constant secret for the JWT token. This is not recommended for production
|
|
91
|
+
# environments.
|
|
92
|
+
jwt:
|
|
93
|
+
secret: {{ server.jwt.secret }}
|
|
94
|
+
{% endif %}
|
|
95
|
+
|
|
96
|
+
{% if server.dev is defined %}
|
|
97
|
+
dev:
|
|
98
|
+
host_uri: {{ server.dev.host_uri | default('host.docker.internal') }}
|
|
99
|
+
# This should be set to true if you are running the algorithm store in the same
|
|
100
|
+
# cluster and namespace as the server
|
|
101
|
+
store_in_local_cluster: {{ server.dev.store_in_local_cluster | default(false) }}
|
|
102
|
+
{% endif %}
|
|
103
|
+
|
|
104
|
+
# If you want to couple algorithm stores to the server on startup, you can add them here.
|
|
105
|
+
# The name is used to identify the algorithm store in the server's database.
|
|
106
|
+
# The url is the URL of the algorithm store's API.
|
|
107
|
+
{% if server.algorithm_stores is defined %}
|
|
108
|
+
algorithm_stores:
|
|
109
|
+
{% for store in server.algorithm_stores %}
|
|
110
|
+
- name: {{ store.name }}
|
|
111
|
+
url: {{ store.url }}
|
|
112
|
+
{% endfor %}
|
|
113
|
+
{% else %}
|
|
114
|
+
# algorithm_stores:
|
|
115
|
+
# - name: local store
|
|
116
|
+
# url: http://localhost:7602/api
|
|
117
|
+
{% endif %}
|
|
118
|
+
|
|
119
|
+
# Cleanup settings: This is used to cleanup the database from old results.
|
|
120
|
+
# Every hour, results older than the threshold for completed runs are deleted.
|
|
121
|
+
# Disabled unless you specify this option. Careful! Make sure you have regular
|
|
122
|
+
# backups of your database before enabling this feature, as a wrong configuration
|
|
123
|
+
# could lead to data loss.
|
|
124
|
+
{% if server.runs_data_cleanup_days is defined %}
|
|
125
|
+
runs_data_cleanup_days: {{ server.runs_data_cleanup_days }}
|
|
126
|
+
{% endif %}
|
|
127
|
+
{% if server.runs_data_cleanup_days is not defined %}
|
|
128
|
+
# runs_data_cleanup_days: 30
|
|
129
|
+
{% endif %}
|
|
130
|
+
# Whether to also delete the algorithm arguments of the runs. False by default.
|
|
131
|
+
{% if server.runs_data_cleanup_include_args is defined %}
|
|
132
|
+
runs_data_cleanup_include_args: {{ server.runs_data_cleanup_include_args }}
|
|
133
|
+
{% endif %}
|
|
134
|
+
{% if server.runs_data_cleanup_include_args is not defined %}
|
|
135
|
+
# runs_data_cleanup_include_args: false
|
|
136
|
+
{% endif %}
|
|
137
|
+
|
|
138
|
+
# Settings for enabling monitoring of vantage6 nodes resource usage (e.g. CPU, memory).
|
|
139
|
+
# This is done using Prometheus. There are two components to this:
|
|
140
|
+
# 1. The Prometheus exporter (running as part of the vantage6 server), which collects
|
|
141
|
+
# the metrics from the nodes.
|
|
142
|
+
# 2. The Prometheus server (running as a separate Docker container), which scrapes the
|
|
143
|
+
# metrics exposed by the Prometheus exporter and stores them.
|
|
144
|
+
# The exporter is started by default when the server starts (if prometheus is enabled).
|
|
145
|
+
# The Prometheus server can be started separately.
|
|
146
|
+
prometheus:
|
|
147
|
+
# Set to true to enable Prometheus reporting. Default is false.
|
|
148
|
+
{% if server.prometheus is defined %}
|
|
149
|
+
enabled: {{ server.prometheus.enabled | default(false) }}
|
|
150
|
+
{% else %}
|
|
151
|
+
enabled: false
|
|
152
|
+
{% endif %}
|
|
153
|
+
# Set to true to start the Prometheus server when starting the server
|
|
154
|
+
{% if server.prometheus is defined and server.prometheus.start_with_server is defined %}
|
|
155
|
+
start_with_server: {{ server.prometheus.start_with_server }}
|
|
156
|
+
{% else %}
|
|
157
|
+
# start_with_server: false
|
|
158
|
+
{% endif %}
|
|
159
|
+
# The port on which the Prometheus exporter will be available. This is the port that the Prometheus server will scrape.
|
|
160
|
+
# Note: The Prometheus server assumes the exporter is accessible via the Docker container's hostname.
|
|
161
|
+
# Ensure that Prometheus is in the same Docker network as the vantage6 server to resolve the hostname.
|
|
162
|
+
{% if server.prometheus is defined and server.prometheus.exporter_port is defined %}
|
|
163
|
+
exporter_port: {{ server.prometheus.exporter_port }}
|
|
164
|
+
{% else %}
|
|
165
|
+
# exporter_port: 7603
|
|
166
|
+
{% endif %}
|
|
167
|
+
|
|
168
|
+
# set up with which origins the server should allow CORS requests. The default
|
|
169
|
+
# is to allow all origins. If you want to restrict this, you can specify a list
|
|
170
|
+
# of origins here. Below are examples to allow requests from the Cotopaxi UI, and
|
|
171
|
+
# port 7600 on localhost. Usually, only the UI needs to access the server.
|
|
172
|
+
{% if server.cors_allowed_origins is defined %}
|
|
173
|
+
cors_allowed_origins:
|
|
174
|
+
{% for origin in server.cors_allowed_origins %}
|
|
175
|
+
- {{ origin }}
|
|
176
|
+
{% endfor %}
|
|
177
|
+
{% else %}
|
|
178
|
+
# cors_allowed_origins:
|
|
179
|
+
# - https://portal.cotopaxi.vantage6.ai
|
|
180
|
+
# - http://localhost:7600
|
|
181
|
+
{% endif %}
|
|
182
|
+
|
|
183
|
+
rabbitmq:
|
|
184
|
+
# The image of the RabbitMQ server
|
|
185
|
+
image:
|
|
186
|
+
{% if rabbitmq.image is defined %}
|
|
187
|
+
repository: {{ rabbitmq.image.repository | default('rabbitmq') }}
|
|
188
|
+
tag: {{ rabbitmq.image.tag | default('3-management') }}
|
|
189
|
+
{% else %}
|
|
190
|
+
repository: rabbitmq
|
|
191
|
+
tag: 3-management
|
|
192
|
+
{% endif %}
|
|
193
|
+
|
|
194
|
+
# The username of the RabbitMQ server
|
|
195
|
+
username: {{ rabbitmq.username | default('rabbitmquser') }}
|
|
196
|
+
|
|
197
|
+
# The password of the RabbitMQ server
|
|
198
|
+
password: {{ rabbitmq.password | default('rabbitmquserpassword') }}
|
|
199
|
+
|
|
200
|
+
# The vhost of the RabbitMQ server
|
|
201
|
+
vhost: {{ rabbitmq.vhost | default('/vantage6') }}
|
|
202
|
+
|
|
203
|
+
database:
|
|
204
|
+
# whether or not to use an external database
|
|
205
|
+
external: {{ database.external | default(false) }}
|
|
206
|
+
{% if database.external is defined and database.external %}
|
|
207
|
+
# the URI of the external database
|
|
208
|
+
uri: {{ database.uri | default('postgresql://vantage6:vantage6@localhost:5432/vantage6') }}
|
|
209
|
+
{% else %}
|
|
210
|
+
# The image of the database
|
|
211
|
+
image:
|
|
212
|
+
{% if database.image is defined %}
|
|
213
|
+
repository: {{ database.image.repository | default('postgres') }}
|
|
214
|
+
tag: {{ database.image.tag | default('13') }}
|
|
215
|
+
{% else %}
|
|
216
|
+
repository: postgres
|
|
217
|
+
tag: 13
|
|
218
|
+
{% endif %}
|
|
219
|
+
|
|
220
|
+
# The username of the database
|
|
221
|
+
username: {{ database.username | default('vantage6') }}
|
|
222
|
+
|
|
223
|
+
# The password of the database
|
|
224
|
+
password: {{ database.password | default('vantage6') }}
|
|
225
|
+
|
|
226
|
+
# The name of the database
|
|
227
|
+
name: {{ database.name | default('vantage6') }}
|
|
228
|
+
|
|
229
|
+
#hostpath of the database mount
|
|
230
|
+
volumePath: {{ database.volumePath }}
|
|
231
|
+
|
|
232
|
+
# The name of the k8s node where the database is running
|
|
233
|
+
k8sNodeName: {{ database.k8sNodeName }}
|
|
234
|
+
{% endif %}
|
|
235
|
+
|
|
31
236
|
ui:
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
{{
|
|
237
|
+
|
|
238
|
+
# The image of the UI
|
|
239
|
+
image: {{ ui.image | default('harbor2.vantage6.ai/infrastructure/ui:latest') }}
|
|
240
|
+
# Service port for the UI
|
|
241
|
+
port: 7600
|
|
242
|
+
# keycloak realm
|
|
243
|
+
keycloakRealm: {{ ui.keycloakRealm | default('vantage6') }}
|
|
244
|
+
# keycloak client
|
|
245
|
+
keycloakClient: {{ ui.keycloakClient | default('public_client') }}
|
|
246
|
+
# keycloak public URL
|
|
247
|
+
keycloakPublicUrl: {{ ui.keycloakPublicUrl | default('http://localhost:8080') }}
|
|
248
|
+
|
|
249
|
+
# Allowed algorithm stores for Bearer token inclusion (comma-separated URLs)
|
|
250
|
+
# Use "*" to allow all stores (less secure) or specify specific URLs
|
|
251
|
+
# allowedAlgorithmStores: "http://localhost:7602 https://store.cotopaxi.vantage6.ai"
|
|
252
|
+
allowedAlgorithmStores: "{{ ui.allowedAlgorithmStores | default('*') }}"
|
|
253
|
+
# Community algorithm store URL.
|
|
254
|
+
communityStoreUrl: {{ ui.communityStoreUrl | default('https://store.cotopaxi.vantage6.ai') }}
|
|
255
|
+
# Community algorithm store API path
|
|
256
|
+
communityStoreApiPath: {{ ui.communityStoreApiPath | default('/api') }}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vantage6
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.0a34
|
|
4
4
|
Summary: vantage6 command line interface
|
|
5
5
|
Author: Vantage6 Team
|
|
6
6
|
Maintainer-email: Frank Martin <f.martin@iknl.nl>, Bart van Beusekom <b.vanbeusekom@iknl.nl>
|
|
@@ -8,7 +8,7 @@ License: MIT
|
|
|
8
8
|
Requires-Python: >=3.13
|
|
9
9
|
Requires-Dist: click==8.1.3
|
|
10
10
|
Requires-Dist: colorama==0.4.6
|
|
11
|
-
Requires-Dist: copier==9.
|
|
11
|
+
Requires-Dist: copier==9.9.1
|
|
12
12
|
Requires-Dist: docker==7.1.0
|
|
13
13
|
Requires-Dist: ipython==8.10.0
|
|
14
14
|
Requires-Dist: jinja2==3.1.6
|
|
@@ -18,8 +18,8 @@ Requires-Dist: questionary==1.10.0
|
|
|
18
18
|
Requires-Dist: rich==13.5.2
|
|
19
19
|
Requires-Dist: schema==0.7.5
|
|
20
20
|
Requires-Dist: sqlalchemy==2.0.37
|
|
21
|
-
Requires-Dist: vantage6-client==5.0.
|
|
22
|
-
Requires-Dist: vantage6-common==5.0.
|
|
21
|
+
Requires-Dist: vantage6-client==5.0.0a34
|
|
22
|
+
Requires-Dist: vantage6-common==5.0.0a34
|
|
23
23
|
Provides-Extra: dev
|
|
24
24
|
Requires-Dist: black; extra == 'dev'
|
|
25
25
|
Requires-Dist: coverage==7.10.2; extra == 'dev'
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
vantage6/cli/__init__.py,sha256=8KIgMPbZTNdkYlUrB8irpsUA7KdkFdLbNbMKixOP2dE,277
|
|
2
2
|
vantage6/cli/cli.py,sha256=EeMfvBABKYauujZDR09IjpBgtbBg1sS1iJPuzre-AqM,6474
|
|
3
3
|
vantage6/cli/config.py,sha256=Jqe3VcvoxPrFlvw7cuKt4-5oyL0YTZXvpNsqPybSAYk,7973
|
|
4
|
-
vantage6/cli/configuration_manager.py,sha256=
|
|
5
|
-
vantage6/cli/configuration_wizard.py,sha256=
|
|
6
|
-
vantage6/cli/globals.py,sha256=
|
|
4
|
+
vantage6/cli/configuration_manager.py,sha256=kgQNBaQdypKsqs18s6h1Zp4CwpgcBEqWsRuRC_ZWFPE,5079
|
|
5
|
+
vantage6/cli/configuration_wizard.py,sha256=C-Z2e1oEKX2ZLIWO6y3kCwcyhtvxLC1ivcZM_8NDlDA,19613
|
|
6
|
+
vantage6/cli/globals.py,sha256=1R1XivMfzU5QmZO-UsrCX1e3im9vdun6v2pw2NUM3JI,2223
|
|
7
7
|
vantage6/cli/utils.py,sha256=mhCtsxCf8nOCaW3layW8aJGI0XAjGs0IuheCNj3o-IA,4397
|
|
8
8
|
vantage6/cli/algorithm/create.py,sha256=kRT1BlBcb0fDaB2Q988WxtA6EyAZmOW5QoU2uhbwBIo,2075
|
|
9
9
|
vantage6/cli/algorithm/generate_algorithm_json.py,sha256=huaqoadhz-2-Sy6SON9zFe_cAatvE7dtTQazvmNOgMA,19558
|
|
@@ -11,35 +11,36 @@ vantage6/cli/algorithm/update.py,sha256=WwAfTnq0kTOgePUsBzGoo1AJQqGMn82E9Bjk1wf6
|
|
|
11
11
|
vantage6/cli/algostore/attach.py,sha256=0WzLnKigJAelPpL5EaWcnRuUyQzMSofrrZfEzwDIvSw,311
|
|
12
12
|
vantage6/cli/algostore/files.py,sha256=r89VRixK_K-c44qseq58Aa2Dqf1wEf8yompQRN5AVu4,580
|
|
13
13
|
vantage6/cli/algostore/list.py,sha256=xBCnwGbuWY_rrx6jrFX8JVAEFXh8GwqwicqpxMiaSa8,418
|
|
14
|
-
vantage6/cli/algostore/new.py,sha256=
|
|
14
|
+
vantage6/cli/algostore/new.py,sha256=8ZUpW_K8m_R3MUSe9d6bl-ia3QWLeLXwmvmiv4JwpCI,1018
|
|
15
15
|
vantage6/cli/algostore/remove.py,sha256=ieQLpo2ZpblpPxaeRXdB7IO0DzTtURnveYQltW7TTSw,1643
|
|
16
|
-
vantage6/cli/algostore/start.py,sha256=
|
|
17
|
-
vantage6/cli/algostore/stop.py,sha256=
|
|
16
|
+
vantage6/cli/algostore/start.py,sha256=YjhnkLjPLVhsxpQxzPgsYc7p8Un6YJ91_OpukTso2eE,2107
|
|
17
|
+
vantage6/cli/algostore/stop.py,sha256=n6FTmXF7Np9gZgPJMF71YkRR3aK0PkK64MRjULysH_4,2927
|
|
18
18
|
vantage6/cli/common/decorator.py,sha256=KF3uFjmn00qtTSD90BLczaX-gqvlt2Kud4PJGm7P4jU,3627
|
|
19
|
-
vantage6/cli/common/
|
|
20
|
-
vantage6/cli/common/
|
|
21
|
-
vantage6/cli/common/
|
|
19
|
+
vantage6/cli/common/new.py,sha256=kY34iuNEq5mXA-XRGY3TlomAvkzzArGjGGwjZFBrGc0,2017
|
|
20
|
+
vantage6/cli/common/start.py,sha256=nhxQlqKe3g_sPISswq7tvV5Pf1rQMQWGL6BCpcgzXFQ,9078
|
|
21
|
+
vantage6/cli/common/stop.py,sha256=bdo6pA4YLu0orQ4-Ii7P_hqwQJ75kO2WMkp-0gRKVsg,2645
|
|
22
|
+
vantage6/cli/common/utils.py,sha256=AEptnTib104bTTmG6XTdDijDaz9IuV480BGcQqLMDEU,10550
|
|
22
23
|
vantage6/cli/context/__init__.py,sha256=88LSA3h_v-t8PzjCrzl0vw1jkOdNUNr3nPo-L2e9onc,2684
|
|
23
|
-
vantage6/cli/context/algorithm_store.py,sha256=
|
|
24
|
-
vantage6/cli/context/base_server.py,sha256=
|
|
25
|
-
vantage6/cli/context/node.py,sha256=
|
|
26
|
-
vantage6/cli/context/server.py,sha256=
|
|
24
|
+
vantage6/cli/context/algorithm_store.py,sha256=qTNRrCo_EWVAfSC4eg_MohSf_Ra4U3tZvB8EwZZREEw,4044
|
|
25
|
+
vantage6/cli/context/base_server.py,sha256=i0op_9mifKjJIP4I1Z-V3HRFf_WPOrBQGFvTL6pJZL8,2450
|
|
26
|
+
vantage6/cli/context/node.py,sha256=RsCO12B21ypaGn96Dz6mriA-RjS9GyptF2bSbUShjcI,7453
|
|
27
|
+
vantage6/cli/context/server.py,sha256=o2HMlDEg7RbU44AfwNPln8K64FX4SQ_IgULFY_GBhEI,4837
|
|
27
28
|
vantage6/cli/dev/create.py,sha256=WBBPG9jyNvPQVb1koHX9y3VKQmlijlq-QBsYYzqqojg,21207
|
|
28
29
|
vantage6/cli/dev/remove.py,sha256=kjmOqkMO0ZU5F-3KgQ05VlfQQCS5Ta6yLY32DU0rH7k,3917
|
|
29
30
|
vantage6/cli/dev/data/km_dataset.csv,sha256=OrYF2ympb2QndiUOX_nTFGGB1HbAp2eOvZzrQ_PqJs4,31283
|
|
30
31
|
vantage6/cli/node/attach.py,sha256=cmouPrkbIbg21_wlAe-L-ecmrKVxiDkzGmEtRaCnKQY,276
|
|
31
32
|
vantage6/cli/node/clean.py,sha256=uCty2GNuwoTybs1nIOygQLxtbleQ-rnnS6_4ieWVmCw,1199
|
|
32
|
-
vantage6/cli/node/create_private_key.py,sha256=
|
|
33
|
+
vantage6/cli/node/create_private_key.py,sha256=gmgI9Gtcx3z0esxyLw-96HcrfmAJFOjjXbVvA9ZGN3g,5129
|
|
33
34
|
vantage6/cli/node/files.py,sha256=V7bJeR8weX0Llpp6y9wQoNrRsvlotEE6e70aTJp9j6M,1331
|
|
34
35
|
vantage6/cli/node/list.py,sha256=_WZ8EBIEUlzFhVp3cR2MK5FUuQicMEZHhD8npMwKSpM,1664
|
|
35
36
|
vantage6/cli/node/new.py,sha256=D-zI20pneF8kmGZKTRj09IaMMsj7z2rhiGXegMZywik,2040
|
|
36
37
|
vantage6/cli/node/remove.py,sha256=5gylLyMa8LoavQNQv71JuwrTZN2rJwLrphl4Z0Fu6_8,3658
|
|
37
38
|
vantage6/cli/node/restart.py,sha256=bWx0n4tN8TWOy_o8lJkA7AR-H1UIbfAiPp93I5wXg1Y,3709
|
|
38
|
-
vantage6/cli/node/set_api_key.py,sha256=
|
|
39
|
-
vantage6/cli/node/start.py,sha256=
|
|
40
|
-
vantage6/cli/node/stop.py,sha256=
|
|
39
|
+
vantage6/cli/node/set_api_key.py,sha256=OYCCJ8zrbc7uXyv0uLTejqD43xXELVvR01czzG46imo,1998
|
|
40
|
+
vantage6/cli/node/start.py,sha256=hyRXp6IAuK_InKSicuDnBYwjJLUUPZUfC8d1nYPAdO4,12226
|
|
41
|
+
vantage6/cli/node/stop.py,sha256=DkUtaYRghQz9UR9FG8zRUR4aK0GVlGJGs_8Y5jXSao4,4156
|
|
41
42
|
vantage6/cli/node/version.py,sha256=X921xyIvIPYObPac2Si5msZ2tay5ySidnPWmGj1ilZw,1959
|
|
42
|
-
vantage6/cli/node/common/__init__.py,sha256=
|
|
43
|
+
vantage6/cli/node/common/__init__.py,sha256=gYbdDajTz5Sh-buChejB8-lkMXalL85mMsMbM0OlR1Q,2868
|
|
43
44
|
vantage6/cli/prometheus/monitoring_manager.py,sha256=tNvguLonbVILqCDnHRizef5NwKnEOV0DuzTx0Bhd2HU,4906
|
|
44
45
|
vantage6/cli/prometheus/prometheus.yml,sha256=Q4i9lVknITBodHUMgarRnEsXfXTNuSdI6a-9pW4YCoI,98
|
|
45
46
|
vantage6/cli/rabbitmq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -48,19 +49,18 @@ vantage6/cli/rabbitmq/queue_manager.py,sha256=KGDGHy4NBN8O9xhjzfI7mh65i9lOQIqQwr
|
|
|
48
49
|
vantage6/cli/rabbitmq/rabbitmq.config,sha256=LYAQAEoXaF472XeJDYXc9JfWSETIzPRIR2W-JB2i7fU,136
|
|
49
50
|
vantage6/cli/server/attach.py,sha256=q1E40nGCBEFUF1p94sZoU-Ud3OXAUy4-FJqcP7Gqa7U,322
|
|
50
51
|
vantage6/cli/server/files.py,sha256=MsnLaY91F2m49mm_FpVboFrSsZiEsu175KioN1alZfk,568
|
|
51
|
-
vantage6/cli/server/import_.py,sha256=
|
|
52
|
-
vantage6/cli/server/list.py,sha256=
|
|
53
|
-
vantage6/cli/server/new.py,sha256=
|
|
52
|
+
vantage6/cli/server/import_.py,sha256=VDzEdEBtCtyF_ofzb6sSkXTNwhzBcq1-ByaHb1jfdes,4523
|
|
53
|
+
vantage6/cli/server/list.py,sha256=ioHQeBq5_SE6zNcyg9C7lqvcPwyHOyGPZ4SisFgq5-E,314
|
|
54
|
+
vantage6/cli/server/new.py,sha256=DV5AmeAxnqV9VAmKXABbrm6-uHnIwtFRJqNQLaKkv_g,1017
|
|
54
55
|
vantage6/cli/server/remove.py,sha256=6tfKfVa5dYnZAKQYo_VlGZTuiugi7sh2F3U2cZ7mCmQ,1627
|
|
55
|
-
vantage6/cli/server/shell.py,sha256=
|
|
56
|
-
vantage6/cli/server/start.py,sha256=
|
|
57
|
-
vantage6/cli/server/stop.py,sha256=
|
|
56
|
+
vantage6/cli/server/shell.py,sha256=47uGPupdG-2b8yhWvJoht-VJL29CodemcgXuo04CMBU,1601
|
|
57
|
+
vantage6/cli/server/start.py,sha256=AreESfIl24cqCvBWs5vT-EBRxvRxdMs-iXQXXXOz3zI,2550
|
|
58
|
+
vantage6/cli/server/stop.py,sha256=O7138HIE-vJGupRpUgf71cmrBc1PBjJGh9kH2P1a0p4,2997
|
|
58
59
|
vantage6/cli/server/version.py,sha256=lqrPNKMbFO22W-NarJ2TjLd7fZT43hV-sFRbzMlBniw,1307
|
|
59
60
|
vantage6/cli/server/common/__init__.py,sha256=htv0mFYa4GhIHdzA2xqUUgKhHcMh09UQERlIjIgrwOM,2062
|
|
60
|
-
vantage6/cli/template/algo_store_config.j2,sha256=
|
|
61
|
+
vantage6/cli/template/algo_store_config.j2,sha256=5XHkOv4YZU0umkC_11ilFiBXRWQtPeRgu1FfI4hJ6r0,7367
|
|
61
62
|
vantage6/cli/template/node_config.j2,sha256=Y5IA5tyG9X8MDMnJ7_ZlMVMCIA6NkZOhwM_ykTOGT4g,784
|
|
62
|
-
vantage6/cli/template/server_config.j2,sha256=
|
|
63
|
-
vantage6/cli/template/server_import_config.j2,sha256=eVoQnXfP5IejzlAYiu5GikPibMpBVrxpw-TX0Obi4J0,1782
|
|
63
|
+
vantage6/cli/template/server_config.j2,sha256=tCgceSajZ-GVG8yEufFBPWkEJKKg3BfECQmO5TzTrgw,10036
|
|
64
64
|
vantage6/cli/test/client_script.py,sha256=AHQ4fhzbtD-VcJAm0rxUDteepXNa4Bef9SKWnzobTd0,4825
|
|
65
65
|
vantage6/cli/test/feature_tester.py,sha256=AsZam91KqaAo_yIFxyZ5Hmy1ZPw83d02BDyO4TzKFQo,2631
|
|
66
66
|
vantage6/cli/test/integration_test.py,sha256=MctR_t-WEyxzFpMdc6ByTcX1BQglZiT5-CIOQXTBBWo,4034
|
|
@@ -69,7 +69,7 @@ vantage6/cli/test/algo_test_scripts/algo_test_script.py,sha256=jfzXPmpL0HlE_eq1j
|
|
|
69
69
|
vantage6/cli/test/common/diagnostic_runner.py,sha256=5-KgspYW0PncO_t_TrQzd_GSOXVwH-7bIVv-IHOxwQM,6598
|
|
70
70
|
vantage6/cli/use/context.py,sha256=mEtOfbuLtYQlRh-ypif24WtOwgpcvXObX310mmXIkWY,1362
|
|
71
71
|
vantage6/cli/use/namespace.py,sha256=MOd9H3GJwZ0cho0mmlHTRlGPLoQEiSnZIFDsFsvYw4Q,1643
|
|
72
|
-
vantage6-5.0.
|
|
73
|
-
vantage6-5.0.
|
|
74
|
-
vantage6-5.0.
|
|
75
|
-
vantage6-5.0.
|
|
72
|
+
vantage6-5.0.0a34.dist-info/METADATA,sha256=1EPx21xNrr2y_KkPHz3bvTXtsDBMwL_5e1eAsXbFtdE,1779
|
|
73
|
+
vantage6-5.0.0a34.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
74
|
+
vantage6-5.0.0a34.dist-info/entry_points.txt,sha256=RKVCMsD70s_Gp6If89uDlCphsZ9uLIOMt1gciv8EMDQ,53
|
|
75
|
+
vantage6-5.0.0a34.dist-info/RECORD,,
|
|
@@ -1,31 +0,0 @@
|
|
|
1
|
-
organizations:
|
|
2
|
-
{% for org in organizations %}
|
|
3
|
-
- name: {{ org['name'] }}
|
|
4
|
-
domain: iknl.nl
|
|
5
|
-
address1: Godebaldkwartier 419
|
|
6
|
-
address2:
|
|
7
|
-
zipcode: 3511DT
|
|
8
|
-
country: Netherlands
|
|
9
|
-
{% if org['make_admin'] %}
|
|
10
|
-
users:
|
|
11
|
-
- username: dev_admin
|
|
12
|
-
password: password
|
|
13
|
-
{% endif %}
|
|
14
|
-
public_key: LS0tLS1CRUdJTiBQVUJMSUMgS0VZLS0tLS0KTUlJQ0lqQU5CZ2txaGtpRzl3MEJBUUVGQUFPQ0FnOEFNSUlDQ2dLQ0FnRUF2eU4wWVZhWWVZcHVWRVlpaDJjeQphTjdxQndCUnB5bVVibnRQNmw2Vk9OOGE1eGwxMmJPTlQyQ1hwSEVGUFhZQTFFZThQRFZwYnNQcVVKbUlseWpRCkgyN0NhZTlIL2lJbUNVNnViUXlnTzFsbG1KRTJQWDlTNXVxendVV3BXMmRxRGZFSHJLZTErUUlDRGtGSldmSEIKWkJkczRXMTBsMWlxK252dkZ4OWY3dk8xRWlLcVcvTGhQUS83Mm52YlZLMG9nRFNaUy9Jc1NnUlk5ZnJVU1FZUApFbGVZWUgwYmI5VUdlNUlYSHRMQjBkdVBjZUV4dXkzRFF5bXh2WTg3bTlkelJsN1NqaFBqWEszdUplSDAwSndjCk80TzJ0WDVod0lLL1hEQ3h4eCt4b3cxSDdqUWdXQ0FybHpodmdzUkdYUC9wQzEvL1hXaVZSbTJWZ3ZqaXNNaisKS2VTNWNaWWpkUkMvWkRNRW1QU29rS2Y4UnBZUk1lZk0xMWtETTVmaWZIQTlPcmY2UXEyTS9SMy90Mk92VDRlRgorUzVJeTd1QWk1N0ROUkFhejVWRHNZbFFxTU5QcUpKYlRtcGlYRWFpUHVLQitZVEdDSC90TXlrRG1JK1dpejNRCjh6SVo1bk1IUnhySFNqSWdWSFdwYnZlTnVaL1Q1aE95aE1uZHU0c3NpRkJyUXN5ZGc1RlVxR3lkdE1JMFJEVHcKSDVBc1ovaFlLeHdiUm1xTXhNcjFMaDFBaDB5SUlsZDZKREY5MkF1UlNTeDl0djNaVWRndEp5VVlYN29VZS9GKwpoUHVwVU4rdWVTUndGQjBiVTYwRXZQWTdVU2RIR1diVVIrRDRzTVQ4Wjk0UVl2S2ZCanU3ZXVKWSs0Mmd2Wm9jCitEWU9ZS05qNXFER2V5azErOE9aTXZNQ0F3RUFBUT09Ci0tLS0tRU5EIFBVQkxJQyBLRVktLS0tLQo=
|
|
15
|
-
{% endfor %}
|
|
16
|
-
collaborations:
|
|
17
|
-
- name: {{ collaboration['name'] }}
|
|
18
|
-
domain: iknl.nl
|
|
19
|
-
address1: Godebaldkwartier 419
|
|
20
|
-
address2:
|
|
21
|
-
zipcode: 3511DT
|
|
22
|
-
country: Netherlands
|
|
23
|
-
participants:
|
|
24
|
-
{% if collaboration['participants'] %}
|
|
25
|
-
{% for party in collaboration['participants'] %}
|
|
26
|
-
- name: {{ party['name'] }}
|
|
27
|
-
api_key: {{ party['api_key'] }}
|
|
28
|
-
{% endfor %}
|
|
29
|
-
{% endif %}
|
|
30
|
-
tasks: ['hello-world']
|
|
31
|
-
encrypted: false
|
|
File without changes
|
|
File without changes
|