We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 182b57f commit 585d7eeCopy full SHA for 585d7ee
Makefile
@@ -267,4 +267,8 @@ update-crd-docs: ## Update CRD markdown documentation from YAML definitions
267
268
.PHONY: certs
269
certs: ## Create just in time TLS certificates needed for tests and examples
270
+ifeq (, $(shell command -v go))
271
+ docker run --rm -v .:/workspace/kubernetes-ingress -w /workspace/kubernetes-ingress golang:1.25.4-trixie make certs
272
+else
273
make -C hack/tls-cert-gen run
274
+endif
0 commit comments