-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(config): add support for config.yaml file
Support for specifying a config.yaml config file was added [here](https://github.com/metabase/metabase/pull/25986/files). I'm not sure if this is the best way to add support for this, but would love to have the ability to specify the databases as part of the Helm Chart values.
- Loading branch information
Showing
3 changed files
with
34 additions
and
2 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
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 |
---|---|---|
|
@@ -92,6 +92,28 @@ session: | |
# sessionCookies: | ||
# cookieSameSite: | ||
|
||
# Specifies the config to use as config.yaml, as per | ||
# https://github.com/metabase/metabase/pull/25986/files | ||
# | ||
config: | ||
# users: | ||
# - first_name: Cam | ||
# last_name: Saul | ||
# password: 2cans | ||
# email: [email protected] | ||
# - first_name: Cam | ||
# last_name: Era | ||
# password: 2cans | ||
# email: [email protected] | ||
# databases: | ||
# - type: postgres | ||
# host: localhost | ||
# port: 5432 | ||
# name: test-data | ||
# password: {{ env MY_POSTGRES_PASSWORD }} | ||
# settings: | ||
# my-setting: 1234 | ||
|
||
# specify init containers, e.g. for module download | ||
extraInitContainers: [] | ||
# - name: download-modules | ||
|