kalavai-client 0.6.14__py3-none-any.whl → 0.6.16__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.
- kalavai_client/__init__.py +1 -1
- kalavai_client/assets/apps.yaml +1 -1
- kalavai_client/assets/docker-compose-gui.yaml +1 -0
- kalavai_client/assets/docker-compose-template.yaml +2 -1
- kalavai_client/bridge_api.py +2 -7
- kalavai_client/bridge_models.py +0 -2
- kalavai_client/cli.py +6 -3
- kalavai_client/core.py +13 -3
- kalavai_client/utils.py +2 -1
- {kalavai_client-0.6.14.dist-info → kalavai_client-0.6.16.dist-info}/METADATA +23 -53
- kalavai_client-0.6.16.dist-info/RECORD +25 -0
- kalavai_client-0.6.14.dist-info/RECORD +0 -25
- {kalavai_client-0.6.14.dist-info → kalavai_client-0.6.16.dist-info}/LICENSE +0 -0
- {kalavai_client-0.6.14.dist-info → kalavai_client-0.6.16.dist-info}/WHEEL +0 -0
- {kalavai_client-0.6.14.dist-info → kalavai_client-0.6.16.dist-info}/entry_points.txt +0 -0
kalavai_client/__init__.py
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
|
2
|
-
__version__ = "0.6.
|
2
|
+
__version__ = "0.6.16"
|
kalavai_client/assets/apps.yaml
CHANGED
@@ -3,6 +3,7 @@ services:
|
|
3
3
|
{{vpn_name}}:
|
4
4
|
image: gravitl/netclient:v0.90.0
|
5
5
|
container_name: {{vpn_name}}
|
6
|
+
platform: linux/amd64
|
6
7
|
cap_add:
|
7
8
|
- NET_ADMIN
|
8
9
|
- SYS_MODULE
|
@@ -17,7 +18,7 @@ services:
|
|
17
18
|
# run worker only if command is set
|
18
19
|
{%if command %}
|
19
20
|
{{service_name}}:
|
20
|
-
image: docker.io/bundenth/kalavai-runner:
|
21
|
+
image: docker.io/bundenth/kalavai-runner:{{target_platform}}-latest
|
21
22
|
pull_policy: always
|
22
23
|
container_name: {{service_name}}
|
23
24
|
{% if vpn %}
|
kalavai_client/bridge_api.py
CHANGED
@@ -95,7 +95,6 @@ def pool_create(request: CreatePoolRequest, api_key: str = Depends(verify_api_ke
|
|
95
95
|
- **location**: Location of the pool
|
96
96
|
- **description**: Pool description
|
97
97
|
- **token_mode**: Token type for authentication
|
98
|
-
- **frontend**: Whether this is a frontend request
|
99
98
|
"""
|
100
99
|
result = create_pool(
|
101
100
|
cluster_name=request.cluster_name,
|
@@ -103,11 +102,9 @@ def pool_create(request: CreatePoolRequest, api_key: str = Depends(verify_api_ke
|
|
103
102
|
app_values=request.app_values,
|
104
103
|
num_gpus=request.num_gpus,
|
105
104
|
node_name=request.node_name,
|
106
|
-
only_registered_users=request.only_registered_users,
|
107
105
|
location=request.location,
|
108
106
|
description=request.description,
|
109
|
-
token_mode=request.token_mode
|
110
|
-
frontend=request.frontend
|
107
|
+
token_mode=request.token_mode
|
111
108
|
)
|
112
109
|
return result
|
113
110
|
|
@@ -123,14 +120,12 @@ def pool_join(request: JoinPoolRequest, api_key: str = Depends(verify_api_key)):
|
|
123
120
|
- **ip_address**: IP address for the node
|
124
121
|
- **node_name**: Name of the node
|
125
122
|
- **num_gpus**: Number of GPUs to allocate
|
126
|
-
- **frontend**: Whether this is a frontend request
|
127
123
|
"""
|
128
124
|
result = join_pool(
|
129
125
|
token=request.token,
|
130
126
|
num_gpus=request.num_gpus,
|
131
127
|
node_name=request.node_name,
|
132
|
-
ip_address=request.ip_address
|
133
|
-
frontend=request.frontend
|
128
|
+
ip_address=request.ip_address
|
134
129
|
)
|
135
130
|
return result
|
136
131
|
|
kalavai_client/bridge_models.py
CHANGED
@@ -13,11 +13,9 @@ class CreatePoolRequest(BaseModel):
|
|
13
13
|
app_values: dict = Field(None, description="Application configuration values")
|
14
14
|
num_gpus: int = Field(None, description="Number of GPUs to allocate")
|
15
15
|
node_name: str = Field(None, description="Name of the node")
|
16
|
-
only_registered_users: bool = Field(False, description="Whether to restrict access to registered users only")
|
17
16
|
location: str = Field(None, description="Geographic location of the pool")
|
18
17
|
token_mode: TokenType = Field(TokenType.USER, description="Token type for authentication")
|
19
18
|
description: str = Field("", description="Description of the pool")
|
20
|
-
frontend: bool = Field(False, description="Whether this is a frontend request")
|
21
19
|
|
22
20
|
class NodesActionRequest(BaseModel):
|
23
21
|
nodes: list[str] = Field(description="List of node names to perform the action on")
|
kalavai_client/cli.py
CHANGED
@@ -325,7 +325,7 @@ def pool__unpublish(cluster_name=None, *others):
|
|
325
325
|
console.log(f"[green]Your cluster has been removed from {KALAVAI_PLATFORM_URL}")
|
326
326
|
|
327
327
|
@arguably.command
|
328
|
-
def pool__package_worker(output_file, *others, num_gpus=0, ip_address="0.0.0.0", node_name=None, storage_compatible=True):
|
328
|
+
def pool__package_worker(output_file, *others, platform="amd64", num_gpus=0, ip_address="0.0.0.0", node_name=None, storage_compatible=True):
|
329
329
|
"""
|
330
330
|
[AUTH]Package a worker for distribution (docker compose only)
|
331
331
|
"""
|
@@ -335,6 +335,7 @@ def pool__package_worker(output_file, *others, num_gpus=0, ip_address="0.0.0.0",
|
|
335
335
|
return
|
336
336
|
|
337
337
|
compose = generate_worker_package(
|
338
|
+
target_platform=platform,
|
338
339
|
num_gpus=num_gpus,
|
339
340
|
ip_address=ip_address,
|
340
341
|
node_name=node_name,
|
@@ -374,7 +375,7 @@ def pool__list(*others, user_only=False):
|
|
374
375
|
|
375
376
|
|
376
377
|
@arguably.command
|
377
|
-
def pool__start(cluster_name, *others, ip_address: str=None, location: str=None, app_values: str=None, pool_config_values: str=None, non_interactive: bool=False):
|
378
|
+
def pool__start(cluster_name, *others, platform="amd64", ip_address: str=None, location: str=None, app_values: str=None, pool_config_values: str=None, non_interactive: bool=False):
|
378
379
|
"""
|
379
380
|
Start Kalavai pool and start/resume sharing resources.
|
380
381
|
|
@@ -411,6 +412,7 @@ def pool__start(cluster_name, *others, ip_address: str=None, location: str=None
|
|
411
412
|
console.log(f"[green]Creating {cluster_name} pool, this may take a few minutes...")
|
412
413
|
|
413
414
|
result = create_pool(
|
415
|
+
target_platform=platform,
|
414
416
|
cluster_name=cluster_name,
|
415
417
|
ip_address=ip_address,
|
416
418
|
app_values=app_values,
|
@@ -472,7 +474,7 @@ def pool__check_token(token, *others, public=False):
|
|
472
474
|
return True
|
473
475
|
|
474
476
|
@arguably.command
|
475
|
-
def pool__join(token, *others, node_name=None, non_interactive=False):
|
477
|
+
def pool__join(token, *others, platform="amd64", node_name=None, non_interactive=False):
|
476
478
|
"""
|
477
479
|
Join Kalavai pool and start/resume sharing resources.
|
478
480
|
|
@@ -522,6 +524,7 @@ def pool__join(token, *others, node_name=None, non_interactive=False):
|
|
522
524
|
|
523
525
|
console.log("Connecting worker to the pool...")
|
524
526
|
result = join_pool(
|
527
|
+
target_platform=platform,
|
525
528
|
token=token,
|
526
529
|
node_name=node_name,
|
527
530
|
num_gpus=num_gpus,
|
kalavai_client/core.py
CHANGED
@@ -595,7 +595,7 @@ def attach_to_pool(token, node_name=None):
|
|
595
595
|
|
596
596
|
return cluster_name
|
597
597
|
|
598
|
-
def generate_worker_package(num_gpus=0, node_name=None, ip_address="0.0.0.0", storage_compatible=True):
|
598
|
+
def generate_worker_package(target_platform="amd64", num_gpus=0, node_name=None, ip_address="0.0.0.0", storage_compatible=True):
|
599
599
|
# get pool data from token
|
600
600
|
token = get_pool_token(mode=TokenType.WORKER)
|
601
601
|
if "error" in token:
|
@@ -620,6 +620,7 @@ def generate_worker_package(num_gpus=0, node_name=None, ip_address="0.0.0.0", st
|
|
620
620
|
}
|
621
621
|
# Generate docker compose recipe
|
622
622
|
compose = generate_compose_config(
|
623
|
+
target_platform=target_platform,
|
623
624
|
write_to_file=False,
|
624
625
|
role="agent",
|
625
626
|
node_ip_address=ip_address,
|
@@ -633,7 +634,13 @@ def generate_worker_package(num_gpus=0, node_name=None, ip_address="0.0.0.0", st
|
|
633
634
|
return compose
|
634
635
|
|
635
636
|
|
636
|
-
def join_pool(
|
637
|
+
def join_pool(
|
638
|
+
token,
|
639
|
+
num_gpus=None,
|
640
|
+
node_name=None,
|
641
|
+
ip_address=None,
|
642
|
+
target_platform="amd64"
|
643
|
+
):
|
637
644
|
compatibility = check_worker_compatibility()
|
638
645
|
if len(compatibility["issues"]) > 0:
|
639
646
|
return {"error": compatibility["issues"]}
|
@@ -668,6 +675,7 @@ def join_pool(token, num_gpus=None, node_name=None, ip_address=None):
|
|
668
675
|
# local agent join
|
669
676
|
# Generate docker compose recipe
|
670
677
|
generate_compose_config(
|
678
|
+
target_platform=target_platform,
|
671
679
|
role="agent",
|
672
680
|
node_ip_address=ip_address,
|
673
681
|
pool_ip=f"https://{kalavai_seed_ip}:6443",
|
@@ -722,7 +730,8 @@ def create_pool(
|
|
722
730
|
pool_config_values: str=None,
|
723
731
|
num_gpus: int=0,
|
724
732
|
node_name: str=None,
|
725
|
-
location: str=None
|
733
|
+
location: str=None,
|
734
|
+
target_platform: str="amd64"
|
726
735
|
):
|
727
736
|
|
728
737
|
if not check_seed_compatibility():
|
@@ -756,6 +765,7 @@ def create_pool(
|
|
756
765
|
|
757
766
|
# Generate docker compose recipe
|
758
767
|
generate_compose_config(
|
768
|
+
target_platform=target_platform,
|
759
769
|
role="server",
|
760
770
|
vpn_token=location,
|
761
771
|
node_ip_address=ip_address,
|
kalavai_client/utils.py
CHANGED
@@ -106,12 +106,13 @@ def is_storage_compatible():
|
|
106
106
|
return False
|
107
107
|
################
|
108
108
|
|
109
|
-
def generate_compose_config(role, node_name, write_to_file=True, node_ip_address="0.0.0.0", num_gpus=0, node_labels=None, pool_ip=None, vpn_token=None, pool_token=None):
|
109
|
+
def generate_compose_config(role, node_name, target_platform="amd64", write_to_file=True, node_ip_address="0.0.0.0", num_gpus=0, node_labels=None, pool_ip=None, vpn_token=None, pool_token=None):
|
110
110
|
|
111
111
|
if node_labels is not None:
|
112
112
|
node_labels = " ".join([f"--node-label {key}={value}" for key, value in node_labels.items()])
|
113
113
|
rand_suffix = uuid.uuid4().hex[:8]
|
114
114
|
compose_values = {
|
115
|
+
"target_platform": target_platform,
|
115
116
|
"user_path": user_path(""),
|
116
117
|
"service_name": DEFAULT_CONTAINER_NAME,
|
117
118
|
"vpn": vpn_token is not None,
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: kalavai-client
|
3
|
-
Version: 0.6.
|
3
|
+
Version: 0.6.16
|
4
4
|
Summary: Client app for kalavai platform
|
5
5
|
License: Apache-2.0
|
6
6
|
Keywords: LLM,platform
|
@@ -52,30 +52,28 @@ Description-Content-Type: text/markdown
|
|
52
52
|
|
53
53
|
</div>
|
54
54
|
|
55
|
-
⭐⭐⭐ **Kalavai
|
55
|
+
⭐⭐⭐ **Kalavai platform is open source, and free to use in both commercial and non-commercial purposes. If you find it useful, consider supporting us by [giving a star to our GitHub project](https://github.com/kalavai-net/kalavai-client), joining our [discord channel](https://discord.gg/YN6ThTJKbM) and follow our [Substack](https://kalavainet.substack.com/).**
|
56
56
|
|
57
57
|
|
58
58
|
# Kalavai: turn your devices into a scalable AI platform
|
59
59
|
|
60
|
-
|
60
|
+
> AI in the cloud is not aligned with you, it's aligned with the company that owns it. Make sure you own your AI
|
61
61
|
|
62
|
-
|
62
|
+
### Taming the adoption of self-hosted GenAI
|
63
63
|
|
64
|
-
|
65
|
-
|
66
|
-
<a href="https://www.producthunt.com/products/kalavai/reviews?utm_source=badge-product_review&utm_medium=badge&utm_souce=badge-kalavai" target="_blank"><img src="https://api.producthunt.com/widgets/embed-image/v1/product_review.svg?product_id=720725&theme=neutral" alt="Kalavai - The first platform to crowdsource AI computation | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /></a>
|
67
|
-
|
68
|
-
</div>
|
64
|
+
Kalavai is an **open source** tool that turns **any devices** into a self-hosted AI platform. It aggregates resources from multiple machines, including cloud, on prem and personal computers, and is **compatible with most model engines** to make model deployment and orchestration simple and reliable.
|
69
65
|
|
70
66
|
|
71
67
|
## What can Kalavai do?
|
72
68
|
|
73
|
-
Kalavai's goal is to make using AI (
|
69
|
+
Kalavai's goal is to make using self-hosted AI (GenAI models and agents) in real applications accessible and affordable to all. It's a tool that transforms machines into a _magic box_ that **integrates all the components required to make AI useful in the age of massive computing**, from model deployment and orchestration to Agentic AI.
|
74
70
|
|
75
71
|
### Core features
|
76
72
|
|
77
73
|
- Manage **multiple devices resources as one**. One pool of RAM, CPUs and GPUs
|
78
|
-
- **Deploy
|
74
|
+
- **Deploy open source models seamlessly across devices**, wherever they are (cloud, on premises, personal devices)
|
75
|
+
- Beyond LLMs: not just for large language models, but text-to-speech, speech-to-text, image understanding, coding generation and embedding models.
|
76
|
+
- The hybrid dream: build on your laptop, move to the cloud (any!) with zero changes
|
79
77
|
- Auto-discovery: all **models are automatically exposed** through a single OpenAI-like API and a ChatGPT-like UI playground
|
80
78
|
- Compatible with [most popular model engines](#support-for-llm-engines)
|
81
79
|
- [Easy to expand](https://github.com/kalavai-net/kube-watcher/tree/main/templates) to custom workloads
|
@@ -83,19 +81,19 @@ Kalavai's goal is to make using AI (LLMs, AI agents) in real applications access
|
|
83
81
|
|
84
82
|
<details>
|
85
83
|
|
86
|
-
**<summary>
|
84
|
+
**<summary>Powered by Kalavai</summary>**
|
87
85
|
|
88
|
-
|
89
|
-
|
90
|
-
https://github.com/user-attachments/assets/0d2316f3-79ea-46ac-b41e-8ef720f52672
|
86
|
+
- [CoGen AI](https://cogenai.kalavai.net): A community hosted alternative to OpenAI API for unlimited inference.
|
87
|
+
- [Create your own Free Cursor/Windsurf Clone](https://www.youtube.com/watch?v=6zHSo7oeCDQ&t=21s)
|
91
88
|
|
92
89
|
|
93
90
|
</details>
|
94
91
|
|
92
|
+
|
95
93
|
### Latest updates
|
96
94
|
|
95
|
+
- 11 June 2025: Native support for Mac and Raspberry pi devices (ARM).
|
97
96
|
- 20 February 2025: New shiny GUI interface to control LLM pools and deploy models
|
98
|
-
- 6 February 2025: 🔥🔥🔥 Access **DeepSeek R1 model for free** when you join our [public LLM pool](https://kalavai-net.github.io/kalavai-client/public_llm_pool/)
|
99
97
|
- 31 January 2025: `kalavai-client` is now a [PyPI package](https://pypi.org/project/kalavai-client/), easier to install than ever!
|
100
98
|
<details>
|
101
99
|
<summary>More news</summary>
|
@@ -148,8 +146,6 @@ The `kalavai-client` is the main tool to interact with the Kalavai platform, to
|
|
148
146
|
|
149
147
|
<summary>Requirements</summary>
|
150
148
|
|
151
|
-
### Requirements
|
152
|
-
|
153
149
|
For workers sharing resources with the pool:
|
154
150
|
|
155
151
|
- A laptop, desktop or Virtual Machine
|
@@ -157,37 +153,8 @@ For workers sharing resources with the pool:
|
|
157
153
|
|
158
154
|
> **Support for Windows and MacOS workers is experimental**: kalavai workers run on docker containers that require access to the host network interfaces, thus systems that do not support containers natively (Windows and MacOS) may have difficulties finding each other.
|
159
155
|
|
160
|
-
Any system that runs python 3.6+ is able to run the `kalavai-client` and therefore connect and operate an LLM pool, [without sharing with the pool](). Your computer won't be adding its capacity to the pool, but it wil be able to deploy jobs and interact with models.
|
161
|
-
|
162
156
|
</details>
|
163
157
|
|
164
|
-
<details>
|
165
|
-
|
166
|
-
<summary> Common issues</summary>
|
167
|
-
|
168
|
-
If you see the following error:
|
169
|
-
|
170
|
-
```bash
|
171
|
-
fatal error: Python.h: No such file or directory | #include <Python.h>
|
172
|
-
```
|
173
|
-
|
174
|
-
Make sure you also install python3-dev package. For ubuntu distros:
|
175
|
-
|
176
|
-
```bash
|
177
|
-
sudo apt install python3-dev
|
178
|
-
```
|
179
|
-
|
180
|
-
If you see:
|
181
|
-
```bash
|
182
|
-
AttributeError: install_layout. Did you mean: 'install_platlib'?
|
183
|
-
[end of output]
|
184
|
-
```
|
185
|
-
|
186
|
-
Upgrade your setuptools:
|
187
|
-
```bash
|
188
|
-
pip install -U setuptools
|
189
|
-
```
|
190
|
-
</details>
|
191
158
|
|
192
159
|
### Install the client
|
193
160
|
|
@@ -230,6 +197,8 @@ If your system is not currently supported, [open an issue](https://github.com/ka
|
|
230
197
|
|
231
198
|
### OS compatibility
|
232
199
|
|
200
|
+
Currently **seed nodes** are supported exclusively on linux machines (x86_64 platform). However Kalavai supports mix-pools, i.e. having Windows and MacOS computers as workers.
|
201
|
+
|
233
202
|
Since **worker nodes** run inside docker, any machine that can run docker **should** be compatible with Kalavai. Here are instructions for [linux](https://docs.docker.com/engine/install/), [Windows](https://docs.docker.com/desktop/setup/install/windows-install/) and [MacOS](https://docs.docker.com/desktop/setup/install/mac-install/).
|
234
203
|
|
235
204
|
The kalavai client, which controls and access pools, can be installed on any machine that has python 3.10+.
|
@@ -237,9 +206,10 @@ The kalavai client, which controls and access pools, can be installed on any mac
|
|
237
206
|
|
238
207
|
### Hardware compatibility:
|
239
208
|
|
240
|
-
- `amd64` or `x86_64` CPU architecture
|
209
|
+
- `amd64` or `x86_64` CPU architecture for seed and worker nodes.
|
210
|
+
- `arm64` CPU architecture for worker nodes.
|
241
211
|
- NVIDIA GPU
|
242
|
-
- AMD and Intel GPUs are currently not supported ([interested in helping us test it?](https://kalavai-net.github.io/kalavai-client/compatibility/#help-testing-amd-gpus))
|
212
|
+
- Mac M series, AMD and Intel GPUs are currently not supported ([interested in helping us test it?](https://kalavai-net.github.io/kalavai-client/compatibility/#help-testing-amd-gpus))
|
243
213
|
|
244
214
|
</details>
|
245
215
|
|
@@ -247,15 +217,15 @@ The kalavai client, which controls and access pools, can be installed on any mac
|
|
247
217
|
|
248
218
|
- [x] Kalavai client on Linux
|
249
219
|
- [x] [TEMPLATE] Distributed LLM deployment
|
250
|
-
- [x] Kalavai client on Windows (
|
220
|
+
- [x] Kalavai client on Windows (worker only)
|
221
|
+
- [x] Kalavai client on Windows WSL2 (seed and worker)
|
251
222
|
- [x] Self-hosted LLM pools
|
252
223
|
- [x] Collaborative LLM deployment
|
253
224
|
- [x] Ray cluster support
|
254
|
-
- [x] Kalavai client on Mac
|
225
|
+
- [x] Kalavai client on Mac (worker only)
|
255
226
|
- [x] Kalavai pools UI
|
256
|
-
- [ ] [TEMPLATE] [GPUStack](https://github.com/gpustack/gpustack) support
|
257
|
-
- [ ] [TEMPLATE] [exo](https://github.com/exo-explore/exo) support
|
258
227
|
- [ ] Support for AMD GPUs
|
228
|
+
- [ ] Support for Mac M GPUs
|
259
229
|
- [x] Docker install path
|
260
230
|
|
261
231
|
|
@@ -0,0 +1,25 @@
|
|
1
|
+
kalavai_client/__init__.py,sha256=1--FABNdIxbiNn1wQox38stjIswkk1wPeOgoYJXMsNU,23
|
2
|
+
kalavai_client/__main__.py,sha256=WQUfxvRsBJH5gsCJg8pLz95QnZIj7Ol8psTO77m0QE0,73
|
3
|
+
kalavai_client/assets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
+
kalavai_client/assets/apps.yaml,sha256=Qe3RtY4kQbzZnF9K724FUbtqnkuCGfNUfK-WWtamATg,6365
|
5
|
+
kalavai_client/assets/apps_values.yaml,sha256=WRew3bS1MztjzcJfphuJcKn0n2T1ICRupPpr_Csjt_s,1644
|
6
|
+
kalavai_client/assets/docker-compose-gui.yaml,sha256=shqN78YLw0QP7bqTKveI4ppz5E-5b1JowmsSB4OG3nA,778
|
7
|
+
kalavai_client/assets/docker-compose-template.yaml,sha256=KHIwJ2WWX7Y7wQKiXRr82Jqd3IKRyls5zhTyl8mSmrc,1805
|
8
|
+
kalavai_client/assets/nginx.conf,sha256=drVVCg8GHucz7hmt_BI6giAhK92OV71257NTs3LthwM,225
|
9
|
+
kalavai_client/assets/pool_config_template.yaml,sha256=fFz4w2-fMKD5KvyzFdfcWD_jSneRlmnjLc8hCctweX0,576
|
10
|
+
kalavai_client/assets/pool_config_values.yaml,sha256=VrM3XHQfQo6QLZ68qvagooUptaYgl1pszniY_JUtemk,233
|
11
|
+
kalavai_client/assets/user_workspace.yaml,sha256=wDvlMYknOPABAEo0dsQwU7bac8iubjAG9tdkFbJZ5Go,476
|
12
|
+
kalavai_client/assets/user_workspace_values.yaml,sha256=G0HOzQUxrDMCwuW9kbWUZaKMzDDPVwDwzBHCL2Xi2ZM,542
|
13
|
+
kalavai_client/auth.py,sha256=EB3PMvKUn5_KAQkezkEHEt-OMZXyfkZguIQlUFkEHcA,3243
|
14
|
+
kalavai_client/bridge_api.py,sha256=O65aIh5lUl0KldRekHzLC-xdv1YJmrR14kt5-3UgCco,15351
|
15
|
+
kalavai_client/bridge_models.py,sha256=5ALGbkb6cxKwXbrzeTa9ja0kiZkJBvnY3J1IsmXTn0U,2540
|
16
|
+
kalavai_client/cli.py,sha256=_LK5OrCM5PYcYZo7lwXyfI3mlNzLFhL-BicKYbJkxeY,47123
|
17
|
+
kalavai_client/cluster.py,sha256=Z2PIXbZuSAv9xmw-MyZP1M41BpVMpirLzG51bqGA-zc,13548
|
18
|
+
kalavai_client/core.py,sha256=R8UBTTzMHVPHuM9nB70cIxUxVCHyBspEq1cAWH1OyOQ,34304
|
19
|
+
kalavai_client/env.py,sha256=YsfZj7LWf6ABquDsoIFFkXCFYwenpDk8zVnGsf7qv98,2823
|
20
|
+
kalavai_client/utils.py,sha256=kGtfEuXVG5LgMJk289ksFgYrsMHwKXN7yvS5wCIou8s,12781
|
21
|
+
kalavai_client-0.6.16.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
22
|
+
kalavai_client-0.6.16.dist-info/METADATA,sha256=K5mzqy8pSDdK6WWFSt8YZNTJLENfeV3OOGELq417dYs,12655
|
23
|
+
kalavai_client-0.6.16.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
24
|
+
kalavai_client-0.6.16.dist-info/entry_points.txt,sha256=9T6D45gxwzfVbglMm1r6XPdXuuZdHfy_7fCeu2jUphc,50
|
25
|
+
kalavai_client-0.6.16.dist-info/RECORD,,
|
@@ -1,25 +0,0 @@
|
|
1
|
-
kalavai_client/__init__.py,sha256=nfdFjB1S39Wxvq7GI6NuNOdisKxExyZQSWX0Q2sAupU,23
|
2
|
-
kalavai_client/__main__.py,sha256=WQUfxvRsBJH5gsCJg8pLz95QnZIj7Ol8psTO77m0QE0,73
|
3
|
-
kalavai_client/assets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
4
|
-
kalavai_client/assets/apps.yaml,sha256=L0hi826JwWW0rDRD83wcFVJVNZoUnafPdsjpharBrHE,6365
|
5
|
-
kalavai_client/assets/apps_values.yaml,sha256=WRew3bS1MztjzcJfphuJcKn0n2T1ICRupPpr_Csjt_s,1644
|
6
|
-
kalavai_client/assets/docker-compose-gui.yaml,sha256=DGCyGYzz1kH6kkMbo62FJHe3F9vcAmA8DOHw-c_o0Kw,752
|
7
|
-
kalavai_client/assets/docker-compose-template.yaml,sha256=w9Eux2-lQgkGFbNhwHwurlRJe13CVZPrAGOiFBfI5I0,1763
|
8
|
-
kalavai_client/assets/nginx.conf,sha256=drVVCg8GHucz7hmt_BI6giAhK92OV71257NTs3LthwM,225
|
9
|
-
kalavai_client/assets/pool_config_template.yaml,sha256=fFz4w2-fMKD5KvyzFdfcWD_jSneRlmnjLc8hCctweX0,576
|
10
|
-
kalavai_client/assets/pool_config_values.yaml,sha256=VrM3XHQfQo6QLZ68qvagooUptaYgl1pszniY_JUtemk,233
|
11
|
-
kalavai_client/assets/user_workspace.yaml,sha256=wDvlMYknOPABAEo0dsQwU7bac8iubjAG9tdkFbJZ5Go,476
|
12
|
-
kalavai_client/assets/user_workspace_values.yaml,sha256=G0HOzQUxrDMCwuW9kbWUZaKMzDDPVwDwzBHCL2Xi2ZM,542
|
13
|
-
kalavai_client/auth.py,sha256=EB3PMvKUn5_KAQkezkEHEt-OMZXyfkZguIQlUFkEHcA,3243
|
14
|
-
kalavai_client/bridge_api.py,sha256=-z0NBUSRJkVOfP807Fd-ZX2uEtKc6BCfrDD_umQ6sNg,15592
|
15
|
-
kalavai_client/bridge_models.py,sha256=775aXLTma3dv6KmKTmebAZ55ns6d9EmNno5e4blfoNY,2738
|
16
|
-
kalavai_client/cli.py,sha256=mmwLqqSYfl9k6vqveMcbHTq7g5FFd84YUUQCSH4J0k0,46967
|
17
|
-
kalavai_client/cluster.py,sha256=Z2PIXbZuSAv9xmw-MyZP1M41BpVMpirLzG51bqGA-zc,13548
|
18
|
-
kalavai_client/core.py,sha256=u8a4uYqGS0mMJh0ArcXG2hwp2uDUSuwM5ROGXRQkHZg,34051
|
19
|
-
kalavai_client/env.py,sha256=YsfZj7LWf6ABquDsoIFFkXCFYwenpDk8zVnGsf7qv98,2823
|
20
|
-
kalavai_client/utils.py,sha256=S80bLSICvWLhtQP-dmW0OF4coKwjxmhmPIja8UArTTE,12712
|
21
|
-
kalavai_client-0.6.14.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
22
|
-
kalavai_client-0.6.14.dist-info/METADATA,sha256=UkJ77kexOEA-_8c9DwnphWnk6vZl1-1g2EGPNLJ9VHI,13354
|
23
|
-
kalavai_client-0.6.14.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
24
|
-
kalavai_client-0.6.14.dist-info/entry_points.txt,sha256=9T6D45gxwzfVbglMm1r6XPdXuuZdHfy_7fCeu2jUphc,50
|
25
|
-
kalavai_client-0.6.14.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|