@@ -161,7 +161,7 @@ see [Performing a Custom Knative Installation](./Knative-custom-install.md).
1611611. Run the following commands to install Knative:
162162
163163 ```shell
164- curl -L https://github.com/knative/serving/releases/download/v0.6 .0/serving.yaml \
164+ curl -L https://github.com/knative/serving/releases/download/v0.7 .0/serving.yaml \
165165 | sed 's/LoadBalancer/NodePort/' \
166166 | kubectl apply --selector networking.knative.dev/certificate-provider!=cert-manager --filename -
167167 ```
@@ -177,31 +177,25 @@ see [Performing a Custom Knative Installation](./Knative-custom-install.md).
177177 > statement to install the controller.
178178
179179 ``` shell
180- curl -L https://github.com/knative/build/releases/download/v0.6 .0/build.yaml \
180+ curl -L https://github.com/knative/build/releases/download/v0.7 .0/build.yaml \
181181 | sed ' s/LoadBalancer/NodePort/' \
182182 | kubectl apply --filename -
183183 ```
184184
185185 ``` shell
186- curl -L https://github.com/knative/eventing/releases/download/v0.6 .0/release.yaml \
186+ curl -L https://github.com/knative/eventing/releases/download/v0.7 .0/release.yaml \
187187 | sed ' s/LoadBalancer/NodePort/' \
188188 | kubectl apply --filename -
189189 ```
190190
191191 ``` shell
192- curl -L https://github.com/knative/eventing-contrib/releases/download/v0.6 .0/eventing-sources.yaml \
192+ curl -L https://github.com/knative/eventing-contrib/releases/download/v0.7 .0/eventing-sources.yaml \
193193 | sed ' s/LoadBalancer/NodePort/' \
194194 | kubectl apply --filename -
195195 ```
196196
197197 ``` shell
198- curl -L https://github.com/knative/serving/releases/download/v0.6.0/monitoring.yaml \
199- | sed ' s/LoadBalancer/NodePort/' \
200- | kubectl apply --filename -
201- ```
202-
203- ``` shell
204- curl -L https://raw.githubusercontent.com/knative/serving/v0.6.0/third_party/config/build/clusterrole.yaml \
198+ curl -L https://github.com/knative/serving/releases/download/v0.7.0/monitoring.yaml \
205199 | sed ' s/LoadBalancer/NodePort/' \
206200 | kubectl apply --filename -
207201 ```
@@ -212,10 +206,6 @@ see [Performing a Custom Knative Installation](./Knative-custom-install.md).
212206 > [ #968 ] ( https://github.com/knative/docs/issues/968 ) and
213207 > [ #1036 ] ( https://github.com/knative/docs/issues/1036 ) .
214208
215- > ** Note** : For the v0.4.0 release and newer, the ` clusterrole.yaml ` file is
216- > required to enable the Build and Serving components to interact with each
217- > other.
218-
219209 See
220210 [ Installing logging, metrics, and traces] ( ../serving/installing-logging-metrics-traces.md )
221211 for details about installing the various supported observability plug-ins.
@@ -267,31 +257,31 @@ To remove Knative from your IBM Cloud Private cluster, run the following
267257commands:
268258
269259``` shell
270- curl -L https://github.com/knative/serving/releases/download/v0.6 .0/serving.yaml \
260+ curl -L https://github.com/knative/serving/releases/download/v0.7 .0/serving.yaml \
271261 | sed ' s/LoadBalancer/NodePort/' \
272262 | kubectl delete --filename -
273263```
274264
275265``` shell
276- curl -L https://github.com/knative/build/releases/download/v0.6 .0/build.yaml \
266+ curl -L https://github.com/knative/build/releases/download/v0.7 .0/build.yaml \
277267 | sed ' s/LoadBalancer/NodePort/' \
278268 | kubectl delete --filename -
279269```
280270
281271``` shell
282- curl -L https://github.com/knative/eventing/releases/download/v0.6 .0/release.yaml \
272+ curl -L https://github.com/knative/eventing/releases/download/v0.7 .0/release.yaml \
283273 | sed ' s/LoadBalancer/NodePort/' \
284274 | kubectl delete --filename -
285275```
286276
287277``` shell
288- curl -L https://github.com/knative/eventing-contrib/releases/download/v0.6 .0/eventing-sources.yaml \
278+ curl -L https://github.com/knative/eventing-contrib/releases/download/v0.7 .0/eventing-sources.yaml \
289279 | sed ' s/LoadBalancer/NodePort/' \
290280 | kubectl delete --filename -
291281```
292282
293283``` shell
294- curl -L https://github.com/knative/serving/releases/download/v0.6 .0/monitoring.yaml \
284+ curl -L https://github.com/knative/serving/releases/download/v0.7 .0/monitoring.yaml \
295285 | sed ' s/LoadBalancer/NodePort/' \
296286 | kubectl delete --filename -
297287```
0 commit comments