Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions install/Knative-with-AKS.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ Knative depends on Istio.

1. Install Istio:
```bash
kubectl apply -f https://storage.googleapis.com/knative-releases/latest/istio.yaml
kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/istio.yaml
```
1. Label the default namespace with `istio-injection=enabled`:
```bash
Expand All @@ -147,7 +147,7 @@ rerun the command to see the current status.
1. Next, we will install [Knative Serving](https://github.com/knative/serving)
and its dependencies:
```bash
kubectl apply -f https://storage.googleapis.com/knative-releases/latest/release.yaml
kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/release.yaml
```
1. Monitor the Knative components, until all of the components show a `STATUS` of
`Running`:
Expand Down
4 changes: 2 additions & 2 deletions install/Knative-with-GKE.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ Knative depends on Istio.

1. Install Istio:
```bash
kubectl apply -f https://storage.googleapis.com/knative-releases/latest/istio.yaml
kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/istio.yaml
```
1. Label the default namespace with `istio-injection=enabled`:
```bash
Expand All @@ -140,7 +140,7 @@ rerun the command to see the current status.
1. Next, we will install [Knative Serving](https://github.com/knative/serving)
and its dependencies:
```bash
kubectl apply -f https://storage.googleapis.com/knative-releases/latest/release.yaml
kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/release.yaml
```
1. Monitor the Knative components, until all of the components show a `STATUS` of
`Running`:
Expand Down
10 changes: 5 additions & 5 deletions install/Knative-with-Gardener.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Knative depends on Istio.

1. Install Istio:
```bash
kubectl apply -f https://storage.googleapis.com/knative-releases/latest/istio.yaml
kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/istio.yaml
```
2. Label the default namespace with `istio-injection=enabled`:
```bash
Expand All @@ -91,7 +91,7 @@ rerun the command to see the current status.

1. Next, we will install [Knative Serving](https://github.com/knative/serving)
and its dependencies:
`bash kubectl apply -f https://storage.googleapis.com/knative-releases/latest/release.yaml`
`bash kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/release.yaml`
1. Monitor the Knative components, until all of the components show a `STATUS`
of `Running`: `bash kubectl get pods -n knative-serving`

Expand Down Expand Up @@ -137,11 +137,11 @@ spec:
And of course create the respectve `ConfigMaps`:

```
curl https://storage.googleapis.com/knative-releases/latest/istio.yaml -o istio.yaml
curl https://storage.googleapis.com/knative-releases/serving/latest/istio.yaml
kubectl create configmap istio-chart-080 --from-file=istio.yaml

curl https://storage.googleapis.com/knative-releases/latest/release.yaml -o knative.yaml
kubectl create configmap knative-chart-001 --from-file=knative.yaml
curl https://storage.googleapis.com/knative-releases/serving/latest/release.yaml
kubectl create configmap knative-chart-001 --from-file=release.yaml
```

With this preparation, your team can just activate Knative in the "Addons" tab
Expand Down
4 changes: 2 additions & 2 deletions install/Knative-with-IKS.md
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ Knative depends on Istio.

1. Install Istio:
```bash
kubectl apply -f https://storage.googleapis.com/knative-releases/latest/istio.yaml
kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/istio.yaml
```
1. Label the default namespace with `istio-injection=enabled`:
```bash
Expand All @@ -150,7 +150,7 @@ rerun the command to see the current status.
1. Next, we will install [Knative Serving](https://github.com/knative/serving)
and its dependencies:
```bash
kubectl apply -f https://storage.googleapis.com/knative-releases/latest/release.yaml
kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/release.yaml
```
1. Monitor the Knative components until all of the components show a `STATUS`
of `Running`:
Expand Down
6 changes: 3 additions & 3 deletions install/Knative-with-Minikube.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ Knative depends on Istio. Run the following to install Istio. (We are changing
`LoadBalancer` to `NodePort` for the `istio-ingress` service).

```shell
curl -L https://storage.googleapis.com/knative-releases/latest/istio.yaml \
curl -L https://storage.googleapis.com/knative-releases/serving/latest/istio.yaml \
| sed 's/LoadBalancer/NodePort/' \
| kubectl apply -f -

Expand All @@ -85,12 +85,12 @@ rerun the command to see the current status.
Next, install [Knative Serving](https://github.com/knative/serving):

Because you have limited resources available, use the
`https://storage.googleapis.com/knative-releases/latest/release-lite.yaml`
`https://storage.googleapis.com/knative-releases/serving/latest/release-lite.yaml`
file, which omits some of the monitoring components to reduce the memory used by
the Knative components. To use the provided `release-lite.yaml` release, run:

```shell
curl -L https://storage.googleapis.com/knative-releases/latest/release-lite.yaml \
curl -L https://storage.googleapis.com/knative-releases/serving/latest/release-lite.yaml \
| sed 's/LoadBalancer/NodePort/' \
| kubectl apply -f -
```
Expand Down
6 changes: 3 additions & 3 deletions install/Knative-with-PKS.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Knative depends on Istio. Istio workloads require privileged mode for Init Conta

1. Install Istio:
```bash
kubectl apply -f https://storage.googleapis.com/knative-releases/latest/istio.yaml
kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/istio.yaml
```
1. Label the default namespace with `istio-injection=enabled`:
```bash
Expand All @@ -55,7 +55,7 @@ rerun the command to see the current status.
1. Next, we will install [Knative Serving](https://github.com/knative/serving)
and its dependencies:
```bash
kubectl apply -f https://storage.googleapis.com/knative-releases/latest/release.yaml
kubectl apply -f https://storage.googleapis.com/knative-releases/serving/latest/release.yaml
```
1. Monitor the Knative components, until all of the components show a `STATUS` of
`Running`:
Expand Down Expand Up @@ -86,4 +86,4 @@ You have two options for deploying your first app:

## Cleaning up

To delete the cluster, follow the documentation at https://docs.pivotal.io/runtimes/pks/1-1/delete-cluster.html.
To delete the cluster, follow the documentation at https://docs.pivotal.io/runtimes/pks/1-1/delete-cluster.html.