Browse Source

allow specifying resources on couchdb-backup deployment

pull/7496/head
Thomas Weiß 4 years ago
parent
commit
cfd757d712
No known key found for this signature in database GPG Key ID: F711E902271C8BA
  1. 5
      charts/budibase/templates/couchdb-backup.yaml
  2. 1
      charts/budibase/values.yaml

5
charts/budibase/templates/couchdb-backup.yaml

@ -38,7 +38,10 @@ spec:
image: redgeoff/replicate-couchdb-cluster
imagePullPolicy: Always
name: couchdb-backup
resources: {}
{{ with .Values.services.couchdb.backup.resources }}
resources:
{{- toYaml . | nindent 10 }}
{{ end }}
{{- with .Values.affinity }}
affinity:
{{- toYaml . | nindent 8 }}

1
charts/budibase/values.yaml

@ -151,6 +151,7 @@ services:
target: ""
# backup interval in seconds
interval: ""
resources: {}
redis:
enabled: true # disable if using external redis

Loading…
Cancel
Save