This is an automated email from the ASF dual-hosted git repository. gerlowskija pushed a commit to branch release-0.9 in repository https://gitbox.apache.org/repos/asf/solr-operator.git
commit eae9ad4470ceba76c2e87a1a8db3644fca003b2f Author: Jason Gerlowski <gerlowsk...@apache.org> AuthorDate: Thu Mar 13 20:24:56 2025 -0400 Use supported Solr version in examples (#768) Several examples referenced the Solr 8.7, and other versions outside the currently supported range (which currently starts at 8.11). This commit fixes this. --- example/test_solrcloud.yaml | 2 +- example/test_solrcloud_backuprepos.yaml | 2 +- example/test_solrcloud_private_repo.yaml | 2 +- example/test_solrcloud_toleration_example.yaml | 2 +- example/test_solrprometheusexporter.yaml | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/example/test_solrcloud.yaml b/example/test_solrcloud.yaml index b8ba247..04c7499 100644 --- a/example/test_solrcloud.yaml +++ b/example/test_solrcloud.yaml @@ -28,7 +28,7 @@ spec: storage: "5Gi" replicas: 3 solrImage: - tag: 8.7.0 + tag: "8.11" solrJavaMem: "-Xms1g -Xmx3g" solrModules: - jaegertracer-configurator diff --git a/example/test_solrcloud_backuprepos.yaml b/example/test_solrcloud_backuprepos.yaml index 8362d43..8cb2004 100644 --- a/example/test_solrcloud_backuprepos.yaml +++ b/example/test_solrcloud_backuprepos.yaml @@ -20,7 +20,7 @@ metadata: spec: replicas: 1 solrImage: - tag: 8.10 + tag: "8.11" backupRepositories: # "Volume" repositories store backup data in a Kubernetes volume. - name: "volume_repository_1" diff --git a/example/test_solrcloud_private_repo.yaml b/example/test_solrcloud_private_repo.yaml index 2a26f9d..fd8d5f9 100644 --- a/example/test_solrcloud_private_repo.yaml +++ b/example/test_solrcloud_private_repo.yaml @@ -21,5 +21,5 @@ spec: replicas: 3 solrImage: repository: myprivate-repo.jfrog.io/solr - tag: 8.7.0 + tag: "8.11" imagePullSecret: "k8s-docker-registry-secret" diff --git a/example/test_solrcloud_toleration_example.yaml b/example/test_solrcloud_toleration_example.yaml index f94e4aa..68b322f 100644 --- a/example/test_solrcloud_toleration_example.yaml +++ b/example/test_solrcloud_toleration_example.yaml @@ -20,7 +20,7 @@ metadata: spec: replicas: 1 solrImage: - tag: 8.7.0 + tag: "8.11" customSolrKubeOptions: podOptions: nodeSelector: diff --git a/example/test_solrprometheusexporter.yaml b/example/test_solrprometheusexporter.yaml index 04ddcd2..fa64926 100644 --- a/example/test_solrprometheusexporter.yaml +++ b/example/test_solrprometheusexporter.yaml @@ -23,4 +23,4 @@ spec: name: "example" numThreads: 4 image: - tag: 8.7.0 + tag: "8.11"