Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Added

- Chart now allows to set `priorityClassName` for the operator pod

### Changed

- The Rsync-ssh mover now requires privileged mode to run. Previously for backwards
Expand Down
2 changes: 2 additions & 0 deletions helm/volsync/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -155,3 +155,5 @@ on the command line or via a custom `values.yaml` file.
- Allows applying tolerations to the operator pod
- `affinity`: none
- Allows setting the operator pod's affinity
- `priorityClassName`: none
- Sets the priorityClassName on the operator pod
3 changes: 3 additions & 0 deletions helm/volsync/templates/deployment-controller.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,9 @@ spec:
affinity:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.priorityClassName }}
priorityClassName: {{ . | quote }}
{{- end }}
terminationGracePeriodSeconds: 10
{{- with .Values.tolerations }}
tolerations:
Expand Down
2 changes: 2 additions & 0 deletions helm/volsync/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,3 +85,5 @@ nodeSelector: {}
tolerations: []

affinity: {}

priorityClassName: ""
Loading