You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ge...@apache.org on 2023/11/13 19:16:58 UTC

(solr-operator) branch main updated: Update Solr version tag in local_tutorial.md (#652)

This is an automated email from the ASF dual-hosted git repository.

gerlowskija pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr-operator.git


The following commit(s) were added to refs/heads/main by this push:
     new 8e986e6  Update Solr version tag in local_tutorial.md (#652)
8e986e6 is described below

commit 8e986e60a82fcd577fe55e882e23a5491f4d3014
Author: Jason Gerlowski <ge...@apache.org>
AuthorDate: Mon Nov 13 14:16:52 2023 -0500

    Update Solr version tag in local_tutorial.md (#652)
---
 docs/local_tutorial.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/local_tutorial.md b/docs/local_tutorial.md
index ea06a12..e3cc42a 100644
--- a/docs/local_tutorial.md
+++ b/docs/local_tutorial.md
@@ -122,9 +122,9 @@ After inspecting the status of you Kube cluster, you should see a deployment for
 To start a Solr Cloud cluster, we will create a yaml that will tell the Solr Operator what version of Solr Cloud to run, and how many nodes, with how much memory etc.
 
 ```bash
-# Create a 3-node cluster v8.3 with 300m Heap each:
+# Create a 3-node cluster v8.11 with 300m Heap each:
 helm install example-solr apache-solr/solr --version 0.9.0-prerelease \
-  --set image.tag=8.3 \
+  --set image.tag=8.11 \
   --set solrOptions.javaMemory="-Xms300m -Xmx300m" \
   --set addressability.external.method=Ingress \
   --set addressability.external.domainName="ing.local.domain" \
@@ -207,7 +207,7 @@ By default, the helm chart does not set the `replicas` field, so it is safe to u
 So we wish to upgrade to a newer Solr version:
 
 ```bash
-# Take note of the current version, which is 8.3.1
+# Take note of the current version, which is 8.11.2
 curl -s http://default-example-solrcloud.ing.local.domain/solr/admin/info/system | grep solr-i
 
 # Update the solrCloud configuration with the new version, keeping all previous settings and the number of nodes set by the autoscaler.