-
Notifications
You must be signed in to change notification settings - Fork 179
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
Downgrade ddp-builder container version #529
Downgrade ddp-builder container version #529
Conversation
Upgrading to golang:1.21-alpine3.19 caused the ddp build to fail. Downgrade it until the root cause is found Signed-off-by: amaslennikov <amaslennikov@nvidia.com>
Pull Request Test Coverage Report for Build 7799246143
💛 - Coveralls |
@@ -10,7 +10,7 @@ WORKDIR /usr/src/sriov-network-device-plugin | |||
RUN make clean && \ | |||
make build | |||
|
|||
FROM golang:1.21-alpine3.19 as ddp-builder | |||
FROM golang:1.20-alpine3.16 as ddp-builder |
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 think a better idea will be to have a different container for the ddp tool we want the go code to be on 1.21
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 propose to address this in a separate PR, so that we unblock the image build first
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 go code is built with golang 1.21, ddp uses a different layer
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.
@SchSeba can you please open an issue on this ?
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.
oh it was already done sorry I miss it...
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.
LGTM
@Eoghan1232 PTAL, currently build&push image GA workflow is failing, this should fix it. |
Upgrading to golang:1.21-alpine3.19 caused the ddp build to fail: https://github.com/k8snetworkplumbingwg/sriov-network-device-plugin/actions/runs/7738698140
Let's downgrade it until the root cause is found