File tree Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -300,7 +300,7 @@ helm: manifests kustomize helmify
300
300
301
301
.PHONY : helm-install
302
302
helm-install : helm
303
- helm upgrade --install llmaz ./chart --namespace llmaz-system -f ./chart/values.global.yaml
303
+ helm upgrade --install llmaz ./chart --namespace llmaz-system --create-namespace - f ./chart/values.global.yaml
304
304
305
305
.PHONY : helm-package
306
306
helm-package :
File renamed without changes.
Original file line number Diff line number Diff line change 3
3
## Prerequisites
4
4
5
5
* Kubernetes version >= 1.27
6
- * Helm
6
+ * Helm 3
7
7
8
8
## Install a released version
9
9
10
10
### Install
11
11
12
12
``` cmd
13
13
helm repo add inftyai https://inftyai.github.io/llmaz
14
- helm install llmaz inftyai/llmaz --version 0.0.2
14
+ helm repo update
15
+ helm install llmaz inftyai/llmaz --namespace llmaz-system --create-namespace --version 0.0.2
15
16
```
16
17
17
18
### Uninstall
18
19
19
20
``` cmd
20
21
helm uninstall llmaz
22
+ kubectl delete ns llmaz-system
23
+ ```
24
+
25
+ If you want to delete the CRDs as well, run (ignore the error)
26
+ ``` cmd
27
+ kubectl delete crd \
28
+ openmodels.llmaz.io \
29
+ backendruntimes.inference.llmaz.io \
30
+ playgrounds.inference.llmaz.io \
31
+ services.inference.llmaz.io
21
32
```
22
33
23
34
## Install from source
24
35
25
36
### Install
26
37
27
38
``` cmd
39
+ git clone https://github.com/inftyai/llmaz.git && cd llmaz
28
40
make helm-install
29
41
```
30
42
31
43
### Uninstall
32
44
33
45
``` cmd
34
46
helm uninstall llmaz
47
+ kubectl delete ns llmaz-system
48
+ ```
49
+
50
+ If you want to delete the CRDs as well, run (ignore the error)
51
+ ``` cmd
52
+ kubectl delete crd \
53
+ openmodels.llmaz.io \
54
+ backendruntimes.inference.llmaz.io \
55
+ playgrounds.inference.llmaz.io \
56
+ services.inference.llmaz.io
35
57
```
You can’t perform that action at this time.
0 commit comments