@@ -31,6 +31,19 @@ global:
3131 # - off-cluster: Run Redis outside the Kubernetes cluster (configure in loggerRedis section)
3232 logger_redis_location : " on-cluster"
3333
34+ # Set the location of Workflow's influxdb cluster
35+ #
36+ # Valid values are:
37+ # - on-cluster: Run Influxdb within the Kubernetes cluster
38+ # - off-cluster: Influxdb is running outside of the cluster and credentials and connection information will be provided.
39+ influxdb_location : " on-cluster"
40+ # Set the location of Workflow's grafana instance
41+ #
42+ # Valid values are:
43+ # - on-cluster: Run Grafana within the Kubernetes cluster
44+ # - off-cluster: Grafana is running outside of the cluster
45+ grafana_location : " on-cluster"
46+
3447 # Set the location of Workflow's Registry
3548 #
3649 # Valid values are:
@@ -94,6 +107,11 @@ swift:
94107# - IfNotPresent
95108controller :
96109 app_pull_policy : " IfNotPresent"
110+ # Possible values are:
111+ # enabled - allows for open registration
112+ # disabled - turns off open registration
113+ # admin_only - allows for registration by an admin only.
114+ registration_mode : " enabled"
97115
98116database :
99117 # Configure the following ONLY if using an off-cluster PostgreSQL database
@@ -116,6 +134,12 @@ monitor:
116134 grafana :
117135 user : " admin"
118136 password : " admin"
137+ # Configure the following ONLY if using an off-cluster Influx database
138+ influxdb :
139+ url : " my.influx.url"
140+ database : " kubernetes"
141+ user : " user"
142+ password : " password"
119143
120144registry-token-refresher :
121145 # Time in minutes after which the token should be refreshed.
0 commit comments