Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
soujanyanmbri committed Aug 21, 2024
1 parent 8982962 commit 7d4cae8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@ You can change the smtp configuration if required however all emails with domain
```
2. Install the helm chart

Inorder to add persistent volume and configure the hostPath (To manually mount the data to a specific location), Update values-pv.yaml and use it to install helm charts.
Inorder to manually mount the data to a specific location, hostPath should be updated in values-pv.yaml, and used to install the helm charts.

```
cd deploy/helm
Expand Down
13 changes: 13 additions & 0 deletions docs/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,3 +110,16 @@ systemctl cat docker.service
It will tell you where the docker service file is located. Then edit `/lib/systemd/system/docker.service` with your favorite text editor: append `NetworkManager-wait-online.service` to line 4 (that line should start with the word `After=`)

Then run `systemctl daemon-reload` to update your changes to the service file.

---

**5. Problem:** Issues while using hostPath to manually mount the data:

ERROR: 0/1 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/1 nodes are available: 1 Preemption is not helpful for scheduling

To fix this issue, delete the existing persistent volumes, and start clean.
```Shell
❯ kubectl get pv

❯ kubectl delete pv {pv_names}
```

0 comments on commit 7d4cae8

Please sign in to comment.