You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Makefile
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -138,6 +138,10 @@ generate-all: manifests generate proto ## Generate all code (CRDs, DeepCopy, pro
138
138
run: manifests generate fmt vet generate-certs ## Run a controller from your host.
139
139
go run ./cmd/main.go -zap-devel --webhook-cert-path=$(CERTSDIR) --config=./config/samples/test_config.yaml
140
140
141
+
.PHONY: run2
142
+
run2: manifests generate fmt vet generate-certs2 ## Run a controller from your host.
143
+
go run ./cmd/main.go -zap-devel --web-bind-address=:8082 --health-probe-bind-address=:9091 --webhook-port=9444 --webhook-cert-path=$(CERTSDIR) --config=./config/samples/test_config.yaml
144
+
141
145
# If you wish to build the manager image targeting other platforms you can use the --platform flag.
142
146
# (i.e. docker build --platform linux/arm64). However, you must enable docker buildKit for it.
143
147
# More info: https://docs.docker.com/develop/develop-images/build_enhancements/
@@ -304,3 +308,10 @@ generate-certs: ## Generates the certs required to run webhooks locally
0 commit comments