@@ -71,8 +71,8 @@ Knative depends on Istio.
7171
72721 . Install Istio:
7373 ``` bash
74- kubectl apply --filename https://github.com/knative/serving/releases/download/v0.2.2 /istio-crds.yaml && \
75- kubectl apply --filename https://github.com/knative/serving/releases/download/v0.2.2 /istio.yaml
74+ kubectl apply --filename https://github.com/knative/serving/releases/download/v0.2.3 /istio-crds.yaml && \
75+ kubectl apply --filename https://github.com/knative/serving/releases/download/v0.2.3 /istio.yaml
7676 ```
7777 Note: the resources (CRDs) defined in the ` istio-crds.yaml` file are
7878 also included in the ` istio.yaml` file, but they are pulled out so that
@@ -94,47 +94,26 @@ rerun the command to see the current status.
9494> command to view the component' s status updates in real time. Use CTRL + C to
9595> exit watch mode.
9696
97- ## Installing Knative components
97+ ## Installing Knative
9898
99- You can install the Knative Serving and Build components together, or Build on
100- its own.
101-
102- ### Installing Knative Serving and Build components
99+ The following commands install all available Knative components. To customize
100+ your Knative installation, see [Performing a Custom Knative Installation](Knative-custom-install.md).
103101
1041021. Run the `kubectl apply` command to install Knative and its dependencies:
105- ```bash
106- kubectl apply --filename https://github.com/knative/serving/releases/download/v0.2.2/release.yaml
107- ```
108- 1. Monitor the Knative components until all of the components show a `STATUS` of
109- `Running`:
110- ```bash
111- kubectl get pods --namespace knative-serving
112- kubectl get pods --namespace knative-build
113- ```
114-
115- ### Installing Knative Build only
116-
117- 1. Run the `kubectl apply` command to install
118- [Knative Build](https://github.com/knative/build) and its dependencies:
119- ```bash
120- kubectl apply --filename https://github.com/knative/serving/releases/download/v0.2.2/build.yaml
121- ```
122- 1. Monitor the Knative Build components until all of the components show a
103+ ```bash
104+ kubectl apply --filename https://github.com/knative/serving/releases/download/v0.2.3/release.yaml /
105+ --filename https://github.com/knative/eventing/releases/download/v0.2.1/eventing.yaml /
106+ --filename --filename https://github.com/knative/eventing-sources/releases/download/v0.2.1/release.yaml
107+ ```
108+ 1. Monitor the Knative components until all of the components show a
123109 `STATUS` of `Running`:
124- ```bash
125- kubectl get pods --namespace knative-build
126- ```
127-
128- Just as with the Istio components, it will take a few seconds for the Knative
129- components to be up and running; you can rerun the `kubectl get` command to see
130- the current status.
131-
132- > Note: Instead of rerunning the command, you can add `--watch` to the above
133- > command to view the component' s status updates in real time. Use CTRL + C to
134- > exit watch mode.
135-
136- You are now ready to deploy an app or create a build in your new Knative
137- cluster.
110+ ```bash
111+ kubectl get pods --namespace knative-serving
112+ kubectl get pods --namespace knative-build
113+ kubectl get pods --namespace knative-eventing
114+ kubectl get pods --namespace knative-sources
115+ kubectl get pods --namespace knative-monitoring
116+ ```
138117
139118## Alternative way to enable Knative with Gardener
140119
@@ -168,10 +147,10 @@ spec:
168147And of course create the respective `ConfigMaps`:
169148
170149```
171- curl https://github.com/knative/serving/releases/download/v0.2.2 /istio.yaml
150+ curl https://github.com/knative/serving/releases/download/v0.2.3 /istio.yaml
172151kubectl create configmap istio-chart-080 --from-file=istio.yaml
173152
174- curl https://github.com/knative/serving/releases/download/v0.2.2 /release.yaml
153+ curl https://github.com/knative/serving/releases/download/v0.2.3 /release.yaml
175154kubectl create configmap knative-chart-001 --from-file=release.yaml
176155```
177156
@@ -210,17 +189,20 @@ kind: ConfigMap
210189 namespace: knative-serving
211190```
212191
213- # # Deploying an app
192+ ## What ' s next
214193
215- Now that your cluster has Knative installed, you' re ready to deploy an app.
194+ Now that your cluster has Knative installed, you can see what Knative has to
195+ offer.
216196
217- If you' d like to follow a step-by-step guide for deploying your first app on
218- Knative, check out the
197+ To deploy your first app with Knative, follow the step-by-step
219198[Getting Started with Knative App Deployment](getting-started-knative-app.md)
220199guide.
221200
222- If you' d like to view the available sample apps and deploy one of your choosing,
223- head to the [sample apps](../serving/samples/README.md) repo.
201+ To get started with Knative Eventing, pick one of the
202+ [Eventing Samples](../eventing/samples/) to walk through.
203+
204+ To get started with Knative Build, read the
205+ [Build README](../build/README.md), then choose a sample to walk through.
224206
225207# # Cleaning up
226208
0 commit comments