Skip to content

Commit 92a5ddc

Browse files
authored
Merge pull request #10 from jianxiaoguo/main
chore(chart): add rabbitmq
2 parents a3b74c3 + 610f5f2 commit 92a5ddc

2 files changed

Lines changed: 29 additions & 1 deletion

File tree

charts/workflow/requirements.yaml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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

charts/workflow/values.yaml

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)