Get SQS working in the Helm chart.
This commit is contained in:
parent
595e518df0
commit
2ab6f5aaf7
|
@ -1,6 +1,6 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: couchdb
|
- name: couchdb
|
||||||
repository: https://apache.github.io/couchdb-helm
|
repository: https://apache.github.io/couchdb-helm
|
||||||
version: 4.5.5
|
version: 4.5.6
|
||||||
digest: sha256:bbbf022c77105c43b735539de05fe69e4c9de51581a0e245b3553030d5e44fa9
|
digest: sha256:405f098633e632d6f4e140175f156ed4f02918b0d89193f1b66c9cbea211d6c9
|
||||||
generated: "2024-06-04T10:42:00.640809+01:00"
|
generated: "2024-06-05T14:41:05.979052+01:00"
|
||||||
|
|
|
@ -17,6 +17,6 @@ version: 0.0.0
|
||||||
appVersion: 0.0.0
|
appVersion: 0.0.0
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: couchdb
|
- name: couchdb
|
||||||
version: 4.5.5
|
version: 4.5.6
|
||||||
repository: https://apache.github.io/couchdb-helm
|
repository: https://apache.github.io/couchdb-helm
|
||||||
condition: services.couchdb.enabled
|
condition: services.couchdb.enabled
|
||||||
|
|
Binary file not shown.
Binary file not shown.
|
@ -645,6 +645,21 @@ couchdb:
|
||||||
# @ignore
|
# @ignore
|
||||||
pullPolicy: Always
|
pullPolicy: Always
|
||||||
|
|
||||||
|
extraPorts:
|
||||||
|
# -- Extra ports to expose on the CouchDB service. We expose the SQS port
|
||||||
|
# by default, but you can add more ports here if you need to.
|
||||||
|
- name: sqs
|
||||||
|
containerPort: 4984
|
||||||
|
|
||||||
|
service:
|
||||||
|
extraPorts:
|
||||||
|
# -- Extra ports to expose on the CouchDB service. We expose the SQS port
|
||||||
|
# by default, but you can add more ports here if you need to.
|
||||||
|
- name: sqs
|
||||||
|
port: 4984
|
||||||
|
targetPort: 4984
|
||||||
|
protocol: TCP
|
||||||
|
|
||||||
# @ignore
|
# @ignore
|
||||||
# This should remain false. We ship Clouseau ourselves as part of the
|
# This should remain false. We ship Clouseau ourselves as part of the
|
||||||
# budibase/couchdb image, and it's not possible to disable it because it's a
|
# budibase/couchdb image, and it's not possible to disable it because it's a
|
||||||
|
|
Loading…
Reference in New Issue