-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Associate VolumeSnapshots with SnapshotSchedules via OwnerReferences #697
Changes from 2 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,6 +53,9 @@ spec: | |
- --health-probe-bind-address=:8081 | ||
- --metrics-bind-address=127.0.0.1:8080 | ||
- --leader-elect | ||
{{- if .Values.enableOwnerReferences }} | ||
- --enable-owner-references | ||
{{- end }} | ||
Comment on lines
+56
to
+58
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I’ve currently set this up to pass values via command arguments, but I’m thinking of refactoring this to use a ConfigMap instead. I’d appreciate your feedback on whether this change would align better with best practices or if the current implementation is sufficient. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I'd prefer to keep it as-is. Since we don't have a CM currently, I'd rather not add one. |
||
command: | ||
- /manager | ||
image: {{ include "snapscheduler.image" . }} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like a line-length issue from the lint/pre-commit job: