mirror of
https://github.com/k3s-io/k3s.git
synced 2024-06-07 19:41:36 +00:00
28 lines
320 B
Makefile
28 lines
320 B
Makefile
MODULE := $(shell basename $$PWD)
|
|
|
|
.PHONY: init config apply destroy clean test info
|
|
|
|
init:
|
|
@scripts/perf init
|
|
|
|
config:
|
|
@scripts/perf config
|
|
|
|
plan:
|
|
@scripts/perf plan
|
|
|
|
apply:
|
|
@scripts/perf apply
|
|
|
|
destroy:
|
|
@scripts/perf destroy
|
|
|
|
clean:
|
|
@scripts/perf clean
|
|
|
|
test:
|
|
@scripts/test test_load
|
|
|
|
info:
|
|
@scripts/perf info
|