File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 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+ ```
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments