Skip to content

Commit f3ad3df

Browse files
committed
feat(redis): Make queue optional
1 parent 74f5f8b commit f3ad3df

File tree

7 files changed

+15
-8
lines changed

7 files changed

+15
-8
lines changed

charts/drupal/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: drupal
22
apiVersion: v2
33
type: application
4-
version: 1.0.0-beta14
4+
version: 1.0.0-beta15
55
appVersion: 6.1.0
66
description: Helm Chart for deploying an enterprise-grade Drupal environment.
77
keywords:

charts/drupal/README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# drupal
22

3-
![Version: 1.0.0-beta12](https://img.shields.io/badge/Version-1.0.0--beta12-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 5.2.3](https://img.shields.io/badge/AppVersion-5.2.3-informational?style=flat-square)
3+
![Version: 1.0.0-beta15](https://img.shields.io/badge/Version-1.0.0--beta15-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 6.1.0](https://img.shields.io/badge/AppVersion-6.1.0-informational?style=flat-square)
44

5-
Drupal 10 variant of the Web Experience Toolkit (WxT).
5+
Helm Chart for deploying an enterprise-grade Drupal environment.
66

7-
**Homepage:** <http://www.drupal.org/project/wxt>
7+
**Homepage:** <http://www.drupal.org/project/drupal>
88

99
## Maintainers
1010

@@ -15,7 +15,7 @@ Drupal 10 variant of the Web Experience Toolkit (WxT).
1515

1616
## Source Code
1717

18-
* <https://github.com/drupalwxt/wxt>
18+
* <https://github.com/drupalwxt/helm-drupal>
1919

2020
## Requirements
2121

@@ -315,6 +315,7 @@ helm install --name drupal -f values-<override>.yaml
315315
| redis.master.disableCommands | list | `[]` | |
316316
| redis.master.persistence.enabled | bool | `false` | |
317317
| redis.master.service.type | string | `"ClusterIP"` | |
318+
| redis.queue.enabled | bool | `true` | |
318319
| redis.replica.disableCommands | list | `[]` | |
319320
| redis.replica.enabled | bool | `false` | |
320321
| redis.replica.persistence.enabled | bool | `false` | |
@@ -341,4 +342,4 @@ helm install --name drupal -f values-<override>.yaml
341342
<!-- Links Referenced -->
342343

343344
----------------------------------------------
344-
Autogenerated from chart metadata using [helm-docs v1.12.0](https://github.com/norwoodj/helm-docs/releases/v1.12.0)
345+
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)

charts/drupal/conf/settings.d10.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1022,8 +1022,10 @@
10221022
// Use for all bins otherwise specified.
10231023
$settings['cache']['default'] = 'cache.backend.redis';
10241024

1025+
{{- if .Values.redis.queue.enabled }}
10251026
// Use for all queues unless otherwise specified for a specific queue.
10261027
$settings['queue_default'] = 'queue.redis';
1028+
{{- end }}
10271029

10281030
// Or if you want to use reliable queue implementation.
10291031
// $settings['queue_default'] = 'queue.redis_reliable';

charts/drupal/conf/settings.d9.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -905,8 +905,10 @@
905905
// Use for all bins otherwise specified.
906906
$settings['cache']['default'] = 'cache.backend.redis';
907907

908+
{{- if .Values.redis.queue.enabled }}
908909
// Use for all queues unless otherwise specified for a specific queue.
909910
$settings['queue_default'] = 'queue.redis';
911+
{{- end }}
910912

911913
// Or if you want to use reliable queue implementation.
912914
// $settings['queue_default'] = 'queue.redis_reliable';

charts/drupal/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -816,6 +816,8 @@ proxysql:
816816
## ref: https://github.com/bitnami/charts/blob/master/bitnami/redis/README.md
817817
redis:
818818
enabled: false
819+
queue:
820+
enabled: true
819821
replica:
820822
enabled: false
821823
replicaCount: 0

charts/solr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ A Helm chart for a Solr instance using the official Solr Operator.
2525
| zookeeper.storage.size | string | `"5Gi"` | |
2626

2727
----------------------------------------------
28-
Autogenerated from chart metadata using [helm-docs v1.12.0](https://github.com/norwoodj/helm-docs/releases/v1.12.0)
28+
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)

charts/varnish/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,4 @@ A Helm chart for using Varnish.
3939
| varnishd.imagePullPolicy | string | `"IfNotPresent"` | |
4040

4141
----------------------------------------------
42-
Autogenerated from chart metadata using [helm-docs v1.12.0](https://github.com/norwoodj/helm-docs/releases/v1.12.0)
42+
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)

0 commit comments

Comments
 (0)