diff --git a/install/Knative-with-AKS.md b/install/Knative-with-AKS.md index d31df570e6f..e1fffcb75ec 100644 --- a/install/Knative-with-AKS.md +++ b/install/Knative-with-AKS.md @@ -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 @@ -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`: diff --git a/install/Knative-with-GKE.md b/install/Knative-with-GKE.md index a77577f90d0..5a29d628b1e 100644 --- a/install/Knative-with-GKE.md +++ b/install/Knative-with-GKE.md @@ -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 @@ -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`: diff --git a/install/Knative-with-Gardener.md b/install/Knative-with-Gardener.md index 1908783a042..30c960aebd0 100644 --- a/install/Knative-with-Gardener.md +++ b/install/Knative-with-Gardener.md @@ -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 @@ -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` @@ -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 diff --git a/install/Knative-with-IKS.md b/install/Knative-with-IKS.md index 007ea2b4448..6d9757c0ef6 100644 --- a/install/Knative-with-IKS.md +++ b/install/Knative-with-IKS.md @@ -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 @@ -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`: diff --git a/install/Knative-with-Minikube.md b/install/Knative-with-Minikube.md index 1b3298a8e9f..1c4e1de9eda 100644 --- a/install/Knative-with-Minikube.md +++ b/install/Knative-with-Minikube.md @@ -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 - @@ -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 - ``` diff --git a/install/Knative-with-PKS.md b/install/Knative-with-PKS.md index b89c8dde05e..f0620eaf09b 100644 --- a/install/Knative-with-PKS.md +++ b/install/Knative-with-PKS.md @@ -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 @@ -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`: @@ -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. \ No newline at end of file +To delete the cluster, follow the documentation at https://docs.pivotal.io/runtimes/pks/1-1/delete-cluster.html.