Does Kubernetes not work on Intel?

11/2/2016

I've been trying to set up a a local Kubernetes installation on an Ubuntu 16.04 VM by following the setup instructions posted here: http://kubernetes.io/docs/getting-started-guides/kubeadm/

However in section (3/4) when installing a pod network, the following line appears: If you are on another architecture than amd64, you should use the flannel overlay network as described in the multi-platform section.

When you scroll down to the multi-platform section the only other architectures it offers are ARM-based: kubeadm deb packages and binaries are built for amd64, arm and arm64, following the multi-platform proposal.

Does this mean I can't get Kubernetes to work on an Intel-based machine?

--
kubectl
kubernetes

1 Answer

11/3/2016

amd64 is one of the ways people describe x86-64 processor instruction sets. Usually for linux distributions people tend to call their images amd64 because it came along first. Those images work fine on any modern Intel chip.

See also:

-- Jorge Castro
Source: StackOverflow