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
- Host: GitHub
- URL: https://github.com/boraxpr/k8s-starter
- Owner: boraxpr
- Created: 2023-03-15T04:12:29.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2023-03-15T04:28:48.000Z (over 3 years ago)
- Last Synced: 2026-03-01T21:15:24.224Z (4 months ago)
- Topics: http-proxy, instructions, kubernetes, proxy
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/