-
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.
- Loading branch information
Showing
3 changed files
with
70 additions
and
22 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -86,7 +86,7 @@ uselocalRules: true | |
or when installing the chart | ||
```yaml | ||
helm install kexa-helm kexa/kexa -n kexa --set hostConfigPath="/mnt/host/c/your/path/to/tmpconfig" --set uselocalRules=true | ||
helm install kexa-helm kexa/kexa -n kexa --set hostConfigPath="/mnt/host/c/your/path/to/tmpconfig" --set uselocalRules="true" | ||
``` | ||
|
||
## Install the chart | ||
|
@@ -134,3 +134,65 @@ Now you can schedule Kexa as you wish through Cronicle | |
|
||
|
||
*Read the instructions in your console!* | ||
|
||
## Custom Values | ||
|
||
```yaml | ||
# app name | ||
appname: kexa-helm | ||
|
||
namespace: kexa | ||
|
||
# local rules folder mount | ||
hostConfigPath: /mnt/host/c/your/path/to/tmpconfig | ||
hostConfigFolder: tmpconfig | ||
uselocalRules: false | ||
|
||
# kubernetes addon | ||
kubernetesAddon: | ||
enabled: true | ||
mountPath: kubernetesconfigurations | ||
|
||
# kubernetes cronjob (instead of using Cronicle) | ||
kexaKubeCronJob: "0 0 29 2 1" | ||
|
||
# Kexa version | ||
kexaScript: | ||
image: innovtech/kexa | ||
tag: latest | ||
|
||
# database connection | ||
# can only be reconfigured here | ||
grafana.ini: | ||
database: | ||
type: "postgres" | ||
host: "my-postgresql.kexa.svc.cluster.local" | ||
name: "kexa_export_database" | ||
user: "kexa_postgres_user" | ||
password: "my_postgres_password" | ||
ssl_mode: "disable" | ||
|
||
|
||
# postgres | ||
postgresql: | ||
image: | ||
tag: "15.0.0" | ||
livenessProbe: | ||
initialDelaySeconds: 200 | ||
readinessProbe: | ||
initialDelaySeconds: 200 | ||
host: my-postgresql.kexa.svc.cluster.local | ||
fullnameOverride: "my-postgresql" | ||
connectionString: "postgresql://kexa_postgres_user:[email protected]:5432/kexa_export_database" | ||
auth: | ||
postgresPassword: my_postgres_password | ||
username: kexa_postgres_user | ||
password: my_postgres_password | ||
database: kexa_export_database | ||
persistence: | ||
enabled: true | ||
size: 10Gi | ||
primary: | ||
service: | ||
port: 5432 | ||
``` |
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