kubetorch 0.2.0__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 kubetorch might be problematic. Click here for more details.

Files changed (93) hide show
  1. kubetorch/__init__.py +60 -0
  2. kubetorch/cli.py +1985 -0
  3. kubetorch/cli_utils.py +1025 -0
  4. kubetorch/config.py +453 -0
  5. kubetorch/constants.py +18 -0
  6. kubetorch/docs/Makefile +18 -0
  7. kubetorch/docs/__init__.py +0 -0
  8. kubetorch/docs/_ext/json_globaltoc.py +42 -0
  9. kubetorch/docs/api/cli.rst +10 -0
  10. kubetorch/docs/api/python/app.rst +21 -0
  11. kubetorch/docs/api/python/cls.rst +19 -0
  12. kubetorch/docs/api/python/compute.rst +25 -0
  13. kubetorch/docs/api/python/config.rst +11 -0
  14. kubetorch/docs/api/python/fn.rst +19 -0
  15. kubetorch/docs/api/python/image.rst +14 -0
  16. kubetorch/docs/api/python/secret.rst +18 -0
  17. kubetorch/docs/api/python/volumes.rst +13 -0
  18. kubetorch/docs/api/python.rst +101 -0
  19. kubetorch/docs/conf.py +69 -0
  20. kubetorch/docs/index.rst +20 -0
  21. kubetorch/docs/requirements.txt +5 -0
  22. kubetorch/globals.py +285 -0
  23. kubetorch/logger.py +59 -0
  24. kubetorch/resources/__init__.py +0 -0
  25. kubetorch/resources/callables/__init__.py +0 -0
  26. kubetorch/resources/callables/cls/__init__.py +0 -0
  27. kubetorch/resources/callables/cls/cls.py +157 -0
  28. kubetorch/resources/callables/fn/__init__.py +0 -0
  29. kubetorch/resources/callables/fn/fn.py +133 -0
  30. kubetorch/resources/callables/module.py +1416 -0
  31. kubetorch/resources/callables/utils.py +174 -0
  32. kubetorch/resources/compute/__init__.py +0 -0
  33. kubetorch/resources/compute/app.py +261 -0
  34. kubetorch/resources/compute/compute.py +2596 -0
  35. kubetorch/resources/compute/decorators.py +139 -0
  36. kubetorch/resources/compute/rbac.py +74 -0
  37. kubetorch/resources/compute/utils.py +1114 -0
  38. kubetorch/resources/compute/websocket.py +137 -0
  39. kubetorch/resources/images/__init__.py +1 -0
  40. kubetorch/resources/images/image.py +414 -0
  41. kubetorch/resources/images/images.py +74 -0
  42. kubetorch/resources/secrets/__init__.py +2 -0
  43. kubetorch/resources/secrets/kubernetes_secrets_client.py +412 -0
  44. kubetorch/resources/secrets/provider_secrets/__init__.py +0 -0
  45. kubetorch/resources/secrets/provider_secrets/anthropic_secret.py +12 -0
  46. kubetorch/resources/secrets/provider_secrets/aws_secret.py +16 -0
  47. kubetorch/resources/secrets/provider_secrets/azure_secret.py +14 -0
  48. kubetorch/resources/secrets/provider_secrets/cohere_secret.py +12 -0
  49. kubetorch/resources/secrets/provider_secrets/gcp_secret.py +16 -0
  50. kubetorch/resources/secrets/provider_secrets/github_secret.py +13 -0
  51. kubetorch/resources/secrets/provider_secrets/huggingface_secret.py +20 -0
  52. kubetorch/resources/secrets/provider_secrets/kubeconfig_secret.py +12 -0
  53. kubetorch/resources/secrets/provider_secrets/lambda_secret.py +13 -0
  54. kubetorch/resources/secrets/provider_secrets/langchain_secret.py +12 -0
  55. kubetorch/resources/secrets/provider_secrets/openai_secret.py +11 -0
  56. kubetorch/resources/secrets/provider_secrets/pinecone_secret.py +12 -0
  57. kubetorch/resources/secrets/provider_secrets/providers.py +93 -0
  58. kubetorch/resources/secrets/provider_secrets/ssh_secret.py +12 -0
  59. kubetorch/resources/secrets/provider_secrets/wandb_secret.py +11 -0
  60. kubetorch/resources/secrets/secret.py +238 -0
  61. kubetorch/resources/secrets/secret_factory.py +70 -0
  62. kubetorch/resources/secrets/utils.py +209 -0
  63. kubetorch/resources/volumes/__init__.py +0 -0
  64. kubetorch/resources/volumes/volume.py +365 -0
  65. kubetorch/servers/__init__.py +0 -0
  66. kubetorch/servers/http/__init__.py +0 -0
  67. kubetorch/servers/http/distributed_utils.py +3223 -0
  68. kubetorch/servers/http/http_client.py +730 -0
  69. kubetorch/servers/http/http_server.py +1788 -0
  70. kubetorch/servers/http/server_metrics.py +278 -0
  71. kubetorch/servers/http/utils.py +728 -0
  72. kubetorch/serving/__init__.py +0 -0
  73. kubetorch/serving/autoscaling.py +173 -0
  74. kubetorch/serving/base_service_manager.py +363 -0
  75. kubetorch/serving/constants.py +83 -0
  76. kubetorch/serving/deployment_service_manager.py +478 -0
  77. kubetorch/serving/knative_service_manager.py +519 -0
  78. kubetorch/serving/raycluster_service_manager.py +582 -0
  79. kubetorch/serving/service_manager.py +18 -0
  80. kubetorch/serving/templates/deployment_template.yaml +17 -0
  81. kubetorch/serving/templates/knative_service_template.yaml +19 -0
  82. kubetorch/serving/templates/kt_setup_template.sh.j2 +81 -0
  83. kubetorch/serving/templates/pod_template.yaml +194 -0
  84. kubetorch/serving/templates/raycluster_service_template.yaml +42 -0
  85. kubetorch/serving/templates/raycluster_template.yaml +35 -0
  86. kubetorch/serving/templates/service_template.yaml +21 -0
  87. kubetorch/serving/templates/workerset_template.yaml +36 -0
  88. kubetorch/serving/utils.py +377 -0
  89. kubetorch/utils.py +284 -0
  90. kubetorch-0.2.0.dist-info/METADATA +121 -0
  91. kubetorch-0.2.0.dist-info/RECORD +93 -0
  92. kubetorch-0.2.0.dist-info/WHEEL +4 -0
  93. kubetorch-0.2.0.dist-info/entry_points.txt +5 -0
@@ -0,0 +1,121 @@
1
+ Metadata-Version: 2.4
2
+ Name: kubetorch
3
+ Version: 0.2.0
4
+ Summary: Kubetorch: A Kubernetes-native framework for distributed PyTorch workloads
5
+ License: Apache 2.0
6
+ Author: Runhouse Team
7
+ Requires-Python: >=3.9,<=3.13
8
+ Classifier: License :: OSI Approved :: Apache Software License
9
+ Classifier: License :: Other/Proprietary License
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Classifier: Topic :: System :: Distributed Computing
18
+ Provides-Extra: client
19
+ Provides-Extra: docs
20
+ Provides-Extra: otel
21
+ Provides-Extra: server
22
+ Requires-Dist: fastapi ; extra == "server"
23
+ Requires-Dist: httpx (>=0.28.0,<0.29.0)
24
+ Requires-Dist: jinja2 (>=3.0)
25
+ Requires-Dist: kubernetes (>=20.0.0,!=32.0.0)
26
+ Requires-Dist: myst-parser ; extra == "docs"
27
+ Requires-Dist: opentelemetry-api ; extra == "otel"
28
+ Requires-Dist: opentelemetry-distro ; extra == "otel"
29
+ Requires-Dist: opentelemetry-exporter-otlp ; extra == "otel"
30
+ Requires-Dist: opentelemetry-exporter-prometheus ; extra == "otel"
31
+ Requires-Dist: opentelemetry-instrumentation ; extra == "otel"
32
+ Requires-Dist: opentelemetry-instrumentation-fastapi ; extra == "otel"
33
+ Requires-Dist: opentelemetry-instrumentation-logging ; extra == "otel"
34
+ Requires-Dist: opentelemetry-instrumentation-requests ; extra == "otel"
35
+ Requires-Dist: opentelemetry-sdk ; extra == "otel"
36
+ Requires-Dist: prometheus-api-client ; extra == "client"
37
+ Requires-Dist: prometheus-client ; extra == "otel"
38
+ Requires-Dist: pydantic (>=2.5.0)
39
+ Requires-Dist: python-json-logger ; extra == "server"
40
+ Requires-Dist: pyyaml (>=6.0,<7.0)
41
+ Requires-Dist: requests (>=2.32.0,<3.0.0)
42
+ Requires-Dist: rich ; extra == "client"
43
+ Requires-Dist: sphinx ; extra == "docs"
44
+ Requires-Dist: sphinx-autodoc-typehints ; extra == "docs"
45
+ Requires-Dist: sphinx-book-theme ; extra == "docs"
46
+ Requires-Dist: typer ; extra == "client"
47
+ Requires-Dist: uvicorn[standard] ; extra == "server"
48
+ Requires-Dist: web-pdb ; extra == "server"
49
+ Requires-Dist: websockets (>=15.0,<16.0)
50
+ Project-URL: Documentation, https://www.run.house/kubetorch/introduction
51
+ Project-URL: Homepage, https://run.house
52
+ Project-URL: Repository, https://github.com/run-house/kubetorch
53
+ Description-Content-Type: text/markdown
54
+
55
+ # 📦Kubetorch🔥
56
+
57
+ **A Python interface for running ML workloads on Kubernetes**
58
+
59
+ Kubetorch enables you to run any Python code on Kubernetes at any scale by specifying required resources, distribution, and scaling directly in code. It provides caching and hot redeployment for 1-2 second iteration cycles, handles hardware faults and preemptions programmatically, and orchestrates complex, heterogeneous workloads with built-in observability and fault tolerance.
60
+
61
+ ## Hello World
62
+
63
+ ```python
64
+ from kubetorch import fn
65
+
66
+ def hello_world():
67
+ return "Hello from Kubetorch!"
68
+
69
+ if __name__ == "__main__":
70
+ # Define your compute
71
+ compute = kt.Compute(cpus=".1")
72
+
73
+ # Send local function to freshly launched remote compute
74
+ remote_hello = kt.fn(hello_world).to(compute)
75
+
76
+ # Runs remotely on your Kubernetes cluster
77
+ result = hello_world()
78
+ print(result) # "Hello from Kubetorch!"
79
+ ```
80
+
81
+ ## What Kubetorch Enables
82
+
83
+ - **100x faster iteration** from 10+ minutes to 1-3 seconds for complex ML applications like RL and distributed training
84
+ - **50%+ compute cost savings** through intelligent resource allocation, bin-packing, and dynamic scaling
85
+ - **95% fewer production faults** with built-in fault handling with programmatic error recovery and resource adjustment
86
+
87
+ ## Installation
88
+
89
+ ### 1. Python Client
90
+
91
+ ```bash
92
+ pip install "kubetorch[client]"
93
+ ```
94
+
95
+ ### 2. Kubernetes Deployment (Helm)
96
+
97
+ ```bash
98
+ # Option 1: Install directly from OCI registry
99
+ helm upgrade --install kubetorch oci://ghcr.io/run-house/charts/kubetorch \
100
+ --version 0.2.0 -n kubetorch --create-namespace
101
+
102
+ # Option 2: Download chart locally first
103
+ helm pull oci://ghcr.io/run-house/charts/kubetorch --version 0.2.0 --untar
104
+ helm upgrade --install kubetorch ./kubetorch -n kubetorch --create-namespace
105
+ ```
106
+
107
+ For detailed setup instructions, see our [Installation Guide](https://www.run.house/kubetorch/installation).
108
+
109
+
110
+ ## Learn More
111
+
112
+ - **[Documentation](https://www.run.house/kubetorch/introduction)** - API Reference, concepts, and guides
113
+ - **[Examples](https://www.run.house/kubetorch/examples)** - Real-world usage patterns and tutorials
114
+ - **[Join our Slack](https://join.slack.com/t/kubetorch/shared_invite/zt-3g76q5i4j-uP60AdydxnAmjGVAQhtALA)** - Connect with the community and get support
115
+
116
+ ---
117
+
118
+ [Apache 2.0 License](LICENSE)
119
+
120
+ **🏃‍♀️ Built by [Runhouse](https://www.run.house) 🏠**
121
+
@@ -0,0 +1,93 @@
1
+ kubetorch/__init__.py,sha256=EwSzER4seuElVH9dpIu9k09dHfvnfBx1dp_zu-0B4h0,2115
2
+ kubetorch/cli.py,sha256=yCn-1z71TNS-tvA2D5CbZF3YTh2QYvfyXi7H3yN2vXI,68611
3
+ kubetorch/cli_utils.py,sha256=zzABvAT35eQulAakAmo6PwZkMg6pZNLA3HoZqsYZQB0,33353
4
+ kubetorch/config.py,sha256=-up9Tljkls_ZU8bASjDRnFaxTknBsoLeWgbuXbSt6cw,15839
5
+ kubetorch/constants.py,sha256=ReN2Gc7c5nMncR2cXiy5MzXZagF7D4yDHlBgNmwBJfc,401
6
+ kubetorch/docs/Makefile,sha256=ViKZxIiAhmNzDK14SzAubiaIrrEUA_rTxWxy8SZxywk,479
7
+ kubetorch/docs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ kubetorch/docs/_ext/json_globaltoc.py,sha256=LAX_EKskCdUI9bmAnCXfdyRTViwX1NulUXu_kATyKL4,1582
9
+ kubetorch/docs/api/cli.rst,sha256=_V2WVVODbbdcopWx-BLJkHiO_1BrBb9tKKvl4BTgrHw,400
10
+ kubetorch/docs/api/python/app.rst,sha256=TYXLcYbCEqVW7l1VQ9NVFcCl73tuJ9oPMAMcQ_sLzk4,492
11
+ kubetorch/docs/api/python/cls.rst,sha256=h5tjCqtyQNWtmBOaH5ERGS1nxp0Selm1fbsIMcnO-H8,398
12
+ kubetorch/docs/api/python/compute.rst,sha256=UyFehzcpMU4DszdSJna1w2Bq-ODWmK2Y9YmA6pDld2w,437
13
+ kubetorch/docs/api/python/config.rst,sha256=3-qphQwOo9lFK4balsmYD2t4hnPAVlZ72ASpu6mUxtI,278
14
+ kubetorch/docs/api/python/fn.rst,sha256=8IC4o2Acc4yP-HYGrRkNZcAgrQbnepyv77MAANV-ecQ,396
15
+ kubetorch/docs/api/python/image.rst,sha256=D_VKiEIr56ZUyxQR8SG2lRqq6JQYsYs_259_kyVQNak,314
16
+ kubetorch/docs/api/python/secret.rst,sha256=C6IdKjg2-p86zDzRPOTkYxScLs1D3zXrtQYh5Bnh9B4,339
17
+ kubetorch/docs/api/python/volumes.rst,sha256=D2DZUsjrH4rNB1a0tRV-t8P2HcHe4bG6DAMKKncab6g,330
18
+ kubetorch/docs/api/python.rst,sha256=cnqqGeEFASyJt0A--c9yAzadusgbPJWZP7SeQL6MeAM,2997
19
+ kubetorch/docs/conf.py,sha256=P7ZQWnIQYCn2aqXLeMlc6mG4aTzxXwcqqYwHm02ZCUI,1954
20
+ kubetorch/docs/index.rst,sha256=DAoVC-1NJQUStUlbq446cb1Iy_ae1CqdBIXUbC6mlYk,578
21
+ kubetorch/docs/requirements.txt,sha256=-NDXLpwXyEHQuep9rebi9OdjkRoewrGouhaccZDph4A,128
22
+ kubetorch/globals.py,sha256=Kv_8Qvnry0-eTgrlvdWUlId5yuJZYEwVBYD9Z6CpDB4,9411
23
+ kubetorch/logger.py,sha256=uLcpdozhAVGV88_kiop6qI9mOFmCpZ8xJ5SyilHhYuw,1628
24
+ kubetorch/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
25
+ kubetorch/resources/callables/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
26
+ kubetorch/resources/callables/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
27
+ kubetorch/resources/callables/cls/cls.py,sha256=WNIum_Fr0oBY9aK149WCPv4cdIBhZp19VUFI7L9RJaM,5695
28
+ kubetorch/resources/callables/fn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
+ kubetorch/resources/callables/fn/fn.py,sha256=1GO4zuXAS3NebkH_AymVyA-_lYSIIRox__0N6UhpQog,4741
30
+ kubetorch/resources/callables/module.py,sha256=y2aAKCJlMoB7IHbEvm2DrlejYDsoTO2SMSJzMB5IQ-0,56022
31
+ kubetorch/resources/callables/utils.py,sha256=kqGRQeRKtn64rv2mLCmcixsGu2QtEeUVyOe7dpPrHo0,6381
32
+ kubetorch/resources/compute/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ kubetorch/resources/compute/app.py,sha256=XkCxN-ZcdeZDDZ545LZ_e0tJ3o6c4-lUWiddnc_IwiQ,8598
34
+ kubetorch/resources/compute/compute.py,sha256=iIbymAnsXdgEramZ4Eqwy2GFsQ52bZRmu49IRNWvyEQ,101902
35
+ kubetorch/resources/compute/decorators.py,sha256=dAFzv7SBJodGosSXBiuzfralK9igkSRubrreD4KEyo8,4844
36
+ kubetorch/resources/compute/rbac.py,sha256=3qovND0Vmivi4qthiABqEqSjJBoNx3tpVkul_briiiE,2444
37
+ kubetorch/resources/compute/utils.py,sha256=zZnXOSWOOlgAxxs4YXFFYt5Ow_VCi5mBkfH8Ixq4U-4,38164
38
+ kubetorch/resources/compute/websocket.py,sha256=mDT05-2OROdRaYWEXZzRYrvnxVYiwdEcwLgVuHqDiGE,4562
39
+ kubetorch/resources/images/__init__.py,sha256=JyEkhdAaBLjjO1iUkdKIZFBTTC-XpZ2z-Livr_cUUDM,36
40
+ kubetorch/resources/images/image.py,sha256=azwYDAFBtRh9_RVYWNKjCsn85tcy_xmY18siEhzcc1M,16360
41
+ kubetorch/resources/images/images.py,sha256=m3Yngg4Pl2MtZf2Ge9c2-Fn9DFjkSXP8KqKklue_LV0,2119
42
+ kubetorch/resources/secrets/__init__.py,sha256=bAcntNq4IVdbgfL-NiUSMCJzskAvhuzD5tTUuXa75q4,90
43
+ kubetorch/resources/secrets/kubernetes_secrets_client.py,sha256=7g8RhnoGhpxDIUSNoQSzEMHXVM1J6icE4q7fufwq_O8,15658
44
+ kubetorch/resources/secrets/provider_secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
+ kubetorch/resources/secrets/provider_secrets/anthropic_secret.py,sha256=_vGgkTNFZIlIuMyD5TF_yIEaSFr2cGsH76_fLTD-O7E,301
46
+ kubetorch/resources/secrets/provider_secrets/aws_secret.py,sha256=UY8R_r-NvwTUTl_6_jLwKz6A_2nOACwueFK2cj0X99g,410
47
+ kubetorch/resources/secrets/provider_secrets/azure_secret.py,sha256=VEn8DLThps2GYF2W6C0xtn6qNnCS4S6aFmdVwkTY7W0,417
48
+ kubetorch/resources/secrets/provider_secrets/cohere_secret.py,sha256=XdztDQLSZKQf9r76V_h9IJPCGl5Y3DdJJVObvByp9hk,286
49
+ kubetorch/resources/secrets/provider_secrets/gcp_secret.py,sha256=JsdAGspPDOtsuWv1-_SIsFvxc7x0saz97xNBVNuV2JQ,420
50
+ kubetorch/resources/secrets/provider_secrets/github_secret.py,sha256=ZqGBn4_YFBdhOG2qa2VSJFn3wEeaka8mbfRvOrDOt-Q,342
51
+ kubetorch/resources/secrets/provider_secrets/huggingface_secret.py,sha256=2E8JIohrzJJaLW1p5Mm2yv-Dpb4iqS93CmTQGn86H9k,536
52
+ kubetorch/resources/secrets/provider_secrets/kubeconfig_secret.py,sha256=4d8OB429AX2tdDhEvswHE-tuEAf4dj4XptYBTkkUxCU,298
53
+ kubetorch/resources/secrets/provider_secrets/lambda_secret.py,sha256=0WQQy8c6Dhxk8APT1RMXOskak2j-5hDsQjN7vn3fAkE,340
54
+ kubetorch/resources/secrets/provider_secrets/langchain_secret.py,sha256=uhjO8X9WKxhfzVa3Y2lQxNd-rAqYsArE7ErXAj9A6Hg,301
55
+ kubetorch/resources/secrets/provider_secrets/openai_secret.py,sha256=rqlO2IQUmdQ7MkqHbqCWoWVsodxjyA4A_B97qNv8Pf4,274
56
+ kubetorch/resources/secrets/provider_secrets/pinecone_secret.py,sha256=HeXyVUkS5wB-rIouDsQNP2kYJcaH0qkz06SGFg13kSA,296
57
+ kubetorch/resources/secrets/provider_secrets/providers.py,sha256=YZFgREkmeMTu9ueDjs3xZUdxpOzTmWx5bc0CjR-7joM,3175
58
+ kubetorch/resources/secrets/provider_secrets/ssh_secret.py,sha256=rZjuiEhZ7isg9ZfgkIg9frBqY4DUEZBMjwE0hv7pYxI,272
59
+ kubetorch/resources/secrets/provider_secrets/wandb_secret.py,sha256=eVfCtMejPb7fvt5Yz1PJV7oXRBrkt-ialj3fo_5nOjI,269
60
+ kubetorch/resources/secrets/secret.py,sha256=8Xbd7syeVca5DnsNDh97D4JdPZthrbSg5GM6G4c1hEo,9385
61
+ kubetorch/resources/secrets/secret_factory.py,sha256=IG8WZAAWf4f8zJTX_JFU88nTLo3P3lDl1efdudkf08s,2950
62
+ kubetorch/resources/secrets/utils.py,sha256=Bf65Dwuun1KY6J02AdfpEXXR9qrBskxyyAkpXPF9DhU,6993
63
+ kubetorch/resources/volumes/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
64
+ kubetorch/resources/volumes/volume.py,sha256=SnjH8x94oyOZO13mYVCkL-fJY6QuLPbLAC5rS24o8Lc,12200
65
+ kubetorch/servers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
66
+ kubetorch/servers/http/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
+ kubetorch/servers/http/distributed_utils.py,sha256=6CLZn4JOdTIWSvnN5DYOIhiT7NctFeEtL-nqOAx4bYM,129685
68
+ kubetorch/servers/http/http_client.py,sha256=xs84zNGnquiF_q3FNcdGEKXu9LLmrnKxeJcAlZzP27I,29753
69
+ kubetorch/servers/http/http_server.py,sha256=CscBJBd7GiHxuWTopvK0JKFqqy7fyjM_aLUVEGVCJ30,69822
70
+ kubetorch/servers/http/server_metrics.py,sha256=0c9K7DBo6fYXAYqCXf2zqDyARP7mB2fwPOuDTzVTIQk,9614
71
+ kubetorch/servers/http/utils.py,sha256=39MQDD027D5YwA78U_hBVjbSvEsymYwZ-SVvQ4Zpzk8,27231
72
+ kubetorch/serving/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
73
+ kubetorch/serving/autoscaling.py,sha256=u6Ex4FyuQr4ZXIPKM0cYa3RkHxPVGp5STKPwdKJB44E,6516
74
+ kubetorch/serving/base_service_manager.py,sha256=pjjMmDCVj60P1XUS6muxHDXB_B5CRzRnOMBSPAybCyc,13481
75
+ kubetorch/serving/constants.py,sha256=RFi-czWgxqGfTfviPWOvhotsB1t-_mEkb65aR8Orvlo,2571
76
+ kubetorch/serving/deployment_service_manager.py,sha256=WquYS7EOIXQP2wok0-ioUZ0OyF5xjfSfXcxzUYBgL24,18195
77
+ kubetorch/serving/knative_service_manager.py,sha256=72JbW1r0MtDi8w5pAjCEuHs9tPeu53Lzpo_lus-N-6U,20307
78
+ kubetorch/serving/raycluster_service_manager.py,sha256=k3u01KDsi8tW_NWzR3jytT2DAHghP3utyhAK-7FS6tU,22983
79
+ kubetorch/serving/service_manager.py,sha256=4LdrzfwPFPf7IsSwR7HVxuSrbyBNw1dI4xPHR8TECrw,720
80
+ kubetorch/serving/templates/deployment_template.yaml,sha256=_hPm7sXCb2BVeYuhyAGz-hRzjAoSaXNikJj_3MJfLsM,435
81
+ kubetorch/serving/templates/knative_service_template.yaml,sha256=yKxBdduIOqDntywBdUFVaV3hc50cZhl6K91FNok6X_U,553
82
+ kubetorch/serving/templates/kt_setup_template.sh.j2,sha256=_U5TAq7WW0ALORmKS5Ma9R8e0TUthVh3PbQi21YxryU,2680
83
+ kubetorch/serving/templates/pod_template.yaml,sha256=5N0KuLBtphA1dyZ2hq8nYKOpaqDxUvLkZEl2fPG89yw,5530
84
+ kubetorch/serving/templates/raycluster_service_template.yaml,sha256=kW_bIJu36Ud4kI8Q9ycnQfIIbhkxNa-C6OP93Jpl-EA,1037
85
+ kubetorch/serving/templates/raycluster_template.yaml,sha256=ruWFk09-E85WZJc64l7NXrsdGYcW4spPzErWuzrLLes,990
86
+ kubetorch/serving/templates/service_template.yaml,sha256=ClIMlW-JzK4I6YWo9oBbwYXgNTcz8AGDMpo8_Q8C4ng,642
87
+ kubetorch/serving/templates/workerset_template.yaml,sha256=l7svttZrQPHDbZuZsO8EmG38eVlFUDr_UyP3E2Ci0zY,981
88
+ kubetorch/serving/utils.py,sha256=7TASPzrK-8bX3lBvGj95I3fTp4MOBFqFhJvqA1TVvqA,12691
89
+ kubetorch/utils.py,sha256=NIuWEWuBzOQsXb_eI5vEVYE_bu9uFzYVlyhHPQQSggo,9742
90
+ kubetorch-0.2.0.dist-info/METADATA,sha256=IqB_-YH88RVJKCJkIDL0NFnetEDO-XxVKgm3I9HRIKI,4827
91
+ kubetorch-0.2.0.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
92
+ kubetorch-0.2.0.dist-info/entry_points.txt,sha256=Gkg5B9pHJpGf-Zxk1LGx7RIG_9EI04MAbD6m4l1Rx3U,107
93
+ kubetorch-0.2.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 2.2.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,5 @@
1
+ [console_scripts]
2
+ kt=kubetorch.cli:app
3
+ kt_pdb=kubetorch.servers.http.pdb:main
4
+ kubetorch=kubetorch.cli:app
5
+