-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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
sig-storage: initial config for kubernetes-csi/csi-lib-utils #10309
Changes from all 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
approvers: | ||
- msau42 | ||
- saad-ali | ||
reviewers: | ||
- pohly |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
presubmits: | ||
github.com/kubernetes-csi/csi-lib-utils: | ||
- name: pull-sig-storage-csi-lib-utils | ||
always_run: true | ||
decorate: true | ||
skip_report: false | ||
spec: | ||
containers: | ||
# This image was chosen over the more often used kubekins-e2e because | ||
# it is smaller and has everything we need (basically just a Go environment). | ||
- image: gcr.io/k8s-testimages/gcloud-in-go:v20180927-6b4facbe6 | ||
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. if you just need go, you can also choose to use something like golang:1.11.2 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 was trying to use something that might have been pulled already, i.e. something which is also used by other jobs. Not sure whether that makes sense? But I agree, now that all of the special logic is handled by the pod-utils, a generic image should work just as well. Either way, I'd like to get this merged and perhaps it can be tweaked further later on. We have quite a few repos under kubernetes-csi that might benefit from closer integration with Prow, so I expect that we'll come back to this. 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. You might want to control go versions explicitly - feel free to come back and tune this if you are hitting issues. |
||
command: | ||
- make | ||
args: | ||
- -k # report as many failures as possible (if any) before finally failing | ||
- all # build... | ||
- test # ... and test |
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.
ooooops, drop github.com here 😂 (prow key jobs off org/repo pattern)
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.
Thanks for debugging it. Fix is in #10340.