Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/emmeowzing/minikube
My home minikube cluster confguration.
https://github.com/emmeowzing/minikube
github probot
Last synced: about 1 month ago
JSON representation
My home minikube cluster confguration.
- Host: GitHub
- URL: https://github.com/emmeowzing/minikube
- Owner: emmeowzing
- License: bsd-3-clause
- Archived: true
- Created: 2022-06-25T19:47:10.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-05-01T05:16:43.000Z (over 1 year ago)
- Last Synced: 2024-09-22T13:02:06.314Z (about 2 months ago)
- Topics: github, probot
- Language: Shell
- Homepage: https://github.com/bjd2385/minikube
- Size: 221 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Home Minikube cluster configs
This repo contains some development / learning work I've done to deploy several applications on my home network.
### K8s clusters
#### Create
You can create a Minikube cluster in KVM on your ZFS array by running
```shell
$ yarn cluster:create
```This command can take several minutes to complete.
```shell
$ virsh list
Id Name State
----------------------------------------------------
51 minikube running
52 minikube-m02 running
53 minikube-m03 running```
Update the `ZFS_MOUNTPOINT` environment variable in [scripts/start-new.sh](scripts/start-new.sh) to your target dataset's mountpoint. I've defaulted it to a particular data set on my array.
#### Delete
Delete your Minikube cluster with
```shell
$ yarn cluster:delete
```This deletes your cluster in Minikube's configs, removes vdisks from the ZFS mountpoint, and undefines any residual VMs prefixed with `minikube`.