-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelmfile.yaml
58 lines (51 loc) · 1.23 KB
/
helmfile.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
repositories:
- name: nginx-stable
url: https://helm.nginx.com/stable
- name: jetstack
url: https://charts.jetstack.io
- name: chroma
url: https://amikos-tech.github.io/chromadb-chart/
- name: ollama
url: https://otwld.github.io/ollama-helm/
- name: onechart
url: https://chart.onechart.dev
releases:
- name: nginx
namespace: nginx-ingress
chart: ingress-nginx/ingress-nginx
labels:
app: nginx
createNamespace: true
version: "4.10.1"
- name: utils
namespace: default
chart: ./utils-chart
createNamespace: true
version: "0.1.0"
- name: cert-manager
namespace: cert-manager
createNamespace: true
chart: jetstack/cert-manager
version: v1.14.5
values:
- installCRDs: true
- name: ollama
namespace: anything-llm
chart: ollama-helm/ollama
labels:
app: ollama
createNamespace: true
version: "1.4.0"
values: [ "./ollama.yaml" ]
- name: openweb-ui
namespace: anything-llm
chart: onechart/onechart
labels:
app: openweb-ui
createNamespace: true
version: "0.67.0"
needs:
- anything-llm/ollama
- cert-manager/cert-manager
- nginx-ingress/nginx
values: [ "./openwebui.yaml" ]