-
Notifications
You must be signed in to change notification settings - Fork 4.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
[3.10] imagebuilder fails for certain COPY statements #20051
[3.10] imagebuilder fails for certain COPY statements #20051
Conversation
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: smarterclayton The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
/test gcp |
/retest |
glide.lock
Outdated
@@ -393,7 +393,7 @@ imports: | |||
subpackages: | |||
- log | |||
- name: github.com/emicklei/go-restful-swagger12 | |||
version: 5e28dc7157ebd9247a268c26dd1bee7818aa33f7 | |||
version: 76d80a40857969dddc1a4c21d1eb82f7ea20e9f5 |
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.
I don't know where this sha came from, but it's not in our repo: openshift/emicklei-go-restful-swagger12@76d80a4
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.
the old sha was correct
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.
I'll clear my glide cache. I just ran update.
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.
Yeah, that dropped it from glide.
glide.lock
Outdated
@@ -1073,7 +1073,7 @@ imports: | |||
- name: github.com/sirupsen/logrus | |||
version: 89742aefa4b206dcf400792f3bd35b542998eb3b | |||
- name: github.com/skynetservices/skydns | |||
version: 775ef406696380ce92b76e72421e86b6868905d8 | |||
version: d3e54b74891269f7d7aa1814af2ca080b294dd29 |
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.
same here - openshift/skynetservices-skydns@d3e54b7
@@ -244,6 +244,7 @@ func copyFromPod(f cmdutil.Factory, cmd *cobra.Command, cmderr io.Writer, src, d | |||
// stripPathShortcuts removes any leading or trailing "../" from a given path | |||
func stripPathShortcuts(p string) string { | |||
newPath := path.Clean(p) | |||
newPath = strings.TrimLeft(p, "../") |
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.
pretty sure this is reverting #20034, though I have questions about that pick
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.
That pick is in the origin-3.10-kubernetes-1.10.2 branch, but not picked into origin 3.10 vendor, so it either should be in this branch, or not in the origin-3.10-kubernetes-1.10.2 branch.
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.
Ah, it's picking the fix up from master.
/test gcp |
GCP jenkins job your cranky days are numbered |
4c7b2e9
to
24be11b
Compare
/retest |
1 similar comment
/retest |
/retest may be a real problem, but i don't know how |
/refresh |
Need to clear the job status... |
/test extended_builds |
/hold |
The image_ecosystem failure seems to be 3.10 branch associated - #20069 is failing too. |
Rebuilding it. |
24be11b
to
ddcf0c5
Compare
ddcf0c5
to
41cc5a1
Compare
@smarterclayton: 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. |
labelling |
/skip extended_image_ecosystem |
openshift-ansible can't build via imagebuilder due to
COPY dir /
copying to/dir/...
instead of/...
Ref: openshift/imagebuilder#79