File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -41,3 +41,9 @@ dependencies:
4141 - name : registry-proxy
4242 version : <registry-proxy-tag>
4343 repository : https://charts.drycc.cc/stable/registry-proxy
44+ - name : influxdb
45+ version : <influxdb-tag>
46+ repository : https://charts.drycc.cc/stable/influxdb
47+ - name : rabbitmq
48+ version : <rabbitmq-tag>
49+ repository : https://charts.drycc.cc/stable/rabbitmq
Original file line number Diff line number Diff line change @@ -28,7 +28,11 @@ global:
2828 # - on-cluster: Run Redis within the Kubernetes cluster
2929 # - off-cluster: Run Redis outside the Kubernetes cluster (configure in redis section)
3030 redis_location : " on-cluster"
31-
31+ # Set the location of Workflow's rabbitmq instance
32+ # Valid values are:
33+ # - on-cluster: Run Rabbitmq within the Kubernetes cluster
34+ # - off-cluster: Run Rabbitmq outside the Kubernetes cluster (configure in controller section)
35+ rabbitmq_location : " on-cluster"
3236 # Set the location of Workflow's influxdb cluster
3337 #
3438 # Valid values are:
@@ -269,3 +273,21 @@ registry:
269273 organization : " "
270274 username : " "
271275 password : " "
276+
277+ rabbitmq :
278+ username : " rabbit"
279+ password : " rabbit"
280+ vhost : " drycc"
281+ persistence :
282+ enabled : false # Set to true to enable persistence
283+ # # rabbitmq data Persistent Volume Storage Class
284+ # # If defined, storageClassName: <storageClass>
285+ # # If set to "-", storageClassName: "", which disables dynamic provisioning
286+ # # If undefined (the default) or set to null, no storageClassName spec is
287+ # # set, choosing the default provisioner. (gp2 on AWS, standard on
288+ # # GKE, AWS & OpenStack)
289+ # #
290+ storageClass : default
291+ volumeName : " "
292+ accessMode : ReadWriteOnce
293+ size : 8Gi # PVC size
You can’t perform that action at this time.
0 commit comments