-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Limit retries during metabase init script (#42)
* Update values file example and docs * Adjust retries/timeout for metabase hook script * Move hook scripts to bash shell * Refactor kafkaconnector names
- Loading branch information
1 parent
be979eb
commit 4d5337d
Showing
5 changed files
with
39 additions
and
18 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 |
---|---|---|
|
@@ -26,19 +26,21 @@ This is an example values definition for replicating pagila db: | |
``` | ||
metabase: | ||
admin: | ||
email: [email protected] | ||
password: dataplane | ||
email: [email protected] | ||
ingress: | ||
enabled: true | ||
className: nginx-private | ||
hostName: metabase.nephelai.io | ||
enabled: true | ||
className: nginx-private | ||
hostName: metabase.nephelai.io | ||
cdc: | ||
postgres: | ||
- hostname: pagilahost | ||
port: 5432 | ||
id: pagila | ||
dbname: pagila | ||
signaling: True | ||
exclude: | ||
- "public.staff" | ||
partitions: | ||
- source: "public.payment.*" | ||
sink: "payment" | ||
strimzi: | ||
connect: | ||
secret: "metabase-pagila-db" | ||
|
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
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,12 +1,11 @@ | ||
--- | ||
metabase: | ||
admin: | ||
email: [email protected] | ||
password: dataplane | ||
email: [email protected] | ||
ingress: | ||
enabled: true | ||
className: nginx-private | ||
hostName: metabase.nephelai.io | ||
enabled: true | ||
className: nginx-private | ||
hostName: metabase.nephelai.io | ||
cdc: | ||
postgres: | ||
- hostname: pagilahost | ||
|