Nginx Ingress Controller Docker image for ARM32 (Raspberry Pi)

11/4/2017

Is there a Nginx Ingress Controller Docker image available for ARM32, which will run on a Raspberry PI 3?

I have tried this:

$ docker run gcr.io/google_containers/nginx-ingress-controller:0.8.3
standard_init_linux.go:195: exec user process caused "exec format error"

Is there some documentation / list of images with more details on which tags available for the images on gcr.io/google_containers?

-- OlavT
kubernetes
nginx

1 Answer

11/4/2017

Support for arm64 was introduced with 0.9.0-beta.12. I don't believe there's an arm32 compatible release.

As for how to know which images or tags are available on gcr you can either run these:

gcloud container images list-tags [HOSTNAME]/[PROJECT-ID]/[IMAGE]
gcloud container images list --repository=[HOSTNAME]/[PROJECT-ID]

Or just hit http://[HOSTNAME]/[PROJECT-ID]/[IMAGE] with your browser, where for the nginx-controller it would be http://gcr.io/google_containers/nginx-ingress-controller

-- vascop
Source: StackOverflow