From af6411b78e68bb0fdca1258e0fd11c0bed7638ce Mon Sep 17 00:00:00 2001 From: artemvmin Date: Mon, 1 Apr 2024 17:26:59 -0700 Subject: [PATCH] Update rag README Autopilot instructions (#519) --- applications/rag/README.md | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/applications/rag/README.md b/applications/rag/README.md index 13c334ba4..703b6219c 100644 --- a/applications/rag/README.md +++ b/applications/rag/README.md @@ -33,15 +33,12 @@ By default, this tutorial creates an Autopilot cluster on your behalf. We highly If you prefer to manage your own cluster, set `create_cluster = false` in the [Installation section](#installation). Creating a long-running cluster may be better for development, allowing you to iterate on Terraform components without recreating the cluster every time. -Use gcloud to create a GKE Autopilot cluster. Note that RAG requires the latest Autopilot features, available on the `RAPID` release channel. +Use gcloud to create a GKE Autopilot cluster. Note that RAG requires the latest Autopilot features, available on the latest versions of 1.28 and 1.29. ``` -CLUSTER_NAME=rag-cluster -CLUSTER_REGION=us-east4 - -gcloud container clusters create-auto ${CLUSTER_NAME:?} \ - --location ${CLUSTER_REGION:?} \ - --release-channel rapid +gcloud container clusters create-auto rag-cluster \ + --location us-central1 \ + --cluster-version 1.28 ``` ### Bring your own VPC (optional)