File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7979helm repo add sourcebot https://sourcebot-dev.github.io/sourcebot-helm-chart
8080helm repo update
8181helm 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
8990helm repo update
9091helm 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:
394396To uninstall/delete the `sourcebot` deployment :
395397
396398` ` ` bash
397- helm uninstall sourcebot
399+ helm uninstall sourcebot --namespace sourcebot
398400` ` `
399401
400402This 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
405407To also remove all PVCs (⚠️ **this will delete all your data**) :
406408
407409` ` ` bash
410+ <<<<<<< Updated upstream
408411kubectl 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
You can’t perform that action at this time.
0 commit comments