hjacobs / kube-ops-view

Kubernetes Operational View - read-only system dashboard for multiple K8s clusters
https://kubernetes-operational-view.readthedocs.io/
GNU General Public License v3.0
1.82k stars 256 forks source link

Constant CrashLoopBackOff and Restarts #258

Open sirtuxalot opened 4 years ago

sirtuxalot commented 4 years ago

I am attempting to use this tool on my local cluster wish is 4 x Raspberry Pi 3 B+ running K3s, however the kube-ops-view pod runs in a continuous CrashLoopBackOff and restart loop. I have narrowed it down to something in the deployment.yaml file but am not quite sure what the issue would be. I was able to get the kubernetes dashboard to work without issue but would like to try this tool as well. Please let me know if there is anything I can do to resolve the issue. Thanks

phillebaba commented 4 years ago

What image are you running? Because the official kube-ops-view image is only built for x86-64 architecture. To run the container on an RPI you need images build for ARM.

You have two options, you can either use my build that is in Docker Hub. Or you can build your own. If you look in the Makefile of this project you can see that their is a recipe called docker-arm. You can run it by executing make docker-arm in the root of this repo, and it will build an ARM image for you that you can use.

sirtuxalot commented 4 years ago

Thank you for the quick reply. I was attempting to deploy directly from a cloned copy of the repo. I figured that was probably an architecture issue I just thought I would verify. I will try both options out.