This commit is contained in:
Brian On 2022-01-01 22:15:21 -08:00
parent c9e69613d3
commit d2deecefbc
6 changed files with 83 additions and 1 deletions

View file

@ -0,0 +1,16 @@
.PHONY: build clean deploy
all: clean build deploy
build:
$(shell cd test && ../gencerts.sh)
clean:
rm -rf test
mkdir test
deploy:
kubectl -n custom-metrics create -f test/cm-adapter-serving-certs.yaml
delete:
kubectl -n custom-metrics delete -f test/cm-adapter-serving-certs.yaml