vantage6 5.0.0a35__py3-none-any.whl → 5.0.0a36__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.

Files changed (47) hide show
  1. vantage6/cli/algorithm/generate_algorithm_json.py +9 -9
  2. vantage6/cli/algorithm/update.py +1 -1
  3. vantage6/cli/algostore/attach.py +1 -0
  4. vantage6/cli/algostore/files.py +3 -2
  5. vantage6/cli/algostore/list.py +0 -3
  6. vantage6/cli/auth/attach.py +60 -0
  7. vantage6/cli/auth/files.py +16 -0
  8. vantage6/cli/auth/list.py +13 -0
  9. vantage6/cli/auth/new.py +80 -0
  10. vantage6/cli/auth/remove.py +31 -0
  11. vantage6/cli/auth/start.py +80 -0
  12. vantage6/cli/auth/stop.py +64 -0
  13. vantage6/cli/cli.py +37 -5
  14. vantage6/cli/common/start.py +1 -1
  15. vantage6/cli/common/utils.py +2 -0
  16. vantage6/cli/configuration_manager.py +31 -0
  17. vantage6/cli/configuration_wizard.py +6 -1
  18. vantage6/cli/context/__init__.py +3 -0
  19. vantage6/cli/context/auth.py +107 -0
  20. vantage6/cli/context/base_server.py +0 -4
  21. vantage6/cli/dev/clean.py +28 -0
  22. vantage6/cli/dev/common.py +34 -0
  23. vantage6/cli/dev/rebuild.py +39 -0
  24. vantage6/cli/dev/start.py +36 -0
  25. vantage6/cli/dev/stop.py +23 -0
  26. vantage6/cli/globals.py +4 -1
  27. vantage6/cli/node/list.py +5 -4
  28. vantage6/cli/node/version.py +5 -4
  29. vantage6/cli/prometheus/monitoring_manager.py +5 -3
  30. vantage6/cli/rabbitmq/queue_manager.py +13 -11
  31. vantage6/cli/server/attach.py +1 -0
  32. vantage6/cli/server/common/__init__.py +1 -27
  33. vantage6/cli/server/import_.py +1 -1
  34. vantage6/cli/server/new.py +17 -4
  35. vantage6/cli/template/auth_config.j2 +230 -0
  36. vantage6/cli/template/node_config.j2 +8 -8
  37. vantage6/cli/template/node_config_nonk8s.j2 +33 -0
  38. vantage6/cli/test/common/diagnostic_runner.py +5 -3
  39. vantage6/cli/use/namespace.py +2 -1
  40. {vantage6-5.0.0a35.dist-info → vantage6-5.0.0a36.dist-info}/METADATA +3 -3
  41. {vantage6-5.0.0a35.dist-info → vantage6-5.0.0a36.dist-info}/RECORD +43 -32
  42. vantage6/cli/dev/create.py +0 -693
  43. vantage6/cli/dev/data/km_dataset.csv +0 -2401
  44. vantage6/cli/dev/remove.py +0 -112
  45. vantage6/cli/server/shell.py +0 -54
  46. {vantage6-5.0.0a35.dist-info → vantage6-5.0.0a36.dist-info}/WHEEL +0 -0
  47. {vantage6-5.0.0a35.dist-info → vantage6-5.0.0a36.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,230 @@
1
+ # for more options on the deployment of this chart, see:
2
+ # https://artifacthub.io/packages/helm/bitnami/keycloak
3
+ keycloak:
4
+
5
+ # for development, use a local PostgreSQL instance.
6
+ {% if keycloak.production %}
7
+ postgresql:
8
+ enabled: false
9
+
10
+ # TODO v5+ set these variables from the CLI
11
+ externalDatabase:
12
+ host: "sql.example.vantage6.ai"
13
+ port: 5432
14
+ username: my-username
15
+ password: my-secret-password
16
+ database: my-keycloak-database
17
+ schema: public
18
+ existingSecretHostKey: my-secret-contains-the-host
19
+ existingSecretPortKey: my-secret-contains-the-port
20
+ existingSecretUsernameKey: my-secret-contains-the-username
21
+ existingSecretPasswordKey: my-secret-contains-the-password
22
+ existingSecretDatabaseKey: my-secret-contains-the-database
23
+
24
+ # TODO v5+ set secrets in CLI
25
+ auth:
26
+ # Set the username and password for the Keycloak admin. This user is created when
27
+ # the service is initialized.
28
+ adminUser: {{ keycloak.adminUser | default('admin') }}
29
+ existingSecret: secret-containing-admin-password
30
+ passwordSecretKey: key-to-admin-password-in-secret
31
+ # For a development environment, you can set the admin user and password directly.
32
+ # adminPassword: admin
33
+
34
+ # for production, TLS should be enabled for internal Keycloak communication
35
+ # TODO v5+ we should test if this works when we have CLI commands (#1923)
36
+ production: true
37
+ tls:
38
+ enabled: true
39
+ autoGenerated: true
40
+ {% else %}
41
+ postgresql:
42
+ enabled: true
43
+ auth:
44
+ postgresPassword: postgres
45
+ password: keycloak
46
+ database: keycloak
47
+
48
+ # for production, use an external PostgreSQL instance. This requires setting up config
49
+ # as follows. Be sure to set postgres.enabled to false just above here.
50
+ # externalDatabase:
51
+ # host: "sql.example.vantage6.ai"
52
+ # port: 5432
53
+ # username: my-username
54
+ # password: my-secret-password
55
+ # database: my-keycloak-database
56
+ # schema: public
57
+ # # or alternatively, use secrets for all of the above formatted as:
58
+ # existingSecretHostKey: my-secret-contains-the-host
59
+ # existingSecretPortKey: my-secret-contains-the-port
60
+ # existingSecretUsernameKey: my-secret-contains-the-username
61
+ # existingSecretPasswordKey: my-secret-contains-the-password
62
+ # existingSecretDatabaseKey: my-secret-contains-the-database
63
+
64
+ auth:
65
+ # for development environment, set a dummy password for the admin user.
66
+ adminUser: admin
67
+ adminPassword: admin
68
+ # for production, the password should be stored in a secret. Below you should then
69
+ # give the name of the secret and the key to where the password is within the
70
+ # secret.
71
+ # existingSecret: secret-containing-admin-password
72
+ # passwordSecretKey: key-to-admin-password-in-secret
73
+
74
+ # if you want to switch to production, you should set the following settings to true.
75
+ production: false
76
+ tls:
77
+ enabled: false
78
+ autoGenerated: false
79
+ {% endif %}
80
+
81
+ # ensure that the auth pod has enough resources to run. The default values are enough
82
+ # in most cases, but for a larger environment, you might need to increase the limits.
83
+ resources:
84
+ limits:
85
+ memory: 2Gi
86
+ cpu: 1000m
87
+ requests:
88
+ memory: 1Gi
89
+ cpu: 500m
90
+
91
+ # The following configuration is run via the CLI when the Keycloak service is
92
+ # initialized. It creates a number of users, roles and secrets that are required for
93
+ # vantage6 to work properly.
94
+ keycloakConfigCli:
95
+ enabled: true
96
+ configuration:
97
+ # Keycloak realm configuration. For all options, see
98
+ # https://www.keycloak.org/docs-api/latest/rest-api/index.html#RealmRepresentation
99
+ realm:
100
+ # Keycloak realm name
101
+ realm: {{ keycloak.realm | default('vantage6') }}
102
+ enabled: true
103
+
104
+ # access token lifespan in seconds
105
+ accessTokenLifespan: {{ keycloak.accessTokenLifespan | default(300) }}
106
+
107
+ # sso session idle timeout in seconds. This is the time before the refresh token
108
+ # expires. With default settings, this value controls the time before the
109
+ # refresh token expires. Note that if setting this to >3600, you also need to
110
+ # set ssoSessionMaxLifespan and/or clientSessionIdleTimeout and/or
111
+ # clientSessionMaxLifespan to higher values to effectively lengthen the session.
112
+ ssoSessionIdleTimeout: {{ keycloak.ssoSessionIdleTimeout | default(1800) }}
113
+
114
+ # password policy configuration. If you prefer not to have a
115
+ passwordPolicy: "length(8) and upperCase(1) and lowerCase(1) and digits(1) and specialChars(1)"
116
+
117
+ # do not allow users to edit their username - this would lead to problems with
118
+ # syncing the user between keycloak and vantage6 server/store. This setting
119
+ # should always be set to false.
120
+ editUsernameAllowed: false
121
+
122
+ {% if keycloak.production %}
123
+ # required actions for users. By setting defaultAction to true for configuring
124
+ # OTP, the user will be prompted to configure OTP (for two-factor
125
+ # authentication) on first login.
126
+ requiredActions:
127
+ - alias: CONFIGURE_TOTP
128
+ name: Configure OTP
129
+ providerId: CONFIGURE_TOTP
130
+ enabled: true
131
+ defaultAction: true
132
+ priority: 10
133
+ {% else %}
134
+ # If you want to require users to use two-factor authentication on first login,
135
+ # enable the settings below.
136
+ # requiredActions:
137
+ # - alias: CONFIGURE_TOTP
138
+ # name: Configure OTP
139
+ # providerId: CONFIGURE_TOTP
140
+ # enabled: true
141
+ # defaultAction: true
142
+ # priority: 10
143
+ {% endif %}
144
+
145
+ # users to be created in the realm. This initializes the realm with a default
146
+ # admin user. It also initializes the service account for the backend admin
147
+ # client to give it the necessary permissions to manage the realm.
148
+ # TODO v5+ configure secrets where necessary
149
+ users:
150
+ # create the vantage6 admin user. The name of this user should also be present
151
+ # in the vantage6 server and store configuration - it is the user that will be
152
+ # assigned admin permissions on initial startup.
153
+ - username: {{ keycloak.adminUser | default('admin') }}
154
+ enabled: true
155
+ credentials:
156
+ - type: password
157
+ value: {{ keycloak.adminPassword | default('Admin123!') }}
158
+ requiredActions:
159
+ {% if keycloak.production %}
160
+ - CONFIGURE_TOTP
161
+ - UPDATE_PASSWORD
162
+ {% else %}
163
+ # enable configure OTP only if you want to use two-factor authentication
164
+ # - CONFIGURE_TOTP
165
+ - UPDATE_PASSWORD
166
+ {% endif %}
167
+ # create a service account user for the backend admin client. The
168
+ # serviceAccountClientId should match the value set in the client section
169
+ # below. The vantage6 server and store will use this user to create new
170
+ # accounts for users and nodes in keycloak - that is why it gets assigned some
171
+ # realm-management permissions.
172
+ - username: service-account-backend-admin-client
173
+ enabled: true
174
+ serviceAccountClientId: backend-admin-client
175
+ clientRoles:
176
+ realm-management:
177
+ - view-users
178
+ - manage-users
179
+ - view-clients
180
+ - manage-clients
181
+ - create-client
182
+
183
+ # clients to be created in the realm. This initializes the realm with a default
184
+ # public client and a backend admin client. The public client is used by users
185
+ # to authenticate in the browser. Either the UI or the Python client will
186
+ # redirect to this client.
187
+ clients:
188
+ - clientId: public_client
189
+ publicClient: true
190
+ # redirect URIs are the URIs that keycloak is allowed to redirect to after
191
+ # authentication. This should be set to the UI URL, and to the Keyloak
192
+ # service on port 7681. The latter is needed for authentication from outside
193
+ # the browser - if e.g. the Python client authenticates, it will open a
194
+ # browser window to authenticate that redirects to the Keycloak service on
195
+ # port 7681.
196
+ {% if keycloak.redirectUris %}
197
+ redirectUris:
198
+ {% for uri in keycloak.redirectUris %}
199
+ - "{{ uri }}/*"
200
+ {% endfor %}
201
+ {% else %}
202
+ redirectUris:
203
+ # allow logging in via a local UI
204
+ - "http://localhost:7600/*"
205
+ # allow logging in via the Python client (which spins up a local server
206
+ # on port 7681)
207
+ - "http://localhost:7681/*"
208
+ {% endif %}
209
+ # By setting webOrigins to "+", we allow the same origins as redirectUris.
210
+ webOrigins:
211
+ - "+"
212
+ # The public client is only for users, not for nodes. Therefore, map a
213
+ # constant claim to indicate the that the client is a user.
214
+ protocolMappers:
215
+ - name: vantage6_client_type
216
+ protocol: openid-connect
217
+ protocolMapper: oidc-hardcoded-claim-mapper
218
+ consentRequired: false
219
+ config:
220
+ claim.name: vantage6_client_type
221
+ claim.value: user
222
+ access.token.claim: true
223
+ # create a client that will allow the backend to manage users and clients in
224
+ # keycloak.
225
+ - clientId: backend-admin-client
226
+ publicClient: false
227
+ # TODO v5+ configure secrets where necessary
228
+ secret: myadminclientsecret
229
+ serviceAccountsEnabled: true
230
+ standardFlowEnabled: false
@@ -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
- database:
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
- {% endif %}
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 -}}
@@ -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
- from vantage6.common import info, debug
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)} " "organization(s)")
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
 
@@ -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()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: vantage6
3
- Version: 5.0.0a35
3
+ Version: 5.0.0a36
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>
@@ -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.0a35
22
- Requires-Dist: vantage6-common==5.0.0a35
21
+ Requires-Dist: vantage6-client==5.0.0a36
22
+ Requires-Dist: vantage6-common==5.0.0a36
23
23
  Provides-Extra: dev
24
24
  Requires-Dist: black; extra == 'dev'
25
25
  Requires-Dist: coverage==7.10.2; extra == 'dev'
@@ -1,75 +1,86 @@
1
1
  vantage6/cli/__init__.py,sha256=8KIgMPbZTNdkYlUrB8irpsUA7KdkFdLbNbMKixOP2dE,277
2
- vantage6/cli/cli.py,sha256=1Se1g-qEeC3NrPyTosIT4EPbl-WAnqCwL1mTZyEL5Pc,6552
2
+ vantage6/cli/cli.py,sha256=LO1VuwB0KZB8fCIQpn1YV68voHMuq1znGpzLbzxLVQE,7806
3
3
  vantage6/cli/config.py,sha256=Jqe3VcvoxPrFlvw7cuKt4-5oyL0YTZXvpNsqPybSAYk,7973
4
- vantage6/cli/configuration_manager.py,sha256=TtD4PdFrKCuN_zeSAouEgi_htlhBqmiNGqI7yui6EmE,5466
5
- vantage6/cli/configuration_wizard.py,sha256=JFGeBagW5D4R-sGCXzqU9WpUInq0w7h0MVlbxYC7Q8Q,6634
6
- vantage6/cli/globals.py,sha256=kbxRcpCFmyIKOma3rWfrcPnV7k5H7MHG9-yY2orzauY,2627
4
+ vantage6/cli/configuration_manager.py,sha256=-wIiqBwzxr7BiBcV7juPSFRdrwbhsR8OHUKADZE5cBQ,6317
5
+ vantage6/cli/configuration_wizard.py,sha256=S1D4gze-kMlR-YperseYuG4VixOFwYxOr5Jt0t67zVU,6857
6
+ vantage6/cli/globals.py,sha256=rREQy0qBPMHW-l4lgoyxKd3Cb4eQGtGmp-UTraYzIQU,2714
7
7
  vantage6/cli/utils.py,sha256=9ZNHtTnOH2RqgYgnoyMR5EJpBE-_kYXEbuHtfrG3ul0,4275
8
8
  vantage6/cli/algorithm/create.py,sha256=kRT1BlBcb0fDaB2Q988WxtA6EyAZmOW5QoU2uhbwBIo,2075
9
- vantage6/cli/algorithm/generate_algorithm_json.py,sha256=huaqoadhz-2-Sy6SON9zFe_cAatvE7dtTQazvmNOgMA,19558
10
- vantage6/cli/algorithm/update.py,sha256=WwAfTnq0kTOgePUsBzGoo1AJQqGMn82E9Bjk1wf61CQ,1338
11
- vantage6/cli/algostore/attach.py,sha256=0WzLnKigJAelPpL5EaWcnRuUyQzMSofrrZfEzwDIvSw,311
12
- vantage6/cli/algostore/files.py,sha256=r89VRixK_K-c44qseq58Aa2Dqf1wEf8yompQRN5AVu4,580
13
- vantage6/cli/algostore/list.py,sha256=xBCnwGbuWY_rrx6jrFX8JVAEFXh8GwqwicqpxMiaSa8,418
9
+ vantage6/cli/algorithm/generate_algorithm_json.py,sha256=4pCxXxsWw5WN9e5OAeQ09gO70fRKdyFF3y9a1Ufm8mY,19558
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
14
  vantage6/cli/algostore/new.py,sha256=7eVovSdNBO_Yj-FQmlV0TTl13Vv4qKP5zA_HuHZMglk,3454
15
15
  vantage6/cli/algostore/remove.py,sha256=JsZ1L3qH2k_G3Zei-fhb_dApah91gdJKKv2vfsWK6Os,1006
16
16
  vantage6/cli/algostore/start.py,sha256=15ZebThxgw4H1G8CswRNNoU1bYNflhQ-dWIkzEkwUi0,2137
17
17
  vantage6/cli/algostore/stop.py,sha256=AF6ay7y6dlCvjPa3ctFOESAfHEA74eK4dKT4o-iFTLE,1814
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=HFo0TCveGDgLN1BBOvG2meFZIcfFXPivwNJfWNeWcLM,2142
22
+ vantage6/cli/auth/remove.py,sha256=ejeAOpINYBZNuDSIZ7LRb_ZN9FOztOl3uvAD198twhY,884
23
+ vantage6/cli/auth/start.py,sha256=FCznjzbWMtvoaFSSqtXvZbxkUqEbrnex095XatYlK2c,2094
24
+ vantage6/cli/auth/stop.py,sha256=y0Af-frrFZM0M6lrcDIaMESdvlOJmfWPfEafMlMU0Ek,1769
18
25
  vantage6/cli/common/decorator.py,sha256=KF3uFjmn00qtTSD90BLczaX-gqvlt2Kud4PJGm7P4jU,3627
19
26
  vantage6/cli/common/new.py,sha256=WBGGYknLUMz4iPAzFanG57ioM9bTqFf2ANQRzYg6Ibo,2612
20
27
  vantage6/cli/common/remove.py,sha256=sJaPF5y1Gd14I4Xg5QRBq3d1x4j2KF4Ys6wVDuqE6HQ,1697
21
- vantage6/cli/common/start.py,sha256=jErssa0-E4tl3RI2BMND4PFmLQm3uZzhUJ45cuZEHw8,9784
28
+ vantage6/cli/common/start.py,sha256=JsEEIAEvDqxPbIpVtzxfxG3z8XZsTuNz9FtH58HR2nU,9790
22
29
  vantage6/cli/common/stop.py,sha256=S3IeV_myD01CdSUvl6hkf4qWlWQZ_oUgIkbJoGsQK-Q,4989
23
- vantage6/cli/common/utils.py,sha256=P1Wp1mKG8Z36IqeE7nyXnrAO_jhIVwnMYBDnJ1ltFPc,11767
24
- vantage6/cli/context/__init__.py,sha256=88LSA3h_v-t8PzjCrzl0vw1jkOdNUNr3nPo-L2e9onc,2684
30
+ vantage6/cli/common/utils.py,sha256=EDltlX8tigQFMWDwWcApoZMtgxF2qkguDy35XBqraMs,11853
31
+ vantage6/cli/context/__init__.py,sha256=x45CqHPiLmjB5qS26sLD_LWpCbGzUgaaxCqoOyQJ-O0,2798
25
32
  vantage6/cli/context/algorithm_store.py,sha256=qTNRrCo_EWVAfSC4eg_MohSf_Ra4U3tZvB8EwZZREEw,4044
26
- vantage6/cli/context/base_server.py,sha256=i0op_9mifKjJIP4I1Z-V3HRFf_WPOrBQGFvTL6pJZL8,2450
33
+ vantage6/cli/context/auth.py,sha256=D1_oZo2wNpocJ4RGI4kSgp0GXdwagdpP3VcyW6XAj-E,3303
34
+ vantage6/cli/context/base_server.py,sha256=vln405k6b4z4L_VIfPCycy7gIfpJs0nqvJa8enl2HsA,2390
27
35
  vantage6/cli/context/node.py,sha256=GaU52z4dMnZMDMj3MZACL0VeWZLeeM3lRNvMKlqA1J4,7304
28
36
  vantage6/cli/context/server.py,sha256=o2HMlDEg7RbU44AfwNPln8K64FX4SQ_IgULFY_GBhEI,4837
29
- vantage6/cli/dev/create.py,sha256=WBBPG9jyNvPQVb1koHX9y3VKQmlijlq-QBsYYzqqojg,21207
30
- vantage6/cli/dev/remove.py,sha256=kjmOqkMO0ZU5F-3KgQ05VlfQQCS5Ta6yLY32DU0rH7k,3917
31
- vantage6/cli/dev/data/km_dataset.csv,sha256=OrYF2ympb2QndiUOX_nTFGGB1HbAp2eOvZzrQ_PqJs4,31283
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
32
42
  vantage6/cli/node/attach.py,sha256=5wB6vjp-m44cQx-C20QBo5WhbHqjxrfWWFzTa5YCyww,277
33
43
  vantage6/cli/node/create_private_key.py,sha256=gmgI9Gtcx3z0esxyLw-96HcrfmAJFOjjXbVvA9ZGN3g,5129
34
44
  vantage6/cli/node/files.py,sha256=y7WOGHCTE3DnmxgbweLcu51t0YLS9Jvl24zgCHKkQTQ,1003
35
- vantage6/cli/node/list.py,sha256=_WZ8EBIEUlzFhVp3cR2MK5FUuQicMEZHhD8npMwKSpM,1664
45
+ vantage6/cli/node/list.py,sha256=ksDnGOqKpV6QgMHFHv82byoOJp8Bu_jfm0KbXhNf8D8,1659
36
46
  vantage6/cli/node/new.py,sha256=gs0okv4jnh3jPmENNH2RzXxG8Q-bbPmbjxioQOyjUH8,12395
37
47
  vantage6/cli/node/remove.py,sha256=alInSH_3E-yJthQ8JrGaopvAZ7GgxuRBppnpC8BRTBU,1061
38
48
  vantage6/cli/node/restart.py,sha256=hJWzyJjetfNe8YYkOt5ZEUE_t-LpvQOwUGcQH0pXfNQ,3122
39
49
  vantage6/cli/node/set_api_key.py,sha256=OYCCJ8zrbc7uXyv0uLTejqD43xXELVvR01czzG46imo,1998
40
50
  vantage6/cli/node/start.py,sha256=wzSfN_H9PdorSjJr8dYJl7p0HJ0XuOz-gNDbuHAbWo4,3975
41
51
  vantage6/cli/node/stop.py,sha256=pQ4auPeGbipBRlgFsuqqsMBlNAbgaowxeFpH-HpikkM,1950
42
- vantage6/cli/node/version.py,sha256=X921xyIvIPYObPac2Si5msZ2tay5ySidnPWmGj1ilZw,1959
52
+ vantage6/cli/node/version.py,sha256=GdHQgcXHFTicL3yHeuW127bwnU85ooDOuqLvBGsH0GI,1957
43
53
  vantage6/cli/node/common/__init__.py,sha256=gYbdDajTz5Sh-buChejB8-lkMXalL85mMsMbM0OlR1Q,2868
44
- vantage6/cli/prometheus/monitoring_manager.py,sha256=tNvguLonbVILqCDnHRizef5NwKnEOV0DuzTx0Bhd2HU,4906
54
+ vantage6/cli/prometheus/monitoring_manager.py,sha256=I4iR_2i6EgLMR2dM2e4bOVbTyGN4jPPRDPKHd8_CbRk,4908
45
55
  vantage6/cli/prometheus/prometheus.yml,sha256=Q4i9lVknITBodHUMgarRnEsXfXTNuSdI6a-9pW4YCoI,98
46
56
  vantage6/cli/rabbitmq/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
47
57
  vantage6/cli/rabbitmq/definitions.py,sha256=CcS9jG7ZGB6LjzHQqZ2FliDurPItUvNSjHrOYptORZg,637
48
- vantage6/cli/rabbitmq/queue_manager.py,sha256=KGDGHy4NBN8O9xhjzfI7mh65i9lOQIqQwrOFqvGFdHI,7545
58
+ vantage6/cli/rabbitmq/queue_manager.py,sha256=78LWFMK1GO3JXHA-Lv9qAYVEpBD7ox3_lVLgq8xXxuk,7551
49
59
  vantage6/cli/rabbitmq/rabbitmq.config,sha256=LYAQAEoXaF472XeJDYXc9JfWSETIzPRIR2W-JB2i7fU,136
50
- vantage6/cli/server/attach.py,sha256=q1E40nGCBEFUF1p94sZoU-Ud3OXAUy4-FJqcP7Gqa7U,322
60
+ vantage6/cli/server/attach.py,sha256=XeU5M00R27yqq8oNLOyaNGOdrsQouLzxl-TlASJSifw,323
51
61
  vantage6/cli/server/files.py,sha256=MsnLaY91F2m49mm_FpVboFrSsZiEsu175KioN1alZfk,568
52
- vantage6/cli/server/import_.py,sha256=VDzEdEBtCtyF_ofzb6sSkXTNwhzBcq1-ByaHb1jfdes,4523
62
+ vantage6/cli/server/import_.py,sha256=vlzS8SUhk93C2zIHox8WFJWULCUB2zVZzkvP5wtWhII,4525
53
63
  vantage6/cli/server/list.py,sha256=ioHQeBq5_SE6zNcyg9C7lqvcPwyHOyGPZ4SisFgq5-E,314
54
- vantage6/cli/server/new.py,sha256=rXq643DOqladIgGBNTDKSk3p1sUma8AwTIQDEknzCYg,3032
64
+ vantage6/cli/server/new.py,sha256=_W1f4SAxiR5aSoI9KKKvcsuzM64kqYTKi7n-W785tR8,3625
55
65
  vantage6/cli/server/remove.py,sha256=dwylIP5uEUPTRP9bd6_7rWhyUoCJuYoe1Kon9WUV4tY,891
56
- vantage6/cli/server/shell.py,sha256=47uGPupdG-2b8yhWvJoht-VJL29CodemcgXuo04CMBU,1601
57
66
  vantage6/cli/server/start.py,sha256=fO4A7D0aiSVKN4zhX5I1Z6UzQj57Ih4KD8PGuDgQoic,2606
58
67
  vantage6/cli/server/stop.py,sha256=MwJqGh_9a0RCBQ7ZCDCO3975NyzKzGVz3AKRbghsJnc,2016
59
68
  vantage6/cli/server/version.py,sha256=lqrPNKMbFO22W-NarJ2TjLd7fZT43hV-sFRbzMlBniw,1307
60
- vantage6/cli/server/common/__init__.py,sha256=htv0mFYa4GhIHdzA2xqUUgKhHcMh09UQERlIjIgrwOM,2062
69
+ vantage6/cli/server/common/__init__.py,sha256=U9rjDxfW8tmMRNo-pRaO4xBnpZjXbIq9GWFNz6ka0Lk,1216
61
70
  vantage6/cli/template/algo_store_config.j2,sha256=eA79CEXGPTO3kWX5SDhuO4VY2t_shjOHIvGIC6ANrro,7377
62
- vantage6/cli/template/node_config.j2,sha256=tmpTzD62WPTlth3wl_B9VHfk5j9aw1Rlf5BhrxZf65k,13742
71
+ vantage6/cli/template/auth_config.j2,sha256=U12DSUZE28Uu8sPY-uMUV5ssWT7MW-hukiHKO7T4n0I,9807
72
+ vantage6/cli/template/node_config.j2,sha256=Q6-3fGdx0WVN_clTR77KR0Vv77rwOd1jzNCP_oOn81c,13871
73
+ vantage6/cli/template/node_config_nonk8s.j2,sha256=mrS-YQwg_9i7zBKuEFG5pe3ZbHCLtl5hGgzk2etXTvo,783
63
74
  vantage6/cli/template/server_config.j2,sha256=tCgceSajZ-GVG8yEufFBPWkEJKKg3BfECQmO5TzTrgw,10036
64
75
  vantage6/cli/test/client_script.py,sha256=AHQ4fhzbtD-VcJAm0rxUDteepXNa4Bef9SKWnzobTd0,4825
65
76
  vantage6/cli/test/feature_tester.py,sha256=AsZam91KqaAo_yIFxyZ5Hmy1ZPw83d02BDyO4TzKFQo,2631
66
77
  vantage6/cli/test/integration_test.py,sha256=MctR_t-WEyxzFpMdc6ByTcX1BQglZiT5-CIOQXTBBWo,4034
67
78
  vantage6/cli/test/algo_test_scripts/algo_test_arguments.py,sha256=HIKAhJ5zKkWMGXpCb_KLukbcwbyeMK5j3wcqubalbyM,791
68
79
  vantage6/cli/test/algo_test_scripts/algo_test_script.py,sha256=jfzXPmpL0HlE_eq1jXLV3HuZgh_aV-ZOaawHcYIuwQE,2741
69
- vantage6/cli/test/common/diagnostic_runner.py,sha256=5-KgspYW0PncO_t_TrQzd_GSOXVwH-7bIVv-IHOxwQM,6598
80
+ vantage6/cli/test/common/diagnostic_runner.py,sha256=jFFHqlj3v0WRpVEBa7Ovek3DL6RX6W5cQd9w5hWHtZA,6597
70
81
  vantage6/cli/use/context.py,sha256=mEtOfbuLtYQlRh-ypif24WtOwgpcvXObX310mmXIkWY,1362
71
- vantage6/cli/use/namespace.py,sha256=MOd9H3GJwZ0cho0mmlHTRlGPLoQEiSnZIFDsFsvYw4Q,1643
72
- vantage6-5.0.0a35.dist-info/METADATA,sha256=U1-XFn_RjriLgoqwYEkwb_DTjROM-1Y0_YTIw9Rqcfo,1779
73
- vantage6-5.0.0a35.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
74
- vantage6-5.0.0a35.dist-info/entry_points.txt,sha256=RKVCMsD70s_Gp6If89uDlCphsZ9uLIOMt1gciv8EMDQ,53
75
- vantage6-5.0.0a35.dist-info/RECORD,,
82
+ vantage6/cli/use/namespace.py,sha256=-z9uIYqVsqPPLHFy8bI5x2566W5essOkDdKTXUX9dEY,1644
83
+ vantage6-5.0.0a36.dist-info/METADATA,sha256=V24plQdl-W9WSFeRA15t-9x25xn1j7BtOjLzrew4QNw,1779
84
+ vantage6-5.0.0a36.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
85
+ vantage6-5.0.0a36.dist-info/entry_points.txt,sha256=RKVCMsD70s_Gp6If89uDlCphsZ9uLIOMt1gciv8EMDQ,53
86
+ vantage6-5.0.0a36.dist-info/RECORD,,