vantage6 5.0.0a35__py3-none-any.whl → 5.0.0a37__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/algorithm/generate_algorithm_json.py +9 -10
- vantage6/cli/algorithm/update.py +1 -1
- vantage6/cli/algostore/attach.py +1 -0
- vantage6/cli/algostore/files.py +3 -2
- vantage6/cli/algostore/list.py +0 -3
- vantage6/cli/algostore/new.py +3 -2
- vantage6/cli/algostore/start.py +14 -3
- vantage6/cli/algostore/stop.py +3 -0
- vantage6/cli/auth/attach.py +60 -0
- vantage6/cli/auth/files.py +16 -0
- vantage6/cli/auth/list.py +13 -0
- vantage6/cli/auth/new.py +81 -0
- vantage6/cli/auth/remove.py +31 -0
- vantage6/cli/auth/start.py +94 -0
- vantage6/cli/auth/stop.py +67 -0
- vantage6/cli/cli.py +56 -5
- vantage6/cli/common/decorator.py +24 -5
- vantage6/cli/common/new.py +27 -7
- vantage6/cli/common/start.py +49 -41
- vantage6/cli/common/stop.py +23 -5
- vantage6/cli/common/utils.py +25 -0
- vantage6/cli/config.py +10 -2
- vantage6/cli/{configuration_wizard.py → configuration_create.py} +28 -15
- vantage6/cli/configuration_manager.py +97 -17
- vantage6/cli/context/__init__.py +10 -5
- vantage6/cli/context/algorithm_store.py +11 -5
- vantage6/cli/context/auth.py +125 -0
- vantage6/cli/context/base_server.py +0 -4
- vantage6/cli/context/node.py +25 -8
- vantage6/cli/context/server.py +18 -6
- vantage6/cli/dev/clean.py +28 -0
- vantage6/cli/dev/common.py +34 -0
- vantage6/cli/dev/rebuild.py +39 -0
- vantage6/cli/dev/start.py +36 -0
- vantage6/cli/dev/stop.py +23 -0
- vantage6/cli/globals.py +5 -1
- vantage6/cli/node/common/__init__.py +26 -10
- vantage6/cli/node/list.py +5 -4
- vantage6/cli/node/new.py +13 -6
- vantage6/cli/node/set_api_key.py +1 -1
- vantage6/cli/node/start.py +19 -4
- vantage6/cli/node/stop.py +153 -7
- vantage6/cli/node/task_cleanup/__init__.py +153 -0
- vantage6/cli/node/version.py +5 -4
- vantage6/cli/prometheus/monitoring_manager.py +5 -3
- vantage6/cli/sandbox/config/base.py +101 -0
- vantage6/cli/sandbox/config/core.py +300 -0
- vantage6/cli/sandbox/config/node.py +314 -0
- vantage6/cli/sandbox/data/olympic_athletes_2016.csv +2425 -0
- vantage6/cli/sandbox/new.py +207 -0
- vantage6/cli/sandbox/populate/__init__.py +173 -0
- vantage6/cli/sandbox/populate/helpers/connect_store.py +203 -0
- vantage6/cli/sandbox/populate/helpers/delete_fixtures.py +67 -0
- vantage6/cli/sandbox/populate/helpers/load_fixtures.py +476 -0
- vantage6/cli/sandbox/populate/helpers/utils.py +35 -0
- vantage6/cli/sandbox/remove.py +173 -0
- vantage6/cli/sandbox/start.py +341 -0
- vantage6/cli/sandbox/stop.py +106 -0
- vantage6/cli/server/attach.py +1 -0
- vantage6/cli/server/common/__init__.py +6 -33
- vantage6/cli/server/import_.py +137 -119
- vantage6/cli/server/new.py +22 -7
- vantage6/cli/server/start.py +10 -1
- vantage6/cli/server/stop.py +2 -0
- vantage6/cli/template/auth_config.j2 +253 -0
- vantage6/cli/template/node_config.j2 +8 -8
- vantage6/cli/template/node_config_nonk8s.j2 +33 -0
- vantage6/cli/template/server_config.j2 +10 -7
- vantage6/cli/test/common/diagnostic_runner.py +5 -3
- vantage6/cli/use/namespace.py +2 -1
- vantage6/cli/utils.py +33 -1
- {vantage6-5.0.0a35.dist-info → vantage6-5.0.0a37.dist-info}/METADATA +4 -4
- vantage6-5.0.0a37.dist-info/RECORD +97 -0
- vantage6/cli/dev/create.py +0 -693
- vantage6/cli/dev/remove.py +0 -112
- vantage6/cli/rabbitmq/__init__.py +0 -0
- vantage6/cli/rabbitmq/definitions.py +0 -26
- vantage6/cli/rabbitmq/queue_manager.py +0 -218
- vantage6/cli/rabbitmq/rabbitmq.config +0 -8
- vantage6/cli/server/shell.py +0 -54
- vantage6-5.0.0a35.dist-info/RECORD +0 -75
- /vantage6/cli/{dev → sandbox}/data/km_dataset.csv +0 -0
- {vantage6-5.0.0a35.dist-info → vantage6-5.0.0a37.dist-info}/WHEEL +0 -0
- {vantage6-5.0.0a35.dist-info → vantage6-5.0.0a37.dist-info}/entry_points.txt +0 -0
|
@@ -109,25 +109,25 @@ node:
|
|
|
109
109
|
# Storage settings on host of the node machine. This defines where the database is
|
|
110
110
|
# stored as well as the task directory (which will contain the input/output of the
|
|
111
111
|
# tasks).
|
|
112
|
-
{% if node.persistence is defined %}
|
|
113
112
|
persistence:
|
|
114
113
|
tasks:
|
|
114
|
+
{% if node.persistence is defined and node.persistence.tasks is defined %}
|
|
115
115
|
storageClass: {{ node.persistence.tasks.storageClass | default('local-storage') }}
|
|
116
116
|
size: {{ node.persistence.tasks.size | default('10Gi') }}
|
|
117
117
|
hostPath: {{ node.persistence.tasks.hostPath | default('/path/to/where/task/files/are/stored') }}
|
|
118
|
-
|
|
119
|
-
storageClass: {{ node.persistence.database.storageClass | default('local-storage') }}
|
|
120
|
-
size: {{ node.persistence.database.size | default('5Gi') }}
|
|
121
|
-
{% else %}
|
|
122
|
-
persistence:
|
|
123
|
-
tasks:
|
|
118
|
+
{% else %}
|
|
124
119
|
storageClass: local-storage
|
|
125
120
|
size: 10Gi
|
|
126
121
|
hostPath: /path/to/where/task/files/are/stored
|
|
122
|
+
{% endif %}
|
|
127
123
|
database:
|
|
124
|
+
{% if node.persistence is defined and node.persistence.database is defined %}
|
|
125
|
+
storageClass: {{ node.persistence.database.storageClass | default('local-storage') }}
|
|
126
|
+
size: {{ node.persistence.database.size | default('5Gi') }}
|
|
127
|
+
{% else %}
|
|
128
128
|
storageClass: local-storage
|
|
129
129
|
size: 5Gi
|
|
130
|
-
|
|
130
|
+
{% endif %}
|
|
131
131
|
|
|
132
132
|
|
|
133
133
|
# It is also possible not to specify the details of the service-based databases
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
api_path: {{ api_path }}
|
|
2
|
+
encryption:
|
|
3
|
+
enabled: false
|
|
4
|
+
private_key: null
|
|
5
|
+
logging:
|
|
6
|
+
backup_count: 5
|
|
7
|
+
datefmt: '%Y-%m-%d %H:%M:%S'
|
|
8
|
+
file: {{ logging["file"] }}
|
|
9
|
+
format: '%(asctime)s - %(name)-14s - %(levelname)-8s - %(message)s'
|
|
10
|
+
level: DEBUG
|
|
11
|
+
max_size: 1024
|
|
12
|
+
use_console: true
|
|
13
|
+
loggers:
|
|
14
|
+
- level: warning
|
|
15
|
+
name: urllib3
|
|
16
|
+
- level: warning
|
|
17
|
+
name: requests
|
|
18
|
+
- level: warning
|
|
19
|
+
name: engineio.client
|
|
20
|
+
- level: warning
|
|
21
|
+
name: docker.utils.config
|
|
22
|
+
- level: warning
|
|
23
|
+
name: docker.auth
|
|
24
|
+
- level: warning
|
|
25
|
+
name: kubernetes.client.rest
|
|
26
|
+
node_proxy_port: {{ node_proxy_port }}
|
|
27
|
+
port: {{ port }}
|
|
28
|
+
server_url: {{ server_url }}
|
|
29
|
+
task_dir: {{ task_dir}}
|
|
30
|
+
dev:
|
|
31
|
+
task_dir_extension: {{ task_dir_extension }}
|
|
32
|
+
task_namespace: {{ task_namespace }}
|
|
33
|
+
{{- user_provided_config -}}
|
|
@@ -96,9 +96,9 @@ server:
|
|
|
96
96
|
{% if server.dev is defined %}
|
|
97
97
|
dev:
|
|
98
98
|
host_uri: {{ server.dev.host_uri | default('host.docker.internal') }}
|
|
99
|
-
#
|
|
100
|
-
#
|
|
101
|
-
|
|
99
|
+
# store address of the algorithm store. This can be provided to the server for
|
|
100
|
+
# a custom address of the local algorithm store within the k8s cluster.
|
|
101
|
+
store_address: {{ server.dev.store_address | default('http://vantage6-store-store.service.default.svc.cluster.local') }}
|
|
102
102
|
{% endif %}
|
|
103
103
|
|
|
104
104
|
# If you want to couple algorithm stores to the server on startup, you can add them here.
|
|
@@ -109,11 +109,13 @@ server:
|
|
|
109
109
|
{% for store in server.algorithm_stores %}
|
|
110
110
|
- name: {{ store.name }}
|
|
111
111
|
url: {{ store.url }}
|
|
112
|
+
api_path: {{ store.api_path }}
|
|
112
113
|
{% endfor %}
|
|
113
114
|
{% else %}
|
|
114
115
|
# algorithm_stores:
|
|
115
|
-
# - name:
|
|
116
|
+
# - name: Local store
|
|
116
117
|
# url: http://localhost:7602/api
|
|
118
|
+
# api_path: /api
|
|
117
119
|
{% endif %}
|
|
118
120
|
|
|
119
121
|
# Cleanup settings: This is used to cleanup the database from old results.
|
|
@@ -180,6 +182,7 @@ server:
|
|
|
180
182
|
# - http://localhost:7600
|
|
181
183
|
{% endif %}
|
|
182
184
|
|
|
185
|
+
|
|
183
186
|
rabbitmq:
|
|
184
187
|
# The image of the RabbitMQ server
|
|
185
188
|
image:
|
|
@@ -226,7 +229,7 @@ database:
|
|
|
226
229
|
# The name of the database
|
|
227
230
|
name: {{ database.name | default('vantage6') }}
|
|
228
231
|
|
|
229
|
-
#hostpath of the database mount
|
|
232
|
+
# hostpath of the database mount
|
|
230
233
|
volumePath: {{ database.volumePath }}
|
|
231
234
|
|
|
232
235
|
# The name of the k8s node where the database is running
|
|
@@ -238,7 +241,7 @@ ui:
|
|
|
238
241
|
# The image of the UI
|
|
239
242
|
image: {{ ui.image | default('harbor2.vantage6.ai/infrastructure/ui:latest') }}
|
|
240
243
|
# Service port for the UI
|
|
241
|
-
port: 7600
|
|
244
|
+
port: {{ ui.port | default(7600) }}
|
|
242
245
|
# keycloak realm
|
|
243
246
|
keycloakRealm: {{ ui.keycloakRealm | default('vantage6') }}
|
|
244
247
|
# keycloak client
|
|
@@ -253,4 +256,4 @@ ui:
|
|
|
253
256
|
# Community algorithm store URL.
|
|
254
257
|
communityStoreUrl: {{ ui.communityStoreUrl | default('https://store.cotopaxi.vantage6.ai') }}
|
|
255
258
|
# Community algorithm store API path
|
|
256
|
-
communityStoreApiPath: {{ ui.communityStoreApiPath | default('/api') }}
|
|
259
|
+
communityStoreApiPath: {{ ui.communityStoreApiPath | default('/api') }}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import json
|
|
2
|
-
|
|
3
2
|
from typing import Any
|
|
3
|
+
|
|
4
4
|
from rich.console import Console
|
|
5
5
|
from rich.table import Table
|
|
6
6
|
|
|
7
|
+
from vantage6.common import debug, info
|
|
8
|
+
|
|
7
9
|
from vantage6.client import UserClient
|
|
8
|
-
|
|
10
|
+
|
|
9
11
|
from vantage6.cli.globals import DIAGNOSTICS_IMAGE
|
|
10
12
|
|
|
11
13
|
|
|
@@ -62,7 +64,7 @@ class DiagnosticRunner:
|
|
|
62
64
|
set(self.organization_ids).intersection(online_orgs)
|
|
63
65
|
)
|
|
64
66
|
|
|
65
|
-
info(f"Running diagnostics to {len(self.organization_ids)}
|
|
67
|
+
info(f"Running diagnostics to {len(self.organization_ids)} organization(s)")
|
|
66
68
|
info(f" organizations: {self.organization_ids}")
|
|
67
69
|
info(f" collaboration: {self.collaboration_id}")
|
|
68
70
|
|
vantage6/cli/use/namespace.py
CHANGED
|
@@ -2,9 +2,10 @@ import click
|
|
|
2
2
|
import questionary
|
|
3
3
|
from kubernetes import client, config
|
|
4
4
|
|
|
5
|
+
from vantage6.common import error
|
|
6
|
+
|
|
5
7
|
from vantage6.cli.config import CliConfig
|
|
6
8
|
from vantage6.cli.utils import switch_context_and_namespace
|
|
7
|
-
from vantage6.common import error
|
|
8
9
|
|
|
9
10
|
|
|
10
11
|
@click.command()
|
vantage6/cli/utils.py
CHANGED
|
@@ -15,6 +15,34 @@ import questionary as q
|
|
|
15
15
|
from vantage6.common import error, info, warning
|
|
16
16
|
|
|
17
17
|
|
|
18
|
+
def _is_valid_k8s_dns_name(name: str) -> bool:
|
|
19
|
+
"""
|
|
20
|
+
Validate a Kubernetes DNS-1035 label.
|
|
21
|
+
|
|
22
|
+
Rules:
|
|
23
|
+
- lower case alphanumeric or '-'
|
|
24
|
+
- start with a letter
|
|
25
|
+
- end with alphanumeric
|
|
26
|
+
- length 1-63
|
|
27
|
+
"""
|
|
28
|
+
if len(name) == 0 or len(name) > 63:
|
|
29
|
+
return False
|
|
30
|
+
return re.match(r"^[a-z]([-a-z0-9]*[a-z0-9])?$", name) is not None
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
def _check_k8s_dns_name(name: str) -> None:
|
|
34
|
+
"""
|
|
35
|
+
Exit with error if the provided name is not a valid DNS-1035 label.
|
|
36
|
+
"""
|
|
37
|
+
if not _is_valid_k8s_dns_name(name):
|
|
38
|
+
error(
|
|
39
|
+
f"Invalid name: '{name}'. Name must comply with the following rules: "
|
|
40
|
+
"letters, numbers, or '-', start with a letter, end with letter or number, "
|
|
41
|
+
"and be at most 63 characters."
|
|
42
|
+
)
|
|
43
|
+
exit(1)
|
|
44
|
+
|
|
45
|
+
|
|
18
46
|
def check_config_name_allowed(name: str) -> None:
|
|
19
47
|
"""
|
|
20
48
|
Check if configuration name is allowed
|
|
@@ -73,7 +101,7 @@ def remove_file(file: str | Path, file_type: str) -> None:
|
|
|
73
101
|
warning(f"Could not remove {file_type} file: {file} does not exist")
|
|
74
102
|
|
|
75
103
|
|
|
76
|
-
def prompt_config_name(name: str | None) ->
|
|
104
|
+
def prompt_config_name(name: str | None) -> str:
|
|
77
105
|
"""
|
|
78
106
|
Get a new configuration name from the user, or simply return the name if
|
|
79
107
|
it is not None.
|
|
@@ -94,9 +122,13 @@ def prompt_config_name(name: str | None) -> None:
|
|
|
94
122
|
except KeyboardInterrupt:
|
|
95
123
|
error("Aborted by user!")
|
|
96
124
|
exit(1)
|
|
125
|
+
if not name:
|
|
126
|
+
error("No configuration name provided!")
|
|
127
|
+
exit(1)
|
|
97
128
|
if name.count(" ") > 0:
|
|
98
129
|
name = name.replace(" ", "-")
|
|
99
130
|
info(f"Replaced spaces from configuration name: {name}")
|
|
131
|
+
_check_k8s_dns_name(name)
|
|
100
132
|
return name
|
|
101
133
|
|
|
102
134
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: vantage6
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.0a37
|
|
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>
|
|
@@ -14,12 +14,12 @@ Requires-Dist: ipython==8.10.0
|
|
|
14
14
|
Requires-Dist: jinja2==3.1.6
|
|
15
15
|
Requires-Dist: kubernetes==28.1.0
|
|
16
16
|
Requires-Dist: pandas>=2.2.3
|
|
17
|
-
Requires-Dist: questionary==1.
|
|
17
|
+
Requires-Dist: questionary==2.1.1
|
|
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.0a37
|
|
22
|
+
Requires-Dist: vantage6-common==5.0.0a37
|
|
23
23
|
Provides-Extra: dev
|
|
24
24
|
Requires-Dist: black; extra == 'dev'
|
|
25
25
|
Requires-Dist: coverage==7.10.2; extra == 'dev'
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
vantage6/cli/__init__.py,sha256=8KIgMPbZTNdkYlUrB8irpsUA7KdkFdLbNbMKixOP2dE,277
|
|
2
|
+
vantage6/cli/cli.py,sha256=fIuhusnv0U7aiQ5y3B1L46NpBrjxIr9f1l_kH7k8NGw,8458
|
|
3
|
+
vantage6/cli/config.py,sha256=vaHNrgJTaAeYLpxfsXOHkYmsI1gLSipkKzyEOPXF1w4,8258
|
|
4
|
+
vantage6/cli/configuration_create.py,sha256=IehzaaLQtovlT9MnEjAQpEdXQNeFXwa1FvmPFmX0lLE,7317
|
|
5
|
+
vantage6/cli/configuration_manager.py,sha256=zsk6dkdUA9zggUeFSkzXrNZ_XkxmQf26_oZsmLYYsu8,8096
|
|
6
|
+
vantage6/cli/globals.py,sha256=VBa49tjuy9KjeF1eKtZre5QSohnWvlI1hsHeDZNMblA,2738
|
|
7
|
+
vantage6/cli/utils.py,sha256=kq1Nv8SJPG5STII9DAcTSR4yCsZcoOvM8rygA5cWa28,5199
|
|
8
|
+
vantage6/cli/algorithm/create.py,sha256=kRT1BlBcb0fDaB2Q988WxtA6EyAZmOW5QoU2uhbwBIo,2075
|
|
9
|
+
vantage6/cli/algorithm/generate_algorithm_json.py,sha256=WbSetOXr8XWh-tfvuQtIPeU0jZGQyAJEoAHH7NR9eQ4,19488
|
|
10
|
+
vantage6/cli/algorithm/update.py,sha256=oReCQaOQHfZe-o-zTLD2RyjzhwAaXRQkFHyZZ-JUb4s,1338
|
|
11
|
+
vantage6/cli/algostore/attach.py,sha256=kUbG-ke7gN_gQusojG2i7YbXMy9_urwShwTBbZp5NXo,312
|
|
12
|
+
vantage6/cli/algostore/files.py,sha256=oqjdGeoyUdCGfoSLbQA6r7GZtJtzSbXMyvojQ80xVCE,581
|
|
13
|
+
vantage6/cli/algostore/list.py,sha256=VxOjZiOXUW_6wNl58zeiYByH83NdCBlivVWsDuBhQMg,327
|
|
14
|
+
vantage6/cli/algostore/new.py,sha256=BZRJcaY6M84MOG7LPJsZWxbcJ3NCFnkTP3fwOkuyC_s,3497
|
|
15
|
+
vantage6/cli/algostore/remove.py,sha256=JsZ1L3qH2k_G3Zei-fhb_dApah91gdJKKv2vfsWK6Os,1006
|
|
16
|
+
vantage6/cli/algostore/start.py,sha256=JZZWO2aYvRtLq3nY70HMXDZG8Kz6NVnMXjs61GK-CQY,2510
|
|
17
|
+
vantage6/cli/algostore/stop.py,sha256=azqUa1gp7VqB1JxaeQKX4mhXACASubVN92VNR8vt3eU,1927
|
|
18
|
+
vantage6/cli/auth/attach.py,sha256=e4cpwckLNwjU6MZ5co2HEZtEEjoJc_C4VT9cB3X_QSw,1746
|
|
19
|
+
vantage6/cli/auth/files.py,sha256=zxlZRZ17zpj8JoRIcxBwR7s8FEBO7ehOgw_Hz-qQkwo,448
|
|
20
|
+
vantage6/cli/auth/list.py,sha256=O7r8wfsfVxvcvfLmNfECZx5ERJyWisy-37aPTnECe18,308
|
|
21
|
+
vantage6/cli/auth/new.py,sha256=JFd3DUf-GK3zWHlCO_xl_syZfZ4GAkoGqxtkKyTpm8Y,2167
|
|
22
|
+
vantage6/cli/auth/remove.py,sha256=ejeAOpINYBZNuDSIZ7LRb_ZN9FOztOl3uvAD198twhY,884
|
|
23
|
+
vantage6/cli/auth/start.py,sha256=XJ08DnwpuSWaiZG1AunMj6Y7JkDqGjs9iyOsTXTAA0w,2549
|
|
24
|
+
vantage6/cli/auth/stop.py,sha256=oWy7jDZ45zEyqSzwJr5-T14vp01D1TTcTYWxjXNtJ_U,1882
|
|
25
|
+
vantage6/cli/common/decorator.py,sha256=XjOsLMdLd8mJhOr3qcuNCPdhl6gn40OIkMC7jv2iupI,4613
|
|
26
|
+
vantage6/cli/common/new.py,sha256=10I_8NRIMjJJw9SaEBIC0Xz7w0NWSeQ4yqLntFjYpR0,3241
|
|
27
|
+
vantage6/cli/common/remove.py,sha256=sJaPF5y1Gd14I4Xg5QRBq3d1x4j2KF4Ys6wVDuqE6HQ,1697
|
|
28
|
+
vantage6/cli/common/start.py,sha256=kMDjL_sObSkx4TqhnukyD9Jb7vOGXJ9Bo0pJBcxpbsg,10095
|
|
29
|
+
vantage6/cli/common/stop.py,sha256=6QrxyjD3v7720VkfP7PPUUwY4QiAtT54jNNksmmxg1s,5821
|
|
30
|
+
vantage6/cli/common/utils.py,sha256=PeZSWRoxaDY0t2Pt0PDVF0mw7aygWQeyEAxDYcMFGSg,12476
|
|
31
|
+
vantage6/cli/context/__init__.py,sha256=5op_mZUzXxaS3ZEolscR8xu-V93-6dukgSrjZcLjzOA,2999
|
|
32
|
+
vantage6/cli/context/algorithm_store.py,sha256=U4nNRQDoVe2j60FNwNNh-FD5IcmeA2VM8eACiPhkzhg,4294
|
|
33
|
+
vantage6/cli/context/auth.py,sha256=CozmEzFtpL8K3Pq4rEiHl8MMPnCI7vKwmzsPAIF2Szc,3911
|
|
34
|
+
vantage6/cli/context/base_server.py,sha256=vln405k6b4z4L_VIfPCycy7gIfpJs0nqvJa8enl2HsA,2390
|
|
35
|
+
vantage6/cli/context/node.py,sha256=1jjDw3u1Vf0maycEA0lyiBkXrh_qcw2wGLd_b2tnX4k,7972
|
|
36
|
+
vantage6/cli/context/server.py,sha256=nuTUSfe08xnMMREhy8TN_PND9Ay3CASeUcgcCV6ti9A,5308
|
|
37
|
+
vantage6/cli/dev/clean.py,sha256=4fk5zNU7mi43YTPmgHwl6AC43_uZZyt1SUFy-JXGkRU,829
|
|
38
|
+
vantage6/cli/dev/common.py,sha256=fiERHE0o2-m0ZAgIbyaZnFhYdeVMddrHiUoiLjmAR8o,929
|
|
39
|
+
vantage6/cli/dev/rebuild.py,sha256=3iMIqAxiwdZkx4Q0xQyqcWHvXUzOQT-9cyRuOiulwR8,1290
|
|
40
|
+
vantage6/cli/dev/start.py,sha256=DzFtD_jQaVIIawfPdMwBLjY1E_YOokiWm27oanci8k4,1000
|
|
41
|
+
vantage6/cli/dev/stop.py,sha256=-yrLCadDfeLES9pFJz9yxm33XtzEXpdqvHvwakLQNEE,663
|
|
42
|
+
vantage6/cli/node/attach.py,sha256=5wB6vjp-m44cQx-C20QBo5WhbHqjxrfWWFzTa5YCyww,277
|
|
43
|
+
vantage6/cli/node/create_private_key.py,sha256=gmgI9Gtcx3z0esxyLw-96HcrfmAJFOjjXbVvA9ZGN3g,5129
|
|
44
|
+
vantage6/cli/node/files.py,sha256=y7WOGHCTE3DnmxgbweLcu51t0YLS9Jvl24zgCHKkQTQ,1003
|
|
45
|
+
vantage6/cli/node/list.py,sha256=ksDnGOqKpV6QgMHFHv82byoOJp8Bu_jfm0KbXhNf8D8,1659
|
|
46
|
+
vantage6/cli/node/new.py,sha256=XEVsnkI1UBngWwE96-KIOcs4zdPCuq3coTGHPNQxepQ,12717
|
|
47
|
+
vantage6/cli/node/remove.py,sha256=alInSH_3E-yJthQ8JrGaopvAZ7GgxuRBppnpC8BRTBU,1061
|
|
48
|
+
vantage6/cli/node/restart.py,sha256=hJWzyJjetfNe8YYkOt5ZEUE_t-LpvQOwUGcQH0pXfNQ,3122
|
|
49
|
+
vantage6/cli/node/set_api_key.py,sha256=Ou7VnyHpqNqmy0O53ogG7VX_-jWsN3hWR2_GIiYJVo0,1998
|
|
50
|
+
vantage6/cli/node/start.py,sha256=0UCOU_k7-7G50AQHgYT98stC-wz99VXa2_W7eAeDdFE,4378
|
|
51
|
+
vantage6/cli/node/stop.py,sha256=CrlPs5wvb-d32MbG4OnafsxLBJXW7BD5QX-7f5qetqc,6870
|
|
52
|
+
vantage6/cli/node/version.py,sha256=GdHQgcXHFTicL3yHeuW127bwnU85ooDOuqLvBGsH0GI,1957
|
|
53
|
+
vantage6/cli/node/common/__init__.py,sha256=M7xJb_AL8vXgpTI_ZojgsVO1i8BovmZMJrF3NOq1PZ8,3165
|
|
54
|
+
vantage6/cli/node/task_cleanup/__init__.py,sha256=bNa72P_gmGeQ3Z-Vl6Q7tKG8-deSAqk_02gvG--eHIY,4515
|
|
55
|
+
vantage6/cli/prometheus/monitoring_manager.py,sha256=I4iR_2i6EgLMR2dM2e4bOVbTyGN4jPPRDPKHd8_CbRk,4908
|
|
56
|
+
vantage6/cli/prometheus/prometheus.yml,sha256=Q4i9lVknITBodHUMgarRnEsXfXTNuSdI6a-9pW4YCoI,98
|
|
57
|
+
vantage6/cli/sandbox/new.py,sha256=bsHHd7nVVOcoIpl0yhM15LxG_6adOvnIkh8e4h4HwPA,6077
|
|
58
|
+
vantage6/cli/sandbox/remove.py,sha256=QvoXXYtEEvg1ENeAXoi1vkUzIFH28gtU9DOT78VLMjA,5634
|
|
59
|
+
vantage6/cli/sandbox/start.py,sha256=-Zo6jQcd-Z6EqoTmC8pNPg35wQiDl4LLsj9FG3BU4ls,10050
|
|
60
|
+
vantage6/cli/sandbox/stop.py,sha256=tp0zxwizliSbAtw0MsGX6xZtR-6lRcFS6ij61eaa6Lc,2788
|
|
61
|
+
vantage6/cli/sandbox/config/base.py,sha256=ZMrLJ_rCHraPub083prG25qJNQ0inoAAQA5T_oj5K34,3683
|
|
62
|
+
vantage6/cli/sandbox/config/core.py,sha256=6V9K5bRFOTHhXQ8ANuTkdFjUJI3S_OuwLQ0zx16WZ8Y,10004
|
|
63
|
+
vantage6/cli/sandbox/config/node.py,sha256=W5FE02rJ-lT90oi1Gvt_EQVFE7D03-InKnm0rUFPeSk,10327
|
|
64
|
+
vantage6/cli/sandbox/data/km_dataset.csv,sha256=OrYF2ympb2QndiUOX_nTFGGB1HbAp2eOvZzrQ_PqJs4,31283
|
|
65
|
+
vantage6/cli/sandbox/data/olympic_athletes_2016.csv,sha256=WGycwcwMKEyOyJc3aEo4EhrnBJiTSE0kZAr50j2qzGk,77699
|
|
66
|
+
vantage6/cli/sandbox/populate/__init__.py,sha256=xzrDMnmX60kuuDA7u-E-aABdMO1rZKNwmxOo4cL68L4,4706
|
|
67
|
+
vantage6/cli/sandbox/populate/helpers/connect_store.py,sha256=Wb4shAbrNU7AARK7KZw4RPjryjMKPExjgRp-WuqFfcg,7592
|
|
68
|
+
vantage6/cli/sandbox/populate/helpers/delete_fixtures.py,sha256=fIAgzxvJqTfB1BCC-Nsdt1ltBL-o4Afl08zx6ZITb6I,2101
|
|
69
|
+
vantage6/cli/sandbox/populate/helpers/load_fixtures.py,sha256=PQpEo0Q5PyWwYDaenAMqPrgRG6DF_SiFGK1V0BFNY3g,16225
|
|
70
|
+
vantage6/cli/sandbox/populate/helpers/utils.py,sha256=5LSGZ-h7QtMB51IDzawXPIQFF7i2CIm6oYzEsdVKG4Y,1213
|
|
71
|
+
vantage6/cli/server/attach.py,sha256=XeU5M00R27yqq8oNLOyaNGOdrsQouLzxl-TlASJSifw,323
|
|
72
|
+
vantage6/cli/server/files.py,sha256=MsnLaY91F2m49mm_FpVboFrSsZiEsu175KioN1alZfk,568
|
|
73
|
+
vantage6/cli/server/import_.py,sha256=nCnODyuMoDXxpKakCJnasGRdPcxL6gJJorGoZTWEEas,5984
|
|
74
|
+
vantage6/cli/server/list.py,sha256=ioHQeBq5_SE6zNcyg9C7lqvcPwyHOyGPZ4SisFgq5-E,314
|
|
75
|
+
vantage6/cli/server/new.py,sha256=6KF07KMmdSQTSbXCxfAztVFb2M10uQdQjLmzCXnnfUo,3802
|
|
76
|
+
vantage6/cli/server/remove.py,sha256=dwylIP5uEUPTRP9bd6_7rWhyUoCJuYoe1Kon9WUV4tY,891
|
|
77
|
+
vantage6/cli/server/start.py,sha256=FDq-MyFwG0QcnsKChYLdOPAsLzgLhlDlmDvrV-LELV8,2929
|
|
78
|
+
vantage6/cli/server/stop.py,sha256=4pp9NGh-DWPkJ-pXtyxbu9J-liB8l6uiODCkFKoLbC4,2077
|
|
79
|
+
vantage6/cli/server/version.py,sha256=lqrPNKMbFO22W-NarJ2TjLd7fZT43hV-sFRbzMlBniw,1307
|
|
80
|
+
vantage6/cli/server/common/__init__.py,sha256=Frh_4V8ssoGy8rO3o7mRnlKkpOlNSjA5J6eReN1Yluo,1386
|
|
81
|
+
vantage6/cli/template/algo_store_config.j2,sha256=eA79CEXGPTO3kWX5SDhuO4VY2t_shjOHIvGIC6ANrro,7377
|
|
82
|
+
vantage6/cli/template/auth_config.j2,sha256=mFNL7H3plnqN7kpptk2WPXPsnuGddCP_ktbzBZHi5ic,10866
|
|
83
|
+
vantage6/cli/template/node_config.j2,sha256=Q6-3fGdx0WVN_clTR77KR0Vv77rwOd1jzNCP_oOn81c,13871
|
|
84
|
+
vantage6/cli/template/node_config_nonk8s.j2,sha256=mrS-YQwg_9i7zBKuEFG5pe3ZbHCLtl5hGgzk2etXTvo,783
|
|
85
|
+
vantage6/cli/template/server_config.j2,sha256=0uksEkCf4lRcBD39brOGdwoF_vCtieA-FjTiSUxNvo0,10195
|
|
86
|
+
vantage6/cli/test/client_script.py,sha256=AHQ4fhzbtD-VcJAm0rxUDteepXNa4Bef9SKWnzobTd0,4825
|
|
87
|
+
vantage6/cli/test/feature_tester.py,sha256=AsZam91KqaAo_yIFxyZ5Hmy1ZPw83d02BDyO4TzKFQo,2631
|
|
88
|
+
vantage6/cli/test/integration_test.py,sha256=MctR_t-WEyxzFpMdc6ByTcX1BQglZiT5-CIOQXTBBWo,4034
|
|
89
|
+
vantage6/cli/test/algo_test_scripts/algo_test_arguments.py,sha256=HIKAhJ5zKkWMGXpCb_KLukbcwbyeMK5j3wcqubalbyM,791
|
|
90
|
+
vantage6/cli/test/algo_test_scripts/algo_test_script.py,sha256=jfzXPmpL0HlE_eq1jXLV3HuZgh_aV-ZOaawHcYIuwQE,2741
|
|
91
|
+
vantage6/cli/test/common/diagnostic_runner.py,sha256=jFFHqlj3v0WRpVEBa7Ovek3DL6RX6W5cQd9w5hWHtZA,6597
|
|
92
|
+
vantage6/cli/use/context.py,sha256=mEtOfbuLtYQlRh-ypif24WtOwgpcvXObX310mmXIkWY,1362
|
|
93
|
+
vantage6/cli/use/namespace.py,sha256=-z9uIYqVsqPPLHFy8bI5x2566W5essOkDdKTXUX9dEY,1644
|
|
94
|
+
vantage6-5.0.0a37.dist-info/METADATA,sha256=Jnyu6qEvicvNPfRE87w0ach-PgqjaUi6RN9zz3CC_7w,1778
|
|
95
|
+
vantage6-5.0.0a37.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
96
|
+
vantage6-5.0.0a37.dist-info/entry_points.txt,sha256=RKVCMsD70s_Gp6If89uDlCphsZ9uLIOMt1gciv8EMDQ,53
|
|
97
|
+
vantage6-5.0.0a37.dist-info/RECORD,,
|