forked from TonicAI/tonic_helm_charts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.sample.yaml
More file actions
47 lines (36 loc) · 1.87 KB
/
values.sample.yaml
File metadata and controls
47 lines (36 loc) · 1.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# tonicdb is the postgres database that will hold information about your workspace.
tonicdb:
host: <db-host>
port: 5432
dbName: tonic
user: <user>
password: <password>
sslMode: Require
environmentName: <company-name>
# tonicStatisticsSeed will cause generations to be consisent with each other for anything where consistency is set to true.
# otherwise each generation will be internally consistent, but not consistent with other generations. Uncomment and set to any integer to enable.
# tonicStatisticsSeed: <any-integer>
# numberOfWorkers will determine the parralelism of each job that is run. It will not cause jobs to run in parralel.
numberOfWorkers: 1
# enableLogCollection will send errors and general information about generations to Tonic if true. It will not send user data.
enableLogCollection: false
# enableSparkSupport will install the necessary additional components to allow Tonic to connect to your Spark instance
# enableSparkSupport: true
enableStackCollection: true
# This value will be provided to you by Tonic and will allow you to authenticate against our private docker repository.
dockerConfigAuth: <docker-config-auth>
# You can set this to a specific Tonic version number if you wish to ensure you always get the same version. Otherwise you will always deploy the latest version of Tonic.
tonicVersion: latest
# Use a Tonic license to enable different enterprise features. License keys can be obtained from Tonic.
# tonicLicense: <license-key>
# Below are the settings for Single Sign On. Not every provider requires every value. The Tonic support team will help you configure this.
# tonicSsoConfig:
# provider: <provider-name>
# domain: <sso-domain>
# clientId: <client-id>
# clientSecret: <client-secret>
# identityProviderId: <identity-provider-id>
# authServerId: <auth-server-id>
# groupFilter: .*Tonic.*
serviceAccount:
create: true