question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Feature request: append builder

See original GitHub issue

There 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:closed
  • Created 2 years ago
  • Reactions:5
  • Comments:5 (2 by maintainers)

github_iconTop GitHub Comments

2reactions
baschnycommented, Jan 19, 2022

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

2reactions
crazy-maxcommented, Nov 29, 2021

@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 a platform input if we want to restrict a specific node.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found