An open API service indexing awesome lists of open source software.

https://github.com/boraxpr/k8s-starter

Quick start to k8s
https://github.com/boraxpr/k8s-starter

http-proxy instructions kubernetes proxy

Last synced: about 13 hours ago
JSON representation

Quick start to k8s

Awesome Lists containing this project

README

          

# k8s-starter

1. Install.

`curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube_latest_amd64.deb`

`sudo dpkg -i minikube_latest_amd64.deb`

2. Start the cluster.
`minikube start`

3. Access the cluster.
`minikube kubectl -- get po -A`

4. Connect the dashboard.
`minikube dashboard`

5. Open a proxy to allow remote connections to access k8s dashboard.
`kubectl proxy --address 0.0.0.0 --port=9000 --accept-hosts '.*'`

#### https://minikube.sigs.k8s.io/docs/start/