diff --git a/Makefile b/Makefile index dd8fcffae..16d256664 100644 --- a/Makefile +++ b/Makefile @@ -374,6 +374,8 @@ artifacts: kustomize if [ -d artifacts ]; then rm -rf artifacts; fi mkdir -p artifacts $(KUSTOMIZE) build config/crd -o artifacts/manifests.yaml + $(YQ) -P 'select(.spec.versions[].name == "v1")' artifacts/manifests.yaml > artifacts/v1-manifests.yaml + $(YQ) -P 'select(.spec.versions[].name != "v1")' artifacts/manifests.yaml > artifacts/experimental-manifests.yaml @$(call clean-manifests) .PHONY: release diff --git a/site-src/guides/index.md b/site-src/guides/index.md index be1f685c9..393d0b816 100644 --- a/site-src/guides/index.md +++ b/site-src/guides/index.md @@ -34,7 +34,7 @@ ### Install the Inference Extension CRDs ```bash -kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/download/v1.0.1/manifests.yaml +kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/download/v1.0.1/v1-manifests.yaml ``` ### Deploy the InferencePool and Endpoint Picker Extension