File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -353,6 +353,8 @@ artifacts: kustomize
353
353
if [ -d artifacts ]; then rm -rf artifacts; fi
354
354
mkdir -p artifacts
355
355
$(KUSTOMIZE ) build config/crd -o artifacts/manifests.yaml
356
+ $(YQ ) -P ' select(.spec.versions[].name == "v1")' artifacts/manifests.yaml > artifacts/v1-manifests.yaml
357
+ $(YQ ) -P ' select(.spec.versions[].name != "v1")' artifacts/manifests.yaml > artifacts/experimental-manifests.yaml
356
358
@$(call clean-manifests)
357
359
358
360
.PHONY : release
Original file line number Diff line number Diff line change @@ -78,10 +78,15 @@ Tooling:
78
78
```
79
79
80
80
### Install the Inference Extension CRDs
81
-
81
+
82
+ #### All IGW CRDs of all versions
82
83
``` bash
83
84
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/latest/download/manifests.yaml
84
85
```
86
+ #### All graduated & approved CRDs
87
+ ``` bash
88
+ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api-inference-extension/releases/latest/download/v1-manifests.yaml
89
+ ```
85
90
86
91
### Deploy the InferencePool and Endpoint Picker Extension
87
92
You can’t perform that action at this time.
0 commit comments