Is Multi-architecture kubernetes possible in colima? #1501
Unanswered
artur-jablonski
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I start
colimalike this:colima start --cpu 4 --memory 16 --arch aarch64 --vm-type=vz --vz-rosetta --network-address --kubernetesNow I can run both
linux/arm64andlinux/amd64architecture docker containers:I am trying to achieve the same with the kubernetes cluster provisioned inside colima by using the
--kubernetesswitch.However it seems that the architecture of the k8s cluster is set to be
linux/arm64And now pods that reference images that have `arm64 builds work, but the ones that only have amd64 fail during image pull:
What options do I have to run a mix of
amd64andarm64pods in the cluster provisioned in colima?is there anything like docker's
--platformin k8s to force particular platform for a pod?can the same k8s node handle multiple architectures?
if not is it possible to provision the kubernetes cluster with two nodes each handling different achitecture and then let the control plane to handle scheduling on appropriate node? How would I go about that.
Beta Was this translation helpful? Give feedback.
All reactions