Skip to content

Commit

Permalink
Remove unnecessary go build statements from Make commands
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanaoleary committed Feb 20, 2024
1 parent 0032993 commit 55ea17a
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions applications/ray/kuberay-tpu-webhook/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ run: webhook
uninstall:
kubectl delete -f deployments/

deploy: webhook
deploy:
kubectl apply -f deployments/

# Build the docker image
Expand All @@ -38,10 +38,10 @@ install-cert-manager:
uninstall-cert-manager:
kubectl delete -f https://github.com/cert-manager/cert-manager/releases/download/v1.13.2/cert-manager.yaml

deploy-cert: webhook
deploy-cert:
kubectl apply -f certs/

uninstall-cert: webhook
uninstall-cert:
kubectl delete -f certs/

install-reflector:
Expand All @@ -50,8 +50,8 @@ install-reflector:
uninstall-reflector:
kubectl delete -f https://github.com/emberstack/kubernetes-reflector/releases/latest/download/reflector.yaml

tests: webhook
tests:
kubectl apply -f tests/

delete-tests: webhook
delete-tests:
kubectl delete -f tests/

0 comments on commit 55ea17a

Please sign in to comment.