Skip to content

Commit

Permalink
feat: Adds resources and limits for repository maintenance job (#602)
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian-RG <fullmetalliferous@gmail.com>
  • Loading branch information
Sebastian-RG committed Jul 19, 2024
1 parent fb5a08a commit 42fed36
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/velero/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ appVersion: 1.14.0
kubeVersion: ">=1.16.0-0"
description: A Helm chart for velero
name: velero
version: 7.1.1
version: 7.1.2
home: https://github.com/vmware-tanzu/velero
icon: https://cdn-images-1.medium.com/max/1600/1*-9mb3AKnKdcL_QD3CMnthQ.png
sources:
Expand Down
18 changes: 18 additions & 0 deletions charts/velero/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,24 @@ spec:
{{- with .namespace }}
- --namespace={{ . }}
{{- end }}
{{- with .repositoryMaintenanceJob }}
{{- with .requests }}
{{- with .cpu }}
- --maintenance-job-cpu-request={{ .cpu }}
{{- end }}
{{- with .memory }}
- --maintenance-job-mem-request={{ .memory }}
{{- end }}
{{- end }}
{{- with .limits }}
{{- with .cpu }}
- --maintenance-job-cpu-limit={{ . }}
{{- end }}
{{- with .memory }}
- --maintenance-job-mem-limit={{ . }}
{{- end }}
{{- end }}
{{- end }}
{{- with .extraArgs }}
### User-supplied overwrite flags
{{- toYaml . | nindent 12 }}
Expand Down
9 changes: 9 additions & 0 deletions charts/velero/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -440,6 +440,15 @@ configuration:
# Comma separated list of velero feature flags. default: empty
# features: EnableCSI
features:
# Resource requests/limits to specify for the repository-maintenance job. Optional.
# https://velero.io/docs/v1.14/repository-maintenance/#resource-limitation
repositoryMaintenanceJob:
requests:
# cpu: 500m
# memory: 512Mi
limits:
# cpu: 1000m
# memory: 1024Mi
# `velero server` default: velero
namespace:
# additional command-line arguments that will be passed to the `velero server`
Expand Down

0 comments on commit 42fed36

Please sign in to comment.