Skip to content
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

Build ARM image #267

Closed
tropnikovvl opened this issue Jul 1, 2024 · 3 comments
Closed

Build ARM image #267

tropnikovvl opened this issue Jul 1, 2024 · 3 comments
Labels

Comments

@tropnikovvl
Copy link
Contributor

tropnikovvl commented Jul 1, 2024

What should the feature do:
Hello!
The ARM platform is increasingly gaining popularity and it would be great to be able to build a pvc-autoresizer image for an ARM.

What is use case behind this feature:
Launch on ARM instances

By default for convenient multi-architectural builds, buildx are used. Link to a good guide.

But if this method is not convenient for you, then I think you can change the method of build in the release pipeline, for example:
from

- run: make image

to

- name: install buildx
  id: buildx
  uses: crazy-max/ghaction-docker-buildx@v1
  with:
    version: latest
- name: build the image
  run: |
    docker buildx build \
    --tag your-username/multiarch-example:latest \
    --platform linux/amd64,linux/arm/v7,linux/arm64 .
@ushitora-anqou
Copy link
Contributor

Hi there! Thanks for your proposal. Could you submit a PR for this? TopoLVM already builds Arm images in its CI, so we can use the same approach. Here are some links for reference:

Copy link
Contributor

github-actions bot commented Aug 1, 2024

This issue has been automatically marked as stale because it has not had any activity for 30 days. It will be closed in a week if no further activity occurs. Thank you for your contributions.

@github-actions github-actions bot added the stale label Aug 1, 2024
Copy link
Contributor

github-actions bot commented Aug 8, 2024

This issue has been automatically closed due to inactivity. Please feel free to reopen this issue (or open a new one) if this still requires investigation. Thank you for your contribution.

@github-actions github-actions bot closed this as not planned Won't fix, can't repro, duplicate, stale Aug 8, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
Archived in project
Development

No branches or pull requests

2 participants