1
0
Fork 0
mirror of synced 2024-07-01 12:30:41 +12:00

allow specifying resources on couchdb-backup deployment

This commit is contained in:
Thomas Weiß 2022-08-29 13:52:45 +02:00
parent 3295c14679
commit cfd757d712
No known key found for this signature in database
GPG key ID: 0F711E902271C8BA
2 changed files with 5 additions and 1 deletions

View file

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

View file

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