-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add more values to helm chart; update readme and chart description
- Loading branch information
Showing
5 changed files
with
49 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,30 @@ | ||
# Dasher Helm Chart | ||
|
||
## Install | ||
## Setup | ||
### Add Repository | ||
```bash | ||
helm repo add dasher https://flohansen.github.io/dasher | ||
helm repo update | ||
``` | ||
|
||
### Install | ||
```bash | ||
helm install <release-name> dasher/dasher | ||
``` | ||
|
||
### Uninstall | ||
```bash | ||
helm uninstall <release-name> | ||
``` | ||
|
||
## Configuration | ||
| Parameter | Description | Default | | ||
| --------- | ----------- | ------- | | ||
| replicas | It is not recommended to set this value different to 1, because it is not possible to change the database type for now. Setting the value to n > 1 would result in n pods with each having its own SQLite database attached. Replication using SQLite is not supported yet. Anyways, this should not be an issue since the load on the application will not affect the server. | `1` | | ||
| ingress.enabled | If an ingress should be deployed. Make sure to setup a proper ingress controller e.g. [nginx](https://docs.nginx.com/nginx-ingress-controller/). | `false` | | ||
| ingress.ingressClassName | The ingress class name (like `nginx`) | `""` | | ||
| storage.size | The size of the persistent volume. This is being used to save the application state (in SQLite). | `1G` | | ||
| `replicas` | It is not recommended to set this value different to 1, because it is not possible to change the database type for now. Setting the value to n > 1 would result in n pods with each having its own SQLite database attached. Replication using SQLite is not supported yet. Anyways, this should not be an issue since the load on the application will not affect the server. | `1` | | ||
| `service.enabled` | If a service should be deployed. | `true` | | ||
| `service.type` | The [type](https://kubernetes.io/docs/concepts/services-networking/service/#publishing-services-service-types) of the service. | `ClusterIP` | | ||
| `service.clusterIP` | The internal cluster IP. Only used when service.type is `ClusterIP` | `""` | | ||
| `service.loadBalancerIP` | The IP address of the load balancer. Only used when `service.type` is `LoadBalancer`. | `""` | | ||
| `ingress.enabled` | If an ingress should be deployed. Make sure to setup a proper ingress controller e.g. [nginx](https://docs.nginx.com/nginx-ingress-controller/). | `false` | | ||
| `ingress.ingressClassName` | The ingress class name (like `nginx`) | `""` | | ||
| `storage.size` | The size of the persistent volume. This is being used to save the application state (in SQLite). | `1G` | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters