Skip to content

Commit 5a08568

Browse files
committed
doc: Added README to chart dir
1 parent 7873c44 commit 5a08568

2 files changed

Lines changed: 22 additions & 1 deletion

File tree

charts/chromadb-chart/README.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Installation
2+
3+
To quickly start:
4+
5+
```bash
6+
helm repo add chroma https://amikos-tech.github.io/chromadb-chart/
7+
helm repo update
8+
helm search repo chroma/
9+
helm install chroma chroma/chromadb
10+
```
11+
12+
For configuration see: https://github.com/amikos-tech/chromadb-chart
13+
14+
15+
## Local Cluster
16+
17+
```bash
18+
minikube start --addons=ingress -p chroma
19+
minikube profile chroma
20+
# install chart
21+
```

charts/chromadb-chart/templates/NOTES.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export CHROMA_TOKEN=$(kubectl --namespace {{ .Release.Namespace }} get secret {{
2828
```
2929
{{ else }}
3030
```bash
31-
export CHROMA_TOKEN=$(kubectl --namespace default get secret chromadb-auth -o jsonpath="{.data.token}" | base64 --decode)
31+
export CHROMA_TOKEN=$(kubectl --namespace {{ .Release.Namespace }} get secret chromadb-auth -o jsonpath="{.data.token}" | base64 --decode)
3232
```
3333
{{ end }}
3434
```python

0 commit comments

Comments
 (0)