-
Notifications
You must be signed in to change notification settings - Fork 385
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
[WIP] Test PR jobs with release-tools/prow.sh snapshotter rbac fix #299
[WIP] Test PR jobs with release-tools/prow.sh snapshotter rbac fix #299
Conversation
@ggriffiths: Adding the "do-not-merge/release-note-label-needed" label because no release-note block was detected, please follow our release note process to remove it. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: ggriffiths The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
release-tools/prow.sh
Outdated
@@ -1064,15 +1064,21 @@ main () { | |||
docker tag "$i:latest" "$i:csiprow" || die "tagging the locally built container image for $i failed" | |||
done | |||
|
|||
if [ -e deploy/kubernetes/rbac.yaml ]; then | |||
if [ -e "$(pwd)/deploy/kubernetes/rbac.yaml" ] || [ -e "$(pwd)/deploy/kubernetes/csi-snapshotter/rbac-csi-snapshotter.yaml" ]; then |
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.
this check: if [ -e deploy/kubernetes/rbac.yaml ];
does not work without $(pwd), so this code path wasn't being executed. Also, we needed to adjust for the snapshot-controller by removing it from cmds
57b3b9c
to
9fcefce
Compare
/retest |
1 similar comment
/retest |
9c01863
to
b47d481
Compare
b47d481
to
1eb6fee
Compare
Signed-off-by: Grant Griffiths <grant@portworx.com>
5e243a9
to
74b554b
Compare
@ggriffiths: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
Signed-off-by: Grant Griffiths grant@portworx.com
What type of PR is this?
What this PR does / why we need it:
Which issue(s) this PR fixes:
Fixes #
Special notes for your reviewer:
Does this PR introduce a user-facing change?: