Merge ed663cb899 into 4c7716be2c
commit
d904e7a0e1
|
|
@ -0,0 +1,15 @@
|
||||||
|
{
|
||||||
|
"name": "Kubernetes - Minikube-in-Docker",
|
||||||
|
"image": "mcr.microsoft.com/devcontainers/base:bullseye",
|
||||||
|
"features": {
|
||||||
|
"ghcr.io/devcontainers/features/docker-in-docker:2": {
|
||||||
|
"enableNonRootDocker": "true",
|
||||||
|
"moby": "true"
|
||||||
|
},
|
||||||
|
"ghcr.io/devcontainers/features/kubectl-helm-minikube:1": {
|
||||||
|
"version": "latest",
|
||||||
|
"helm": "latest",
|
||||||
|
"minikube": "latest"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
@ -26,6 +26,7 @@ _testmain.go
|
||||||
*.test
|
*.test
|
||||||
*.prof
|
*.prof
|
||||||
*.pprof
|
*.pprof
|
||||||
|
*.log
|
||||||
|
|
||||||
/deploy/iso/minikube-iso/board/minikube/x86_64/rootfs-overlay/usr/bin/auto-pause
|
/deploy/iso/minikube-iso/board/minikube/x86_64/rootfs-overlay/usr/bin/auto-pause
|
||||||
/deploy/iso/minikube-iso/board/minikube/aarch64/rootfs-overlay/usr/bin/auto-pause
|
/deploy/iso/minikube-iso/board/minikube/aarch64/rootfs-overlay/usr/bin/auto-pause
|
||||||
|
|
|
||||||
|
|
@ -46,6 +46,15 @@ See the [Getting Started Guide](https://minikube.sigs.k8s.io/docs/start/)
|
||||||
|
|
||||||
:mega: **Please fill out our [fast 5-question survey](https://forms.gle/Gg3hG5ZySw8c1C24A)** so that we can learn how & why you use minikube, and what improvements we should make. Thank you! :dancers:
|
:mega: **Please fill out our [fast 5-question survey](https://forms.gle/Gg3hG5ZySw8c1C24A)** so that we can learn how & why you use minikube, and what improvements we should make. Thank you! :dancers:
|
||||||
|
|
||||||
|
## Github Codespace
|
||||||
|
|
||||||
|
You can run Minikube in a Gihub Codespace by clicking here:
|
||||||
|
[](https://codespaces.new/kubernetes/minikube?quickstart=1)
|
||||||
|
|
||||||
|
This will launch a Github Codespace. You can then run `minikube start` and `minikube dashboard` - You can then open Minikube Dashboard by clicking opening the link displayed in the terminal.
|
||||||
|
|
||||||
|
You can also run Minikube in a Dev Container locally using your favourit IDE, for more infor mation see Dev Containers https://code.visualstudio.com/docs/devcontainers/containers
|
||||||
|
|
||||||
## Documentation
|
## Documentation
|
||||||
|
|
||||||
See https://minikube.sigs.k8s.io/docs/
|
See https://minikube.sigs.k8s.io/docs/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue