Skip to content
This repository was archived by the owner on May 5, 2025. It is now read-only.

Commit b0b66c1

Browse files
committed
Added spaces after snippets and updated contour pod check
Signed-off-by: Matt Ray <[email protected]>
1 parent a0e096a commit b0b66c1

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

docs/guides/installation-tce.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,41 +12,50 @@
1212
```
1313
kubectl config use-context <STANDALONE-CLUSTER-NAME>-admin@<STANDALONE-CLUSTER-NAME>
1414
```
15+
1516
1. Install Knative Serving following the [Installing Knative Serving using YAML files](https://knative.dev/docs/admin/install/serving/install-serving-with-yaml/) instructions.
1617
```
1718
kubectl apply -f https://github.com/knative/serving/releases/download/v0.26.0/serving-crds.yam
1819
kubectl apply -f https://github.com/knative/serving/releases/download/v0.26.0/serving-core.yaml
1920
```
21+
2022
1. Wait until the pods have started before proceeding.
2123
```
2224
kubectl get pods -n knative-serving
2325
```
26+
2427
1. The version of Contour provided with the Tanzu Community Edition package repository is older than the version of `knative-serving` we have installed, so install it from YAML as well.
2528
```
2629
kubectl apply -f https://github.com/knative/net-contour/releases/download/v0.26.0/contour.yaml
2730
kubectl apply -f https://github.com/knative/net-contour/releases/download/v0.26.0/net-contour.yaml
2831
```
32+
2933
1. Verify the pods have started before proceeding.
3034
```
31-
kubectl get pods -n | grep contour
35+
kubectl get pods -n contour-external
36+
kubectl get pods -n contour-internal
3237
```
38+
3339
1. Configure Knative Serving to use Contour by default by running the command:
3440
```
3541
kubectl patch configmap/config-network \
3642
--namespace knative-serving \
3743
--type merge \
3844
--patch '{"data":{"ingress.class":"contour.ingress.networking.knative.dev"}}'
3945
```
46+
4047
1. Get the External IP address or CNAME by running the command:
4148
```
4249
kubectl --namespace contour-external get service envoy
4350
```
51+
4452
1. You will need to configure DNS following the [Knative Serving DNS instructions](https://knative.dev/docs/admin/install/serving/install-serving-with-yaml/#configure-dns) for your requirements.
4553
1. Install Knative Eventing following the [Installing Knative Eventing using YAML files](https://knative.dev/docs/admin/install/eventing/install-eventing-with-yaml/) instructions.
4654
```
4755
kubectl apply -f https://github.com/knative/eventing/releases/download/v0.26.0/eventing-crds.yaml
4856
kubectl apply -f https://github.com/knative/eventing/releases/download/v0.26.0/eventing-core.yaml
4957
```
58+
5059
1. Verify your installation.
5160
```
5261
kubectl get pods -n knative-eventing

0 commit comments

Comments
 (0)