mirror of
https://github.com/outbackdingo/kamaji.git
synced 2026-01-27 10:19:29 +00:00
17 lines
370 B
Makefile
17 lines
370 B
Makefile
include etcd/Makefile
|
|
|
|
deploy_path := $(patsubst %/,%,$(dir $(abspath $(lastword $(MAKEFILE_LIST)))))
|
|
|
|
.DEFAULT_GOAL := kamaji
|
|
|
|
.PHONY: etcd-cluster
|
|
reqs: etcd-cluster
|
|
|
|
.PHONY: kamaji
|
|
kamaji: reqs
|
|
@kubectl apply -f $(deploy_path)/../../config/install.yaml
|
|
|
|
.PHONY: destroy
|
|
destroy: etcd-certificates/cleanup
|
|
@kubectl delete -f $(deploy_path)/../../config/install.yaml
|