Tidy up the chart.
This commit is contained in:
parent
97baef366b
commit
c50770da0a
|
@ -262,7 +262,7 @@ services:
|
||||||
# Override values in couchDB subchart
|
# Override values in couchDB subchart
|
||||||
couchdb:
|
couchdb:
|
||||||
# -- the initial number of nodes in the CouchDB cluster.
|
# -- the initial number of nodes in the CouchDB cluster.
|
||||||
clusterSize: 3
|
clusterSize: 1
|
||||||
|
|
||||||
# -- If allowAdminParty is enabled the cluster will start up without any database
|
# -- If allowAdminParty is enabled the cluster will start up without any database
|
||||||
# administrator account; i.e., all users will be granted administrative
|
# administrator account; i.e., all users will be granted administrative
|
||||||
|
@ -329,7 +329,9 @@ couchdb:
|
||||||
tag: v3.2.1
|
tag: v3.2.1
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
|
|
||||||
# -- Flip this to flag to include the Search container in each Pod
|
# 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
|
||||||
|
# core part of the Budibase experience.
|
||||||
enableSearch: false
|
enableSearch: false
|
||||||
|
|
||||||
initImage:
|
initImage:
|
||||||
|
@ -448,7 +450,7 @@ couchdb:
|
||||||
# ref: http://docs.couchdb.org/en/latest/config/index.html
|
# ref: http://docs.couchdb.org/en/latest/config/index.html
|
||||||
couchdbConfig:
|
couchdbConfig:
|
||||||
couchdb:
|
couchdb:
|
||||||
uuid: decafbaddecafbaddecafbaddecafbad # Unique identifier for this CouchDB server instance
|
uuid: budibase-couchdb # Unique identifier for this CouchDB server instance
|
||||||
# cluster:
|
# cluster:
|
||||||
# q: 8 # Create 8 shards for each database
|
# q: 8 # Create 8 shards for each database
|
||||||
chttpd:
|
chttpd:
|
||||||
|
|
|
@ -19,8 +19,8 @@
|
||||||
-kernel inet_dist_listen_max 9100
|
-kernel inet_dist_listen_max 9100
|
||||||
|
|
||||||
# Tell kernel and SASL not to log anything
|
# Tell kernel and SASL not to log anything
|
||||||
# -kernel error_logger silent
|
-kernel error_logger silent
|
||||||
# -sasl sasl_error_logger false
|
-sasl sasl_error_logger false
|
||||||
|
|
||||||
# Use kernel poll functionality if supported by emulator
|
# Use kernel poll functionality if supported by emulator
|
||||||
+K true
|
+K true
|
||||||
|
|
|
@ -39,7 +39,7 @@ COPY packages/worker/pm2.config.js packages/worker/pm2.config.js
|
||||||
COPY packages/string-templates packages/string-templates
|
COPY packages/string-templates packages/string-templates
|
||||||
|
|
||||||
|
|
||||||
FROM samwho/test as runner
|
FROM budibase/couchdb as runner
|
||||||
ARG TARGETARCH
|
ARG TARGETARCH
|
||||||
ENV TARGETARCH $TARGETARCH
|
ENV TARGETARCH $TARGETARCH
|
||||||
ENV NODE_MAJOR 18
|
ENV NODE_MAJOR 18
|
||||||
|
|
Loading…
Reference in New Issue