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 7a28f24744ec7959139d5840c5daf6c5eea84999
Author: Jason Gerlowski <[email protected]>
AuthorDate: Wed Jan 22 08:59:32 2025 -0500

    Add next patch version v0.9.1
---
 config/crd/bases/solr.apache.org_solrbackups.yaml  |  2 +-
 config/crd/bases/solr.apache.org_solrclouds.yaml   |  2 +-
 .../solr.apache.org_solrprometheusexporters.yaml   |  2 +-
 docs/local_tutorial.md                             |  8 +--
 docs/running-the-operator.md                       |  4 +-
 docs/upgrade-notes.md                              |  4 +-
 helm/solr-operator/Chart.yaml                      | 59 ++++------------------
 helm/solr-operator/README.md                       | 10 ++--
 helm/solr-operator/crds/crds.yaml                  |  6 +--
 helm/solr-operator/values.yaml                     |  2 +-
 helm/solr/Chart.yaml                               |  6 +--
 helm/solr/README.md                                |  4 +-
 version/version.go                                 |  4 +-
 13 files changed, 36 insertions(+), 77 deletions(-)

diff --git a/config/crd/bases/solr.apache.org_solrbackups.yaml 
b/config/crd/bases/solr.apache.org_solrbackups.yaml
index 562aba2..23c3bad 100644
--- a/config/crd/bases/solr.apache.org_solrbackups.yaml
+++ b/config/crd/bases/solr.apache.org_solrbackups.yaml
@@ -17,7 +17,7 @@ apiVersion: apiextensions.k8s.io/v1
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.9.0
+    operator.solr.apache.org/version: v0.9.1-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.16.4
   name: solrbackups.solr.apache.org
diff --git a/config/crd/bases/solr.apache.org_solrclouds.yaml 
b/config/crd/bases/solr.apache.org_solrclouds.yaml
index 9826c1d..4f075de 100644
--- a/config/crd/bases/solr.apache.org_solrclouds.yaml
+++ b/config/crd/bases/solr.apache.org_solrclouds.yaml
@@ -17,7 +17,7 @@ apiVersion: apiextensions.k8s.io/v1
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.9.0
+    operator.solr.apache.org/version: v0.9.1-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.16.4
   name: solrclouds.solr.apache.org
diff --git a/config/crd/bases/solr.apache.org_solrprometheusexporters.yaml 
b/config/crd/bases/solr.apache.org_solrprometheusexporters.yaml
index ed7e846..279afee 100644
--- a/config/crd/bases/solr.apache.org_solrprometheusexporters.yaml
+++ b/config/crd/bases/solr.apache.org_solrprometheusexporters.yaml
@@ -17,7 +17,7 @@ apiVersion: apiextensions.k8s.io/v1
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.9.0
+    operator.solr.apache.org/version: v0.9.1-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.16.4
   name: solrprometheusexporters.solr.apache.org
diff --git a/docs/local_tutorial.md b/docs/local_tutorial.md
index f292373..7f30477 100644
--- a/docs/local_tutorial.md
+++ b/docs/local_tutorial.md
@@ -90,9 +90,9 @@ This will install the [Zookeeper 
Operator](https://github.com/pravega/zookeeper-
 
 ```bash
 # Install the Solr & Zookeeper CRDs
-$ kubectl create -f 
https://solr.apache.org/operator/downloads/crds/v0.9.0/all-with-dependencies.yaml
+$ kubectl create -f 
https://solr.apache.org/operator/downloads/crds/v0.9.1-prerelease/all-with-dependencies.yaml
 # Install the Solr operator and Zookeeper Operator
-$ helm install solr-operator apache-solr/solr-operator --version 0.9.0
+$ helm install solr-operator apache-solr/solr-operator --version 
0.9.1-prerelease
 ```
 
 _Note that the Helm chart version does not contain a `v` prefix, which the 
downloads version does. The Helm chart version is the only part of the Solr 
Operator release that does not use the `v` prefix._
@@ -123,7 +123,7 @@ To start a Solr Cloud cluster, we will create a yaml that 
will tell the Solr Ope
 
 ```bash
 # Create a 3-node cluster v8.11 with 300m Heap each:
-helm install example-solr apache-solr/solr --version 0.9.0 \
+helm install example-solr apache-solr/solr --version 0.9.1-prerelease \
   --set image.tag=8.11 \
   --set solrOptions.javaMemory="-Xms300m -Xmx300m" \
   --set addressability.external.method=Ingress \
@@ -211,7 +211,7 @@ So we wish to upgrade to a newer Solr version:
 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.
-helm upgrade example-solr apache-solr/solr --version 0.9.0 \
+helm upgrade example-solr apache-solr/solr --version 0.9.1-prerelease \
   --reuse-values \
   --set image.tag=8.7
 
diff --git a/docs/running-the-operator.md b/docs/running-the-operator.md
index 8dc591b..949e2a5 100644
--- a/docs/running-the-operator.md
+++ b/docs/running-the-operator.md
@@ -38,8 +38,8 @@ Next, install the Solr Operator chart. Note this is using 
Helm v3, use the offic
 This will install the [Zookeeper 
Operator](https://github.com/pravega/zookeeper-operator) by default.
 
 ```bash
-$ kubectl create -f 
https://solr.apache.org/operator/downloads/crds/v0.9.0/all-with-dependencies.yaml
-$ helm install solr-operator apache-solr/solr-operator --version 0.9.0
+$ kubectl create -f 
https://solr.apache.org/operator/downloads/crds/v0.9.1-prerelease/all-with-dependencies.yaml
+$ helm install solr-operator apache-solr/solr-operator --version 
0.9.1-prerelease
 ```
 
 _Note that the Helm chart version does not contain a `v` prefix, which the 
downloads version does. The Helm chart version is the only part of the Solr 
Operator release that does not use the `v` prefix._
diff --git a/docs/upgrade-notes.md b/docs/upgrade-notes.md
index b9b4282..86f28d7 100644
--- a/docs/upgrade-notes.md
+++ b/docs/upgrade-notes.md
@@ -113,8 +113,8 @@ If you are using the Solr Helm chart to deploy the 
Zookeeper operator, then you
 
 ```bash
 # Just replace the Solr CRDs and all CRDs it might depend on (e.g. 
ZookeeperCluster)
-kubectl replace -f 
"http://solr.apache.org/operator/downloads/crds/v0.9.0/all-with-dependencies.yaml";
-helm upgrade solr-operator apache-solr/solr-operator --version 0.9.0
+kubectl replace -f 
"http://solr.apache.org/operator/downloads/crds/v0.9.1-prerelease/all-with-dependencies.yaml";
+helm upgrade solr-operator apache-solr/solr-operator --version 0.9.1-prerelease
 ```
 
 _Note that the Helm chart version does not contain a `v` prefix, which the 
downloads version does. The Helm chart version is the only part of the Solr 
Operator release that does not use the `v` prefix._
diff --git a/helm/solr-operator/Chart.yaml b/helm/solr-operator/Chart.yaml
index 17d3e7b..d14fd98 100644
--- a/helm/solr-operator/Chart.yaml
+++ b/helm/solr-operator/Chart.yaml
@@ -15,8 +15,8 @@
 apiVersion: v2
 name: solr-operator
 description: The Solr Operator enables easy management of Solr resources 
within Kubernetes.
-version: 0.9.0
-appVersion: v0.9.0
+version: 0.9.1-prerelease
+appVersion: v0.9.1-prerelease
 kubeVersion: ">= 1.22.0-0"
 home: https://solr.apache.org/operator
 sources:
@@ -42,73 +42,32 @@ annotations:
   artifacthub.io/category: "database"
   artifacthub.io/operator: "true"
   artifacthub.io/operatorCapabilities: Full Lifecycle
-  artifacthub.io/prerelease: "false"
+  artifacthub.io/prerelease: "true"
   artifacthub.io/recommendations: |
     - url: https://artifacthub.io/packages/helm/apache-solr/solr
   artifacthub.io/links: |
     - name: "Tutorials"
       url: https://solr.apache.org/operator/resources#tutorials
   artifacthub.io/signKey: |
-    fingerprint: E05FDF113D89E7FB4A2DF4B2684D544160392455
+    fingerprint: <fingerprint>
     url: https://dist.apache.org/repos/dist/release/solr/KEYS
   # Add change log for a single release here.
   # Allowed syntax is described at: 
https://artifacthub.io/docs/topics/annotations/helm/#example
   # 'kind' accepts values: "added", "changed", "deprecated", "removed", 
"fixed" and "security"
   artifacthub.io/changes: |
-    - kind: fixed
-      description: gen-pkcs12-keystore initContainer now supports 
'ca.crt'-less TLS secrets
-      links:
-        - name: Github Issue
-          url: https://github.com/apache/solr-operator/issues/684
-        - name: Github PR
-          url: https://github.com/apache/solr-operator/pull/685
     - kind: added
-      description: SolrClouds now support namespace sharing among pod 
containers in a pod.
+      description: Addition 1
       links:
         - name: Github Issue
-          url: https://github.com/apache/solr-operator/issues/716
-        - name: Github PR
-          url: https://github.com/apache/solr-operator/pull/735
+          url: https://github.com/issue-url
     - kind: changed
-      description: SolrClouds now support auto-readOnlyRootFilesystem setting.
-      links:
-        - name: Github Issue
-          url: https://github.com/apache/solr-operator/issues/624
-        - name: Github PR
-          url: https://github.com/apache/solr-operator/pull/648
-    - kind: fixed
-      description: setup-zk initContainer now gracefully handles absent 
security.json on initial upload.
+      description: Change 2
       links:
-        - name: Github Issue
-          url: https://github.com/apache/solr-operator/issues/720
-        - name: Additional Github Issue
-          url: https://github.com/apache/solr-operator/issues/731
-        - name: Github PR
-          url: https://github.com/apache/solr-operator/pull/738
-    - kind: added
-      description: "'imagePullSecret' now used when fetching operator image, 
if provided."
-      links:
-        - name: Github Issue
-          url: https://github.com/apache/solr-operator/issues/718
-        - name: Github PR
-          url: https://github.com/apache/solr-operator/pull/734
-    - kind: added
-      description: "SolrCloud now accepts container-level securityContext 
settings for Solr container."
-      links:
-        - name: Github Issue
-          url: https://github.com/apache/solr-operator/issues/489
-        - name: Github PR
-          url: https://github.com/apache/solr-operator/pull/743
-    - kind: fixed
-      description: The operator will now delete ingress and per-node services 
when external ingress is disabled.
-      links:
-        - name: Github Issue
-          url: https://github.com/apache/solr-operator/issues/673
         - name: Github PR
-          url: https://github.com/apache/solr-operator/pull/674
+          url: https://github.com/pr-url
   artifacthub.io/images: |
     - name: solr-operator
-      image: apache/solr-operator:v0.9.0
+      image: apache/solr-operator:v0.9.1-prerelease
   artifacthub.io/crds: |
     - kind: SolrCloud
       version: v1beta1
diff --git a/helm/solr-operator/README.md b/helm/solr-operator/README.md
index 00ca40e..5f39cf0 100644
--- a/helm/solr-operator/README.md
+++ b/helm/solr-operator/README.md
@@ -43,8 +43,8 @@ helm repo add apache-solr https://solr.apache.org/charts
 To install the Solr Operator for the first time in your cluster, you can use 
the latest version or a specific version, run with the following commands:
 
 ```bash
-kubectl create -f 
https://solr.apache.org/operator/downloads/crds/v0.9.0/all-with-dependencies.yaml
-helm install solr-operator apache-solr/solr-operator --version 0.9.0
+kubectl create -f 
https://solr.apache.org/operator/downloads/crds/v0.9.1-prerelease/all-with-dependencies.yaml
+helm install solr-operator apache-solr/solr-operator --version 0.9.1-prerelease
 ```
 
 The command deploys the solr-operator on the Kubernetes cluster with the 
default configuration.
@@ -57,8 +57,8 @@ _Note that the Helm chart version does not contain a `v` 
prefix, which the downl
 If you are upgrading your Solr Operator deployment, you should always use a 
specific version of the chart and pre-install the Solr CRDS:
 
 ```bash
-kubectl replace -f 
https://solr.apache.org/operator/downloads/crds/v0.9.0/all-with-dependencies.yaml
-helm upgrade solr-operator apache-solr/solr-operator --version 0.9.0
+kubectl replace -f 
https://solr.apache.org/operator/downloads/crds/v0.9.1-prerelease/all-with-dependencies.yaml
+helm upgrade solr-operator apache-solr/solr-operator --version 0.9.1-prerelease
 ```
 
 #### Namespaces
@@ -172,7 +172,7 @@ The command removes all the Kubernetes components 
associated with the chart and
 | Key | Type | Default | Description |
 |-----|------|---------|-------------|
 | image.repository | string | `"apache/solr-operator"` | The repository of the 
Solr Operator image |
-| image.tag | string | `"v0.9.0"` | The tag/version of the Solr Operator to 
run |
+| image.tag | string | `"v0.9.1-prerelease"` | The tag/version of the Solr 
Operator to run |
 | image.pullPolicy | string | `"IfNotPresent"` |  |
 | image.imagePullSecret | string | `""` | PullSecret for the Solr Operator 
image |
 | fullnameOverride | string | `""` | A custom name for the Solr Operator 
Deployment |
diff --git a/helm/solr-operator/crds/crds.yaml 
b/helm/solr-operator/crds/crds.yaml
index aeca387..8927ca9 100644
--- a/helm/solr-operator/crds/crds.yaml
+++ b/helm/solr-operator/crds/crds.yaml
@@ -17,7 +17,7 @@ apiVersion: apiextensions.k8s.io/v1
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.9.0
+    operator.solr.apache.org/version: v0.9.1-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.16.4
   name: solrbackups.solr.apache.org
@@ -275,7 +275,7 @@ apiVersion: apiextensions.k8s.io/v1
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.9.0
+    operator.solr.apache.org/version: v0.9.1-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.16.4
   name: solrclouds.solr.apache.org
@@ -17870,7 +17870,7 @@ apiVersion: apiextensions.k8s.io/v1
 kind: CustomResourceDefinition
 metadata:
   annotations:
-    operator.solr.apache.org/version: v0.9.0
+    operator.solr.apache.org/version: v0.9.1-prerelease
     argocd.argoproj.io/sync-options: Replace=true
     controller-gen.kubebuilder.io/version: v0.16.4
   name: solrprometheusexporters.solr.apache.org
diff --git a/helm/solr-operator/values.yaml b/helm/solr-operator/values.yaml
index 3af5f21..5c92b43 100644
--- a/helm/solr-operator/values.yaml
+++ b/helm/solr-operator/values.yaml
@@ -21,7 +21,7 @@ replicaCount: 1
 
 image:
   repository: apache/solr-operator
-  tag: v0.9.0
+  tag: v0.9.1-prerelease
   pullPolicy: IfNotPresent
   imagePullSecret: ""
 
diff --git a/helm/solr/Chart.yaml b/helm/solr/Chart.yaml
index 534fc8e..84ae561 100644
--- a/helm/solr/Chart.yaml
+++ b/helm/solr/Chart.yaml
@@ -15,7 +15,7 @@
 apiVersion: v2
 name: solr
 description: A SolrCloud cluster running on Kubernetes via the Solr Operator
-version: 0.9.0
+version: 0.9.1-prerelease
 appVersion: 8.11.1
 kubeVersion: ">= 1.22.0-0"
 home: https://solr.apache.org
@@ -37,7 +37,7 @@ annotations:
   artifacthub.io/alternativeName: "solrcloud"
   artifacthub.io/category: "database"
   artifacthub.io/operator: "false"
-  artifacthub.io/prerelease: "false"
+  artifacthub.io/prerelease: "true"
   # Add change log for a single release here.
   # Allowed syntax is described at: 
https://artifacthub.io/docs/topics/annotations/helm/#example
   artifacthub.io/changes: |
@@ -68,5 +68,5 @@ annotations:
       image: solr:8.11
       whitelisted: true
   artifacthub.io/signKey: |
-    fingerprint: E05FDF113D89E7FB4A2DF4B2684D544160392455
+    fingerprint: <fingerprint>
     url: https://dist.apache.org/repos/dist/release/solr/KEYS
diff --git a/helm/solr/README.md b/helm/solr/README.md
index 525ed89..cb32704 100644
--- a/helm/solr/README.md
+++ b/helm/solr/README.md
@@ -36,7 +36,7 @@ There may be breaking changes between the version you are 
using and the version
 To install a SolrCloud for the first time in your cluster, you can use the 
latest version or a specific version, run with the following commands:
 
 ```bash
-helm install example apache-solr/solr --version 0.9.0 --set image.tag=8.8
+helm install example apache-solr/solr --version 0.9.1-prerelease --set 
image.tag=8.8
 ```
 
 The command deploys a SolrCloud object on the Kubernetes cluster with the 
default configuration.
@@ -50,7 +50,7 @@ _Note that the Helm chart version does not contain a `v` 
prefix, which the Solr
 If you are upgrading your SolrCloud deployment, you should always use a 
specific version of the chart and upgrade **after [upgrading the Solr 
Operator](https://artifacthub.io/packages/helm/apache-solr/solr-operator#upgrading-the-solr-operator)
 to the same version**:
 
 ```bash
-helm upgrade example apache-solr/solr --version 0.9.0 --reuse-values --set 
image.tag=8.11
+helm upgrade example apache-solr/solr --version 0.9.1-prerelease 
--reuse-values --set image.tag=8.11
 ```
 
 The upgrade will be done according to the `upgradeStrategy.method` chosen in 
the values.
diff --git a/version/version.go b/version/version.go
index c07b955..e30e820 100644
--- a/version/version.go
+++ b/version/version.go
@@ -19,8 +19,8 @@ package version
 
 var (
        // Version information for the Solr Operator
-       Version       = "v0.9.0"
-       VersionSuffix = ""
+       Version       = "v0.9.1"
+       VersionSuffix = "prerelease"
        BuildTime     string
        GitSHA        string
 )

Reply via email to