Skip to content

Commit 22d2a8c

Browse files
docs
1 parent f9d6e77 commit 22d2a8c

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ redis:
7979
helm repo add sourcebot https://sourcebot-dev.github.io/sourcebot-helm-chart
8080
helm repo update
8181
helm install sourcebot sourcebot/sourcebot \
82+
--namespace sourcebot --create-namespace \
8283
-f values.yaml \
8384
--set-json "sourcebot.config=$(cat config.json)"
8485
```
@@ -88,6 +89,7 @@ helm install sourcebot sourcebot/sourcebot \
8889
```bash
8990
helm repo update
9091
helm upgrade sourcebot sourcebot/sourcebot \
92+
--namespace sourcebot \
9193
-f values.yaml \
9294
--set-json "sourcebot.config=$(cat config.json)"
9395
```
@@ -394,7 +396,7 @@ sourcebot:
394396
To uninstall/delete the `sourcebot` deployment:
395397

396398
```bash
397-
helm uninstall sourcebot
399+
helm uninstall sourcebot --namespace sourcebot
398400
```
399401

400402
This removes all Kubernetes components associated with the chart but **preserves PersistentVolumeClaims (PVCs) by default**. This includes:
@@ -405,5 +407,10 @@ This removes all Kubernetes components associated with the chart but **preserves
405407
To also remove all PVCs (⚠️ **this will delete all your data**):
406408

407409
```bash
410+
<<<<<<< Updated upstream
408411
kubectl delete pvc -l app.kubernetes.io/instance=sourcebot
409412
```
413+
=======
414+
kubectl delete pvc -l app.kubernetes.io/instance=sourcebot --namespace sourcebot
415+
```
416+
>>>>>>> Stashed changes

0 commit comments

Comments
 (0)