Feature request: append builder
See original GitHub issueThere are certain scenarios where QEMU performance is simply terrible.
A much performant approach is to use multiple native buildx ~builders~ nodes.
We can already do it using a bash script :
- name: Set up Docker Buildx
id: builder
uses: docker/setup-buildx-action@v1
- name: Append kubernetes buildx builder
shell: bash
run: |
docker buildx create --append --name ${{ steps.builder.outputs.name }} \
--driver kubernetes \
--platform linux/arm64 \
--driver-opt nodeselector=kubernetes.io/arch=arm64
Would it be possible to introduce an append
boolean parameter? Eventually it could be an append_to
accepting a step id (or the builder instance name from the output)
Issue Analytics
- State:
- Created 2 years ago
- Reactions:5
- Comments:5 (2 by maintainers)
Top Results From Across the Web
Append (Feature Service)—ArcGIS REST APIs
The append operation will return an error when a client tries to append nonmultipatch geometry data into a feature service that stores multipatch...
Read more >Feature Requests - GitHub
Bug Reports & Feature Requests for Oxygen. Contribute to soflyy/oxygen-bugs-and-features development by creating an account on GitHub.
Read more >Latest Feature Requests topics - Builder.io Forum
Topic Replies Views Activity
About the Feature Requests category 0 332 March 30, 2020
Typescript support for custom component inputs 1 38 November 3, 2022
Allow...
Read more >Announcing the Divi Engine Feature Requests portal
Announcing the Divi Engine Feature Request Portal! Your spot to submit new plugin feature requests or even entirely new plugins.
Read more >How to handle Internal Feature Requests. | by Guerrilla Product
Feature requests are often just that, a suggested feature, which sometimes has some reasoning behind it, but often comes as a naked “add...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I created an action out of it for our particular use-case (should also work for the kubernetes case). It also loads an SSH key before if we need that.
https://github.com/marketplace/actions/append-buildx-nodes
@febus982 Sgtm. I think instead of a boolean parameter for
append
, it should be the name of the builder we want to append to. We should also have aplatform
input if we want to restrict a specific node.