1
0
mirror of https://github.com/rancher/steve.git synced 2025-04-27 11:00:48 +00:00
steve/Makefile

17 lines
442 B
Makefile
Raw Normal View History

2019-08-05 04:19:18 +00:00
build:
2019-09-11 21:05:00 +00:00
docker build -t steve .
2019-08-05 04:19:18 +00:00
2022-10-14 20:02:53 +00:00
build-bin:
bash scripts/build-bin.sh
2019-08-05 04:19:18 +00:00
run: build
2020-05-31 04:44:51 +00:00
docker run $(DOCKER_ARGS) --rm -p 8989:9080 -it -v ${HOME}/.kube:/root/.kube steve --https-listen-port 0
2019-08-05 04:19:18 +00:00
run-host: build
docker run $(DOCKER_ARGS) --net=host --uts=host --rm -it -v ${HOME}/.kube:/root/.kube steve --kubeconfig /root/.kube/config --http-listen-port 8989 --https-listen-port 0
2022-10-14 20:02:53 +00:00
test:
bash scripts/test.sh
validate:
bash scripts/validate.sh