Skip to content

Commit

Permalink
Add hint how to limit resoucre usage
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Köhler <axel.koehler@kiwigrid.com>
  • Loading branch information
Axel Köhler committed Nov 23, 2019
1 parent 4a306b0 commit 78d9fee
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions deployment/helm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,3 +99,13 @@ helm delete eclipse-ditto --purge
```bash
kind delete cluster
```

### Troubleshooting

If you experience high resource consumption (either CPU or RAM or both), you can limit the resource usage by specifing resource limits.
This can be done individually for each single component.
Here is an example how to limit CPU to 0.25 Cores and RAM to 512MiB for the `connectivity` service:

```bash
helm upgrade eclipse-ditto ./eclipse-ditto --install --wait --set connectivity.resources.limits.cpu=0.25 --set connectivity.resources.limits.memory=512Mi
```

0 comments on commit 78d9fee

Please sign in to comment.