mittwald/kube-httpcache

ARM support

tschirmer opened this issue ยท 3 comments

Is your feature request related to a problem? Please describe.
ARM support for AWS gravtion2 processors

Describe the solution you'd like
should be able to be achieved within the build pipeline with the following:

docker buildx install
docker buildx create --use
docker buildx build --platform linux/amd64,linux/arm64 . -t quay.io/mittwald/kube-httpcache:v0.5.0 --push

Describe alternatives you've considered
Running different nodes and running kube-httpcache on a separate node group, this isn't ideal.

That's a good suggestion! ๐Ÿ‘ Currently, we're using Goreleaser to build the Docker images for this project and I'll have to read up on how multi-arch images work there (or if we'd have to migrate the build process to buildx).

@tschirmer I've just built quay.io/mittwald/kube-httpcache:v0.6.0-alpha1 from the top of the #102 branch, but don't have an ARM machine at hand to test it. Mind giving it a go? ๐Ÿ™‚

Yup that's working as expected.