Browse Source
allow specifying resources on couchdb-backup deployment
pull/7496/head
Thomas Weiß
4 years ago
No known key found for this signature in database
GPG Key ID: F711E902271C8BA
2 changed files with
5 additions and
1 deletions
-
charts/budibase/templates/couchdb-backup.yaml
-
charts/budibase/values.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 }} |
|
|
|
|
|
|
|
@ -151,6 +151,7 @@ services: |
|
|
|
target: "" |
|
|
|
# backup interval in seconds |
|
|
|
interval: "" |
|
|
|
resources: {} |
|
|
|
|
|
|
|
redis: |
|
|
|
enabled: true # disable if using external redis |
|
|
|
|