mirror of
https://github.com/morten-olsen/homelab-operator.git
synced 2026-02-08 01:36:28 +01:00
15 lines
408 B
Makefile
15 lines
408 B
Makefile
.PHONY: setup dev-recreate dev-create dev-destroy
|
|
|
|
setup:
|
|
./scripts/setup-server.sh
|
|
|
|
dev-destroy:
|
|
colima delete -f
|
|
|
|
dev-create:
|
|
colima start --network-address --kubernetes -m 8 --mount ${PWD}/data:/data:w --k3s-arg="--disable=helm-controller,local-storage"
|
|
|
|
dev-recreate: dev-destroy dev-create setup
|
|
|
|
server-install:
|
|
curl -sfL https://get.k3s.io | sh -s - --disable traefik,local-storage,helm-controller
|