Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Failed to start on Raspberry Pi OS arm(v7) #12072

Closed
kristianpaul opened this issue Jul 29, 2021 · 8 comments
Closed

Failed to start on Raspberry Pi OS arm(v7) #12072

kristianpaul opened this issue Jul 29, 2021 · 8 comments
Labels
co/kic-base kind/feature Categorizes issue or PR as related to a new feature. lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. priority/important-longterm Important over the long term, but may not be staffed and/or may need multiple releases to complete.

Comments

@kristianpaul
Copy link

Steps to reproduce the issue:

  1. curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-arm
  2. sudo install minikube-linux-arm /usr/local/bin/minikube
  3. minikube start
minikube  start
😄  minikube v1.22.0 on Raspbian 10.10 (arm)
✨  Using the docker driver based on existing profile
👍  Starting control plane node minikube in cluster minikube
🚜  Pulling base image ...
E0729 03:55:06.239878    2022 cache.go:200] Error downloading kic artifacts:  failed to download kic base image or any fallback image
🤷  docker "minikube" container is missing, will recreate.
🔥  Creating docker container (CPUs=2, Memory=2200MB) ...
🤦  StartHost failed, but will try again: recreate: creating host: create: creating: setting up container node: preparing volume for minikube container: docker run --rm --name minikube-preload-sidecar --label created_by.minikube.sigs.k8s.io=true --label name.minikube.sigs.k8s.io=minikube --entrypoint /usr/bin/test -v minikube:/var gcr.io/k8s-minikube/kicbase:v0.0.25@sha256:6f936e3443b95cd918d77623bf7b595653bb382766e280290a02b4a349e88b79 -d /var/lib: exit status 125
stdout:

stderr:
Unable to find image 'gcr.io/k8s-minikube/kicbase:v0.0.25@sha256:6f936e3443b95cd918d77623bf7b595653bb382766e280290a02b4a349e88b79' locally
sha256:6f936e3443b95cd918d77623bf7b595653bb382766e280290a02b4a349e88b79: Pulling from k8s-minikube/kicbase
docker: no matching manifest for unknown in the manifest list entries.
See 'docker run --help'.

pi@rpi1:~ $ minikube start 😄 minikube v1.22.0 on Raspbian 10.10 (arm) ✨ Using the docker driver based on existing profile 👍 Starting control plane node minikube in cluster minikube 🚜 Pulling base image ... E0729 03:57:22.918515 2692 cache.go:200] Error downloading kic artifacts: failed to download kic base image or any fallback image 🤷 docker "minikube" container is missing, will recreate. 🔥 Creating docker container (CPUs=2, Memory=2200MB) ... 🤦 StartHost failed, but will try again: recreate: creating host: create: creating: setting up container node: preparing volume for minikube container: docker run --rm --name minikube-preload-sidecar --label created_by.minikube.sigs.k8s.io=true --label name.minikube.sigs.k8s.io=minikube --entrypoint /usr/bin/test -v minikube:/var gcr.io/k8s-minikube/kicbase:v0.0.25@sha256:6f936e3443b95cd918d77623bf7b595653bb382766e280290a02b4a349e88b79 -d /var/lib: exit status 125 stdout:

stderr:
Unable to find image 'gcr.io/k8s-minikube/kicbase:v0.0.25@sha256:6f936e3443b95cd918d77623bf7b595653bb382766e280290a02b4a349e88b79' locally
sha256:6f936e3443b95cd918d77623bf7b595653bb382766e280290a02b4a349e88b79: Pulling from k8s-minikube/kicbase
docker: no matching manifest for unknown in the manifest list entries.
See 'docker run --help'.

lastStart.txt

@medyagh
Copy link
Member

medyagh commented Jul 29, 2021

I am curious can you pull the image manually?

docker pull gcr.io/k8s-minikube/kicbase:v0.0.25

@afbjorklund
Copy link
Collaborator

afbjorklund commented Jul 29, 2021

There is currently no support for arm(32), only arm64.

The error is: failed to download gcr.io/k8s-minikube/kicbase:v0.0.25@sha256:6f936e3443b95cd918d77623bf7b595653bb382766e280290a02b4a349e88b79, will try fallback image if available: getting remote image: no child with platform linux/arm in index gcr.io/k8s-minikube/kicbase:v0.0.25@sha256:6f936e3443b95cd918d77623bf7b595653bb382766e280290a02b4a349e88b79

Eventually need to build kicbase for both architectures...

docker info

OperatingSystem:Raspbian GNU/Linux 10 (buster)
OSType:linux
Architecture:armv7l

KICBASE_ARCH = linux/arm64,linux/amd64

@afbjorklund
Copy link
Collaborator

afbjorklund commented Jul 29, 2021

There is a beta version available, of Raspberry Pi OS 64-bit
https://downloads.raspberrypi.org/raspios_arm64/images/

https://www.raspberrypi.org/blog/latest-raspberry-pi-os-update-may-2020/
(there are some more Raspberry Pi details under the backlog item #9762)

@afbjorklund afbjorklund added the kind/support Categorizes issue or PR as a support question. label Jul 29, 2021
@afbjorklund
Copy link
Collaborator

I made a PR to include "arm" in the kicbase arch: #12079

@afbjorklund afbjorklund changed the title Failed to start on Raspberrypi 4 Failed to start on Raspberry Pi OS arm(v7) Aug 5, 2021
@sharifelgamal
Copy link
Collaborator

This isn't quite ready yet (that previous PR didn't build on armv7) but we have a tracking issue for the docker driver on armv7 specifically: #12399

@sharifelgamal sharifelgamal added co/kic-base kind/feature Categorizes issue or PR as related to a new feature. priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release. and removed kind/support Categorizes issue or PR as a support question. labels Sep 8, 2021
@spowelljr spowelljr added priority/important-longterm Important over the long term, but may not be staffed and/or may need multiple releases to complete. and removed priority/important-soon Must be staffed and worked on either currently, or very soon, ideally in time for the next release. labels Oct 20, 2021
@k8s-triage-robot
Copy link

The Kubernetes project currently lacks enough contributors to adequately respond to all issues and PRs.

This bot triages issues and PRs according to the following rules:

  • After 90d of inactivity, lifecycle/stale is applied
  • After 30d of inactivity since lifecycle/stale was applied, lifecycle/rotten is applied
  • After 30d of inactivity since lifecycle/rotten was applied, the issue is closed

You can:

  • Mark this issue or PR as fresh with /remove-lifecycle stale
  • Mark this issue or PR as rotten with /lifecycle rotten
  • Close this issue or PR with /close
  • Offer to help out with Issue Triage

Please send feedback to sig-contributor-experience at kubernetes/community.

/lifecycle stale

@k8s-ci-robot k8s-ci-robot added the lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. label Jan 18, 2022
@k8s-triage-robot
Copy link

The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs.

This bot triages issues and PRs according to the following rules:

  • After 90d of inactivity, lifecycle/stale is applied
  • After 30d of inactivity since lifecycle/stale was applied, lifecycle/rotten is applied
  • After 30d of inactivity since lifecycle/rotten was applied, the issue is closed

You can:

  • Mark this issue or PR as fresh with /remove-lifecycle rotten
  • Close this issue or PR with /close
  • Offer to help out with Issue Triage

Please send feedback to sig-contributor-experience at kubernetes/community.

/lifecycle rotten

@k8s-ci-robot k8s-ci-robot added lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. and removed lifecycle/stale Denotes an issue or PR has remained open with no activity and has become stale. labels Feb 17, 2022
@spowelljr
Copy link
Member

arm should now be available since a couple releases ago, you can view all our release artifacts here https://github.com/kubernetes/minikube/releases/tag/v1.25.2

I'm going to close this issue, but if you have any further questions feel free to reopen and respond, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
co/kic-base kind/feature Categorizes issue or PR as related to a new feature. lifecycle/rotten Denotes an issue or PR that has aged beyond stale and will be auto-closed. priority/important-longterm Important over the long term, but may not be staffed and/or may need multiple releases to complete.
Projects
None yet
Development

No branches or pull requests

7 participants