-
Notifications
You must be signed in to change notification settings - Fork 491
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
feat: enhance kubernetes driver #370
Merged
tonistiigi
merged 1 commit into
docker:master
from
morlay:kubernetes-driver-enhancement
Aug 31, 2020
Merged
feat: enhance kubernetes driver #370
tonistiigi
merged 1 commit into
docker:master
from
morlay:kubernetes-driver-enhancement
Aug 31, 2020
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
morlay
commented
Aug 28, 2020
AkihiroSuda
reviewed
Aug 28, 2020
AkihiroSuda
reviewed
Aug 28, 2020
AkihiroSuda
reviewed
Aug 28, 2020
Should be signed with full real name |
@AkihiroSuda |
AkihiroSuda
approved these changes
Aug 28, 2020
needs rebase |
Hi @tonistiigi, is there any way to re trigger the test? |
Signed-off-by: Wang Jinglei <[email protected]>
tiborvass
pushed a commit
to tiborvass/buildx
that referenced
this pull request
Dec 15, 2020
Addresses docker/setup-buildx-action#45 Simple repro: ``` $ buildx create --platform linux/amd64 --use $ buildx build - <<EOF from scratch EOF ``` Since docker#370 a `platform` driver-opt was automatically inserted with the value specified by `--platform` flag on regardless of the type of driver, even though it was only used in the kubernetes driver. However, because the docker-container driver is pedantic about the options being passed, it errored out. Another side-effect I suspect is that with the kubernetes driver it was now possible to specify the platforms in two different ways: `--driver-opt platform=...` and `--platform`. This patch reverts completely the `platform` driver-opt and instead ensures the platforms information is passed onto the kubernetes driver via variables. Signed-off-by: Tibor Vass <[email protected]>
estefania5017m
added a commit
to estefania5017m/buildx
that referenced
this pull request
Aug 7, 2024
Addresses docker/setup-buildx-action#45 Simple repro: ``` $ buildx create --platform linux/amd64 --use $ buildx build - <<EOF from scratch EOF ``` Since docker/buildx#370 a `platform` driver-opt was automatically inserted with the value specified by `--platform` flag on regardless of the type of driver, even though it was only used in the kubernetes driver. However, because the docker-container driver is pedantic about the options being passed, it errored out. Another side-effect I suspect is that with the kubernetes driver it was now possible to specify the platforms in two different ways: `--driver-opt platform=...` and `--platform`. This patch reverts completely the `platform` driver-opt and instead ensures the platforms information is passed onto the kubernetes driver via variables. Signed-off-by: Tibor Vass <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
fix #342
now we could use kubernetes driver with
--append
without
binfmt
without
--append
, kubernetes driver works as previous behavior