Skip to content

Commit c2dd334

Browse files
committed
Solr Operator v0.9.0 Release
1 parent 89864bf commit c2dd334

13 files changed

+31
-31
lines changed

config/crd/bases/solr.apache.org_solrbackups.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apiVersion: apiextensions.k8s.io/v1
1717
kind: CustomResourceDefinition
1818
metadata:
1919
annotations:
20-
operator.solr.apache.org/version: v0.9.0-prerelease
20+
operator.solr.apache.org/version: v0.9.0
2121
argocd.argoproj.io/sync-options: Replace=true
2222
controller-gen.kubebuilder.io/version: v0.16.4
2323
name: solrbackups.solr.apache.org

config/crd/bases/solr.apache.org_solrclouds.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apiVersion: apiextensions.k8s.io/v1
1717
kind: CustomResourceDefinition
1818
metadata:
1919
annotations:
20-
operator.solr.apache.org/version: v0.9.0-prerelease
20+
operator.solr.apache.org/version: v0.9.0
2121
argocd.argoproj.io/sync-options: Replace=true
2222
controller-gen.kubebuilder.io/version: v0.16.4
2323
name: solrclouds.solr.apache.org

config/crd/bases/solr.apache.org_solrprometheusexporters.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apiVersion: apiextensions.k8s.io/v1
1717
kind: CustomResourceDefinition
1818
metadata:
1919
annotations:
20-
operator.solr.apache.org/version: v0.9.0-prerelease
20+
operator.solr.apache.org/version: v0.9.0
2121
argocd.argoproj.io/sync-options: Replace=true
2222
controller-gen.kubebuilder.io/version: v0.16.4
2323
name: solrprometheusexporters.solr.apache.org

docs/local_tutorial.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -90,9 +90,9 @@ This will install the [Zookeeper Operator](https://github.com/pravega/zookeeper-
9090

9191
```bash
9292
# Install the Solr & Zookeeper CRDs
93-
$ kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.9.0-prerelease/all-with-dependencies.yaml
93+
$ kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.9.0/all-with-dependencies.yaml
9494
# Install the Solr operator and Zookeeper Operator
95-
$ helm install solr-operator apache-solr/solr-operator --version 0.9.0-prerelease
95+
$ helm install solr-operator apache-solr/solr-operator --version 0.9.0
9696
```
9797

9898
_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
123123

124124
```bash
125125
# Create a 3-node cluster v8.11 with 300m Heap each:
126-
helm install example-solr apache-solr/solr --version 0.9.0-prerelease \
126+
helm install example-solr apache-solr/solr --version 0.9.0 \
127127
--set image.tag=8.11 \
128128
--set solrOptions.javaMemory="-Xms300m -Xmx300m" \
129129
--set addressability.external.method=Ingress \
@@ -211,7 +211,7 @@ So we wish to upgrade to a newer Solr version:
211211
curl -s http://default-example-solrcloud.ing.local.domain/solr/admin/info/system | grep solr-i
212212
213213
# Update the solrCloud configuration with the new version, keeping all previous settings and the number of nodes set by the autoscaler.
214-
helm upgrade example-solr apache-solr/solr --version 0.9.0-prerelease \
214+
helm upgrade example-solr apache-solr/solr --version 0.9.0 \
215215
--reuse-values \
216216
--set image.tag=8.7
217217

docs/running-the-operator.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ Next, install the Solr Operator chart. Note this is using Helm v3, use the offic
3838
This will install the [Zookeeper Operator](https://github.com/pravega/zookeeper-operator) by default.
3939

4040
```bash
41-
$ kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.9.0-prerelease/all-with-dependencies.yaml
42-
$ helm install solr-operator apache-solr/solr-operator --version 0.9.0-prerelease
41+
$ kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.9.0/all-with-dependencies.yaml
42+
$ helm install solr-operator apache-solr/solr-operator --version 0.9.0
4343
```
4444

4545
_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._

docs/upgrade-notes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ If you are using the Solr Helm chart to deploy the Zookeeper operator, then you
113113

114114
```bash
115115
# Just replace the Solr CRDs and all CRDs it might depend on (e.g. ZookeeperCluster)
116-
kubectl replace -f "http://solr.apache.org/operator/downloads/crds/v0.9.0-prerelease/all-with-dependencies.yaml"
117-
helm upgrade solr-operator apache-solr/solr-operator --version 0.9.0-prerelease
116+
kubectl replace -f "http://solr.apache.org/operator/downloads/crds/v0.9.0/all-with-dependencies.yaml"
117+
helm upgrade solr-operator apache-solr/solr-operator --version 0.9.0
118118
```
119119

120120
_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._

helm/solr-operator/Chart.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
apiVersion: v2
1616
name: solr-operator
1717
description: The Solr Operator enables easy management of Solr resources within Kubernetes.
18-
version: 0.9.0-prerelease
19-
appVersion: v0.9.0-prerelease
18+
version: 0.9.0
19+
appVersion: v0.9.0
2020
kubeVersion: ">= 1.22.0-0"
2121
home: https://solr.apache.org/operator
2222
sources:
@@ -42,14 +42,14 @@ annotations:
4242
artifacthub.io/category: "database"
4343
artifacthub.io/operator: "true"
4444
artifacthub.io/operatorCapabilities: Full Lifecycle
45-
artifacthub.io/prerelease: "true"
45+
artifacthub.io/prerelease: "false"
4646
artifacthub.io/recommendations: |
4747
- url: https://artifacthub.io/packages/helm/apache-solr/solr
4848
artifacthub.io/links: |
4949
- name: "Tutorials"
5050
url: https://solr.apache.org/operator/resources#tutorials
5151
artifacthub.io/signKey: |
52-
fingerprint: <fingerprint>
52+
fingerprint: E05FDF113D89E7FB4A2DF4B2684D544160392455
5353
url: https://dist.apache.org/repos/dist/release/solr/KEYS
5454
# Add change log for a single release here.
5555
# Allowed syntax is described at: https://artifacthub.io/docs/topics/annotations/helm/#example
@@ -108,7 +108,7 @@ annotations:
108108
url: https://github.com/apache/solr-operator/pull/674
109109
artifacthub.io/images: |
110110
- name: solr-operator
111-
image: apache/solr-operator:v0.9.0-prerelease
111+
image: apache/solr-operator:v0.9.0
112112
artifacthub.io/crds: |
113113
- kind: SolrCloud
114114
version: v1beta1

helm/solr-operator/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ helm repo add apache-solr https://solr.apache.org/charts
4343
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:
4444

4545
```bash
46-
kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.9.0-prerelease/all-with-dependencies.yaml
47-
helm install solr-operator apache-solr/solr-operator --version 0.9.0-prerelease
46+
kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.9.0/all-with-dependencies.yaml
47+
helm install solr-operator apache-solr/solr-operator --version 0.9.0
4848
```
4949

5050
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
5757
If you are upgrading your Solr Operator deployment, you should always use a specific version of the chart and pre-install the Solr CRDS:
5858

5959
```bash
60-
kubectl replace -f https://solr.apache.org/operator/downloads/crds/v0.9.0-prerelease/all-with-dependencies.yaml
61-
helm upgrade solr-operator apache-solr/solr-operator --version 0.9.0-prerelease
60+
kubectl replace -f https://solr.apache.org/operator/downloads/crds/v0.9.0/all-with-dependencies.yaml
61+
helm upgrade solr-operator apache-solr/solr-operator --version 0.9.0
6262
```
6363

6464
#### Namespaces
@@ -172,7 +172,7 @@ The command removes all the Kubernetes components associated with the chart and
172172
| Key | Type | Default | Description |
173173
|-----|------|---------|-------------|
174174
| image.repository | string | `"apache/solr-operator"` | The repository of the Solr Operator image |
175-
| image.tag | string | `"v0.9.0-prerelease"` | The tag/version of the Solr Operator to run |
175+
| image.tag | string | `"v0.9.0"` | The tag/version of the Solr Operator to run |
176176
| image.pullPolicy | string | `"IfNotPresent"` | |
177177
| image.imagePullSecret | string | `""` | PullSecret for the Solr Operator image |
178178
| fullnameOverride | string | `""` | A custom name for the Solr Operator Deployment |

helm/solr-operator/crds/crds.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ apiVersion: apiextensions.k8s.io/v1
1717
kind: CustomResourceDefinition
1818
metadata:
1919
annotations:
20-
operator.solr.apache.org/version: v0.9.0-prerelease
20+
operator.solr.apache.org/version: v0.9.0
2121
argocd.argoproj.io/sync-options: Replace=true
2222
controller-gen.kubebuilder.io/version: v0.16.4
2323
name: solrbackups.solr.apache.org
@@ -275,7 +275,7 @@ apiVersion: apiextensions.k8s.io/v1
275275
kind: CustomResourceDefinition
276276
metadata:
277277
annotations:
278-
operator.solr.apache.org/version: v0.9.0-prerelease
278+
operator.solr.apache.org/version: v0.9.0
279279
argocd.argoproj.io/sync-options: Replace=true
280280
controller-gen.kubebuilder.io/version: v0.16.4
281281
name: solrclouds.solr.apache.org
@@ -17870,7 +17870,7 @@ apiVersion: apiextensions.k8s.io/v1
1787017870
kind: CustomResourceDefinition
1787117871
metadata:
1787217872
annotations:
17873-
operator.solr.apache.org/version: v0.9.0-prerelease
17873+
operator.solr.apache.org/version: v0.9.0
1787417874
argocd.argoproj.io/sync-options: Replace=true
1787517875
controller-gen.kubebuilder.io/version: v0.16.4
1787617876
name: solrprometheusexporters.solr.apache.org

helm/solr-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ replicaCount: 1
2121

2222
image:
2323
repository: apache/solr-operator
24-
tag: v0.9.0-prerelease
24+
tag: v0.9.0
2525
pullPolicy: IfNotPresent
2626
imagePullSecret: ""
2727

0 commit comments

Comments
 (0)