mirror of https://github.com/k3s-io/k3s
22 lines
261 B
Makefile
22 lines
261 B
Makefile
|
MODULE := $(shell basename $$PWD)
|
||
|
|
||
|
.PHONY: init config apply destroy clean test
|
||
|
|
||
|
init:
|
||
|
@scripts/perf init
|
||
|
|
||
|
config:
|
||
|
@scripts/perf config
|
||
|
|
||
|
apply:
|
||
|
@scripts/perf apply
|
||
|
|
||
|
destroy:
|
||
|
@scripts/perf destroy
|
||
|
|
||
|
clean:
|
||
|
@scripts/perf clean
|
||
|
|
||
|
test:
|
||
|
@scripts/test test_load
|