https://github.com/hamdiz0/minikube-setup
automating the setup of minikube
https://github.com/hamdiz0/minikube-setup
devops kubernetes minikube script
Last synced: 6 months ago
JSON representation
automating the setup of minikube
- Host: GitHub
- URL: https://github.com/hamdiz0/minikube-setup
- Owner: hamdiz0
- Created: 2024-11-21T23:18:37.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-16T00:20:38.000Z (about 1 year ago)
- Last Synced: 2025-04-04T14:11:22.026Z (10 months ago)
- Topics: devops, kubernetes, minikube, script
- Language: Shell
- Homepage:
- Size: 19.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# `Minikube-setup`
* automating the setup of minikube with scripts
## Minikube as Docker container --driver=docker [view docs] :
* view script here
* the script check if docker is installed if not it installs it along with minikube
* start minikube after running the script :
```
minikube start --driver=docker
```
## Minikube as a VM --driver=none [view docs] :
### debian based system :
* view script here
### red hat based system :
* view script here
* the script installs docker along with the required dependencys
* start minikube after running the script :
```
minikube start --driver=none
```