@@ -25,6 +25,15 @@ global:
2525 # - off-cluster: Run PostgreSQL outside the Kubernetes cluster
2626 databaseLocation : " on-cluster"
2727
28+ # Set the location of Workflow's Timeseries database
29+ #
30+ # Valid values are:
31+ # - on-cluster: Run PostgreSQL within the Kubernetes cluster (credentials are generated
32+ # automatically; backups are sent to object storage
33+ # configured above)
34+ # - off-cluster: Run PostgreSQL outside the Kubernetes cluster
35+ timeseriesLocation : " on-cluster"
36+
2837 # Set the location of Workflow's Redis instance
2938 #
3039 # Valid values are:
@@ -172,6 +181,31 @@ database:
172181 # # If the PV uses a different storage class, specify that here.
173182 storageClass : " "
174183
184+ timeseries :
185+ # The following parameters are configured only when using an on-cluster Database instance
186+ # The username and password to be used by the on-cluster database.
187+ # If left empty they will be generated
188+ # The user name should be set to lowercase letters
189+ superuser : " postgres"
190+ superuserPassword : " "
191+ replicator : " standby"
192+ replicatorPassword : " "
193+ user : " "
194+ password : " "
195+ persistence :
196+ enabled : false # Set to true to enable persistence
197+ size : 5Gi # PVC size
198+ # # database data Persistent Volume Storage Class
199+ # # If defined, storageClassName: <storageClass>
200+ # # If set to "-", storageClassName: "", which disables dynamic provisioning
201+ # # If undefined (the default) or set to null, no storageClassName spec is
202+ # # set, choosing the default provisioner. (gp2 on AWS, standard on
203+ # # GKE, AWS & OpenStack)
204+ # #
205+ # # Storage class of PV to bind. By default it looks for standard storage class.
206+ # # If the PV uses a different storage class, specify that here.
207+ storageClass : " "
208+
175209redis :
176210 # The addrs parameters are configured only when using an off-cluster Redis instance
177211 addrs : " " # A list of clusters: "127.0.0.1:7001/1,127.0.0.2:7002/1"
0 commit comments