microsoft / mindaro

Bridge to Kubernetes - for Visual Studio and Visual Studio Code
MIT License
307 stars 106 forks source link

Add support for Mac M1 Arm64 #325

Open pkoelbl opened 2 years ago

pkoelbl commented 2 years ago

Currently using Bridge to Kubernetes to connect to Docker Desktop does not work on an M1 Mac because the dependencies that are downloaded are compiled in amd64 mode and the docker image used for redirection is also amd64 only.

The dependencies should be updated to .net 6 and have builds available in both amd64 and arm64 and the image for redirection should be a multi-architecture(amd64/arm64) image.

Describe alternatives you've considered If I had the source for the dependencies available. I could just build and create the image. Trying to reverse engineer the dependencies using dotPeek is ineffective due to the nature of some of the code.