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

add multiarch docker build #21

Closed
lwolf opened this issue Jan 8, 2019 · 6 comments
Closed

add multiarch docker build #21

lwolf opened this issue Jan 8, 2019 · 6 comments

Comments

@lwolf
Copy link
Owner

lwolf commented Jan 8, 2019

Add support for multiarch docker manifests

@Rick-Jongbloed
Copy link

Just fyi, i've got an ARM build build by drone here: https://github.com/Rick-Jongbloed/kube-cleanup-operator-arm. It might help you to get ARM support build in 🥇

@lwolf
Copy link
Owner Author

lwolf commented Aug 12, 2019

@Rick-Jongbloed that's cool, thank you

@zentavr
Copy link

zentavr commented May 24, 2023

Hello @lwolf. Kindly asking when that build might be available?

@matthewwalk
Copy link

Just want to follow up with a similar solution to @Rick-Jongbloed's. This one is a CircleCI job using the aws-ecr orb.

  build-push-cleanup-operator:
    machine:
      image: ubuntu-2204:2024.01.1
      docker_layer_caching: true
    resource_class: arm.medium
    steps:
      - run:
          name: Download and modify kube-cleanup-operator
          command: |
            sudo apt-get update && \
            sudo apt-get install -y git make unzip
            git clone https://github.com/lwolf/kube-cleanup-operator .
            sed -i 's;GOARCH=amd64;GOARM=7 GOARCH=arm;g' Makefile
            sed -i 's;FROM alpine;FROM arm64v8/alpine;g' Dockerfile
      - aws-ecr/build-and-push-image:
          checkout: false
          repo: kube-cleanup-operator
          registry-id: AWS_ACCOUNT_ID
          create-repo: true
          tag: 'kube-cleanup-operator'
          platform: 'linux/arm64'

@lwolf
Copy link
Owner Author

lwolf commented Feb 17, 2024

Thanks for the example.
If anyone is open to making a PR with GitHub actions build pipeline - feel free to submit a PR

@awilmore
Copy link
Contributor

Thanks for the example. If anyone is open to making a PR with GitHub actions build pipeline - feel free to submit a PR

@lwolf hopefully this will do the job: #95

@lwolf lwolf closed this as completed May 29, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

5 participants