reducing couchDB k8s to one node, reverting values to default
This commit is contained in:
parent
d521bffc61
commit
9076f79ad4
|
@ -14,7 +14,7 @@ type: application
|
||||||
# populates on packaging
|
# populates on packaging
|
||||||
version: 0.0.0
|
version: 0.0.0
|
||||||
# populates on packaging
|
# populates on packaging
|
||||||
appVersion: v2.8.10
|
appVersion: 0.0.0
|
||||||
dependencies:
|
dependencies:
|
||||||
- name: couchdb
|
- name: couchdb
|
||||||
version: 3.3.4
|
version: 3.3.4
|
||||||
|
|
|
@ -76,8 +76,8 @@ affinity: {}
|
||||||
globals:
|
globals:
|
||||||
appVersion: "" # Use as an override to .Chart.AppVersion
|
appVersion: "" # Use as an override to .Chart.AppVersion
|
||||||
budibaseEnv: PRODUCTION
|
budibaseEnv: PRODUCTION
|
||||||
tenantFeatureFlags: "*:LICENSING,*:USER_GROUPS"
|
tenantFeatureFlags: "*:LICENSING,*:USER_GROUPS,*:ONBOARDING_TOUR"
|
||||||
enableAnalytics: "0"
|
enableAnalytics: "1"
|
||||||
sentryDSN: ""
|
sentryDSN: ""
|
||||||
posthogToken: "phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU"
|
posthogToken: "phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU"
|
||||||
selfHosted: "1" # set to 0 for budibase cloud environment, set to 1 for self-hosted setup
|
selfHosted: "1" # set to 0 for budibase cloud environment, set to 1 for self-hosted setup
|
||||||
|
@ -95,9 +95,9 @@ globals:
|
||||||
createSecrets: true # creates an internal API key, JWT secrets and redis password for you
|
createSecrets: true # creates an internal API key, JWT secrets and redis password for you
|
||||||
|
|
||||||
# if createSecrets is set to false, you can hard-code your secrets here
|
# if createSecrets is set to false, you can hard-code your secrets here
|
||||||
apiEncryptionKey: "test"
|
apiEncryptionKey: ""
|
||||||
internalApiKey: "test"
|
internalApiKey: ""
|
||||||
jwtSecret: "test"
|
jwtSecret: ""
|
||||||
cdnUrl: ""
|
cdnUrl: ""
|
||||||
# fallback values used during live rotation
|
# fallback values used during live rotation
|
||||||
internalApiKeyFallback: ""
|
internalApiKeyFallback: ""
|
||||||
|
@ -215,8 +215,8 @@ couchdb:
|
||||||
# Secret Management
|
# Secret Management
|
||||||
createAdminSecret: true
|
createAdminSecret: true
|
||||||
|
|
||||||
adminUsername: budibase
|
# adminUsername: budibase
|
||||||
adminPassword: budibase
|
# adminPassword: budibase
|
||||||
# adminHash: -pbkdf2-this_is_not_necessarily_secure_either
|
# adminHash: -pbkdf2-this_is_not_necessarily_secure_either
|
||||||
# cookieAuthSecret: admin
|
# cookieAuthSecret: admin
|
||||||
|
|
||||||
|
@ -239,11 +239,11 @@ couchdb:
|
||||||
## provisioning of Persistent Volumes; leaving it unset will invoke the default
|
## provisioning of Persistent Volumes; leaving it unset will invoke the default
|
||||||
## provisioner.
|
## provisioner.
|
||||||
persistentVolume:
|
persistentVolume:
|
||||||
enabled: true
|
enabled: false
|
||||||
accessModes:
|
accessModes:
|
||||||
- ReadWriteOnce
|
- ReadWriteOnce
|
||||||
size: 10Gi
|
size: 10Gi
|
||||||
storageClass: "local-path"
|
storageClass: ""
|
||||||
|
|
||||||
## The CouchDB image
|
## The CouchDB image
|
||||||
image:
|
image:
|
||||||
|
|
Loading…
Reference in New Issue