-
Notifications
You must be signed in to change notification settings - Fork 1
/
values.yaml
59 lines (51 loc) · 1.47 KB
/
values.yaml
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
48
49
50
51
52
53
54
55
56
57
58
59
# At this time, replicaCount is required to always be 1.
replicaCount: 1
image:
repository: "public.ecr.aws/ottertune/agent"
pullPolicy: "IfNotPresent"
aws:
region: ""
# Either both AccessKeyID or SecretAccessKey must be provided or neither.
accessKeyID: ""
secretAccessKey: ""
# Some of these values are passed into a Configmap and others are stored
# in a secret.
ottertune:
dbIdentifier: ""
dbUsername: ""
dbPassword: ""
apiKey: ""
dbKey: ""
orgID: ""
postgresDBName: ""
apiKeyExistingSecret: ""
# To work around a bug in the OtterTune agent, we require users specify
# if they are using Aurora MySQL 5.6.
engine:
mysql:
auroraWorkaround:
enabled: false
imagePullSecrets: []
nameOverride: ""
fullnameOverride: ""
serviceAccount:
# Specifies whether a service account should be created
create: true
# Annotations to add to the service account
annotations: {}
# The name of the service account to use.
name: ""
# Resources are left blank so they can be a conscious choice for the user.
# This is what Helm recommends because it allows the chart to run on
# nodes with few resources, like Minikube.
resources: {}
# Allow users to inject their own nodeSelectors, tolerations,
# affinities, pod annotations, and security contexts.
nodeSelector: {}
tolerations: []
affinity: {}
podAnnotations: {}
podSecurityContext: {}
securityContext: {}
# Allow users to override the Server URL in case of on-prem deployments.
serverUrlOverride: ""