From 7075bdd26161985f197163c5fed1a89aa1f0815f Mon Sep 17 00:00:00 2001 From: Matthias Wessendorf Date: Sat, 25 Mar 2023 17:04:48 +0100 Subject: [PATCH] Updating Knative Serving and Istio to their latest version (#2697) * Updating Knative Serving and Istio to their latest version Signed-off-by: Matthias Wessendorf * Update version to 0.10.1 Signed-off-by: Dan Sun --------- Signed-off-by: Matthias Wessendorf Signed-off-by: Dan Sun Co-authored-by: Dan Sun --- hack/quick_install.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/hack/quick_install.sh b/hack/quick_install.sh index 0a271b5ab72..5447a8d8303 100755 --- a/hack/quick_install.sh +++ b/hack/quick_install.sh @@ -30,8 +30,8 @@ while getopts ":hsr" option; do esac done -export ISTIO_VERSION=1.15.0 -export KNATIVE_VERSION=knative-v1.7.0 +export ISTIO_VERSION=1.16.2 +export KNATIVE_VERSION=knative-v1.9.0 export KSERVE_VERSION=v0.10.1 export CERT_MANAGER_VERSION=v1.3.0 export SCRIPT_DIR="$( dirname -- "${BASH_SOURCE[0]}" )" @@ -99,6 +99,8 @@ if [ $deploymentMode = serverless ]; then kubectl apply --filename https://github.com/knative/serving/releases/download/${KNATIVE_VERSION}/serving-crds.yaml kubectl apply --filename https://github.com/knative/serving/releases/download/${KNATIVE_VERSION}/serving-core.yaml kubectl apply --filename https://github.com/knative/net-istio/releases/download/${KNATIVE_VERSION}/release.yaml + # Patch the external domain as the default domain svc.cluster.local is not exposed on ingress + kubectl patch cm config-domain --patch '{"data":{"example.com":""}}' -n knative-serving echo "😀 Successfully installed Knative" fi