play-with-docker/play-with-kubernetes.github.io

labs.play-with-k8s.com is down

RSwarnkar opened this issue · 5 comments

I am unable to load https://labs.play-with-k8s.com/ and it seems is down. Can you please check.

image

I used to load it several days ago, and today I can't load it. What happened?

Does anyone still maintain this page? This link is still not accessible.

Unfortunately http://labs.play-with-k8s.com/ is down
"Play with Kubernetes" playground does not work
Could you please take a look ?

training.play-with-kubernetes.com/:2459 - Error 404 - not working

http://labs.play-with-k8s.com/ Still down((
Could you please restor service ? restore file or something to fix the issue.
Please turn "Play with Kubernetes" back.
Please. We realy need this.

Hey guys, if anybody needs Kubernetes while the http://labs.play-with-k8s.com/ page is down and minikube (local cluster) is enough for you, you can use the Play with Docker environment https://labs.play-with-docker.com/ and do a workaround to install minikube on Alpine Linux there. Just run the following commands in the command line:

apk add gcompat
curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64
sudo install minikube-linux-amd64 /usr/local/bin/minikube
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
sudo install -o root -g root -m 0755 kubectl /usr/local/bin/kubectl

Just one note. The disk capacity is limited to 4GB and most of it will be taken up by minikube after startup, so you won’t be able to run very large containers.