kalavai-client 0.5.14__py3-none-any.whl → 0.5.16__py3-none-any.whl
Sign up to get free protection for your applications and to get access to all the features.
- kalavai_client/__init__.py +1 -1
- kalavai_client/assets/apps.yaml +2 -2
- kalavai_client/assets/docker-compose-gui.yaml +10 -0
- kalavai_client/assets/docker-compose-template.yaml +5 -3
- kalavai_client/cli.py +143 -597
- kalavai_client/cluster.py +25 -2
- kalavai_client/core.py +655 -4
- kalavai_client/env.py +41 -2
- kalavai_client/utils.py +55 -19
- {kalavai_client-0.5.14.dist-info → kalavai_client-0.5.16.dist-info}/METADATA +6 -4
- kalavai_client-0.5.16.dist-info/RECORD +23 -0
- {kalavai_client-0.5.14.dist-info → kalavai_client-0.5.16.dist-info}/WHEEL +1 -1
- kalavai_client-0.5.14.dist-info/RECORD +0 -22
- {kalavai_client-0.5.14.dist-info → kalavai_client-0.5.16.dist-info}/LICENSE +0 -0
- {kalavai_client-0.5.14.dist-info → kalavai_client-0.5.16.dist-info}/entry_points.txt +0 -0
kalavai_client/__init__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
|
2
|
-
__version__ = "0.5.
|
2
|
+
__version__ = "0.5.16"
|
kalavai_client/assets/apps.yaml
CHANGED
@@ -65,7 +65,7 @@ releases:
|
|
65
65
|
- name: helios
|
66
66
|
namespace: kalavai
|
67
67
|
chart: kalavai/kalavai-helios
|
68
|
-
version: "0.1.
|
68
|
+
version: "0.1.11"
|
69
69
|
installed: {{not watcher_allow_unregistered_user}}
|
70
70
|
set:
|
71
71
|
- name: deployment.watcher_endpoint
|
@@ -139,7 +139,7 @@ releases:
|
|
139
139
|
- name: replicas
|
140
140
|
value: 2
|
141
141
|
- name: image_tag
|
142
|
-
value: "v2025.01.
|
142
|
+
value: "v2025.01.10"
|
143
143
|
- name: deployment.in_cluster
|
144
144
|
value: "True"
|
145
145
|
- name: deployment.use_auth_key
|
@@ -68,6 +68,8 @@ services:
|
|
68
68
|
restart: unless-stopped
|
69
69
|
command: >
|
70
70
|
--command={{command}}
|
71
|
+
--node_name="{{node_name}}"
|
72
|
+
--node_ip="{{node_ip_address}}"
|
71
73
|
{% if command == "server" %}
|
72
74
|
--port_range="30000-32767"
|
73
75
|
{% else %}
|
@@ -86,9 +88,9 @@ services:
|
|
86
88
|
--extra="{{node_labels}}"
|
87
89
|
{% endif %}
|
88
90
|
|
89
|
-
volumes:
|
90
|
-
- {{k3s_path}}:/var/lib/rancher/k3s # Persist data
|
91
|
-
- {{etc_path}}:/etc/rancher/k3s # Config files
|
91
|
+
# volumes:
|
92
|
+
# - {{k3s_path}}:/var/lib/rancher/k3s # Persist data
|
93
|
+
# - {{etc_path}}:/etc/rancher/k3s # Config files
|
92
94
|
|
93
95
|
{% if num_gpus and num_gpus > 0 %}
|
94
96
|
deploy:
|