-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Update all dependencies, conforming to the new controller-runtime API #3949
base: master
Are you sure you want to change the base?
Conversation
1121507
to
6031787
Compare
02cff10
to
553ac61
Compare
} | ||
|
||
func (w *WorkVolumeClaimTemplate) validate() error { | ||
if w.AccessModes == nil || len(w.AccessModes) == 0 { | ||
return errors.New("Access mode should have at least one mode specified") | ||
if len(w.AccessModes) == 0 { |
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.
What's our level of confidence with these changes?
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.
e2e tests are passing so I guess it should be fine 😄
just to be sure, @nikola-jokic once this is done and release gha-runner-scale-set-0.11.0 is out, we will be able to use custom labels with the helm chart? |
This PR includes following changes:
Fixes #3943