forked from christianhuth/helm-charts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
184 lines (162 loc) · 5.97 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
# -- Provide a name in place of `umami`
nameOverride: ""
# -- String to fully override `"umami.fullname"`
fullnameOverride: ""
image:
# -- image registry
registry: ghcr.io
# -- image repository
repository: umami-software/umami
# -- image pull policy
pullPolicy: Always
# -- Overrides the image tag
tag: "postgresql-v1.40.0"
# -- If defined, uses a Secret to pull an image from a private Docker registry or repository.
imagePullSecrets: []
# -- Annotations to be added to pods
podAnnotations: {}
# -- pod-level security context
podSecurityContext: {}
# fsGroup: 2000
# -- Number of replicas
replicaCount: 1
# -- The number of old ReplicaSets to retain
revisionHistoryLimit: 10
# -- Resource limits and requests for the controller pods.
resources: {}
# We usually recommend not to specify default resources and to leave this as a conscious
# choice for the user. This also increases chances charts run on environments with little
# resources, such as Minikube. If you do want to specify resources, uncomment the following
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
# limits:
# cpu: 100m
# memory: 128Mi
# requests:
# cpu: 100m
# memory: 128Mi
# -- container-level security context
securityContext:
runAsGroup: 65533
runAsNonRoot: true
runAsUser: 1001
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.
# If not set and create is true, a name is generated using the fullname template
name: ""
service:
# -- Kubernetes service type
type: ClusterIP
# -- Kubernetes port where service is exposed
port: 3000
ingress:
# -- Enable ingress record generation
enabled: false
# -- IngressClass that will be be used to implement the Ingress
className: ""
# -- Additional annotations for the Ingress resource
annotations: {}
# cert-manager.io/cluster-issuer: cluster-issuer-name
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# -- An array with hosts and paths
# @default -- see [values.yaml](./values.yaml)
hosts:
- host: chart-example.local
paths:
- path: /
pathType: ImplementationSpecific
# -- An array with the tls configuration
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
autoscaling:
# -- Enable Horizontal POD autoscaling
enabled: false
# -- Minimum number of replicas
minReplicas: 1
# -- Maximum number of replicas
maxReplicas: 100
# -- Target CPU utilization percentage
targetCPUUtilizationPercentage: 80
# -- Target Memory utilization percentage
targetMemoryUtilizationPercentage: 80
# -- Node labels for pod assignment
nodeSelector: {}
# -- Toleration labels for pod assignment
tolerations: []
# -- Affinity settings for pod assignment
affinity: {}
# -- additional environment variables to be added to the pods. See https://umami.is/docs/environment-variables for a complete list of available variables. Most variables can be set under umami as well.
extraEnv: []
umami:
# -- HTTP header to check for the client's IP address. This is useful when you're behind a proxy that uses non-standard headers.
clientIpHeader: ""
# -- Allows you to send metrics to a location different than the default /api/collect. This is to help you avoid some ad-blockers.
collectApiEndpoint: ""
# -- Disables the login page for the application
disableLogin: "1"
# -- Umami collects completely anonymous telemetry data in order help improve the application. You can choose to disable this if you don't want to participate.
disableTelemetry: "1"
# -- Disables the check for new versions of Umami
disableUpdates: "1"
# -- This will redirect all requests from http to https in the Umami application. Note, this does not apply to the tracking script.
forceSSL: "1"
hash:
# -- Name of an existing secret containing the hash salt under the key hash-salt
existingSecret: ""
# -- A random string used to generate unique values.
salt: ""
# -- hostname under which Umami will be reached
hostname: ""
# -- You can provide a comma-delimited list of IP address to exclude from data collection.
ignoredIpAddresses: ""
# -- setting this to true removes the environment variable DISABLE_LOGIN defined in `umami.disableLogin` from the deployment as this caused errors in some setups
removeDisableLoginEnv: false
# -- Removes the trailing slash from all incoming urls.
removeTrailingSlash: "1"
# -- Allows you to assign a custom name to the tracker script different from the default umami. This is to help you avoid some ad-blockers.
trackerScriptName: "umami"
postgresql:
# -- enable PostgreSQL™ subchart from Bitnami
enabled: true
auth:
# -- Name for a custom database to create
database: mychart
# -- Password for the custom user to create
password: mychart
# -- Name for a custom user to create
username: mychart
mysql:
# -- enable MySQL™ subchart from Bitnami
enabled: false
auth:
# -- Name for a custom database to create
database: mychart
# -- Password for the custom user to create
password: mychart
# -- Name for a custom user to create
username: mychart
externalDatabase:
auth:
# -- Name of the database to use
database: mychart
# -- Password to use
password: mychart
# -- Name of the user to use
username: mychart
# -- Hostname of the database
hostname: ""
# -- Port used to connect to database
port: 5432
# -- Type of database
type: postgresql
database:
# -- Key in the existing secret containing the database url
databaseUrlKey: ""
# -- use an existing secret containing the database url. If none given, we will generate the database url by using the other values. The password for the database has to be set using `.Values.postgresql.auth.password`, `.Values.mysql.auth.password` or `.Values.externalDatabase.auth.password`.
existingSecret: ""