Skip to content

Commit f3cde99

Browse files
committed
Solr Operator v0.3.0 Release
1 parent ee969fc commit f3cde99

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

helm/solr-operator/Chart.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
apiVersion: v2
1717
name: solr-operator
1818
description: The Solr Operator enables easy management of Solr resources within Kubernetes.
19-
version: 0.3.0-prerelease
20-
appVersion: v0.3.0-prerelease
19+
version: 0.3.0
20+
appVersion: v0.3.0
2121
kubeVersion: ">= 1.16.0-0"
2222
home: https://github.com/apache/solr-operator
2323
sources:
@@ -42,7 +42,7 @@ dependencies:
4242
annotations:
4343
artifacthub.io/operator: "true"
4444
artifacthub.io/operatorCapabilities: Seamless Upgrades
45-
artifacthub.io/prerelease: "true"
45+
artifacthub.io/prerelease: "false"
4646
# Add change log for a single release here, only single-layered bulleted list allowed.
4747
artifacthub.io/changes: |
4848
- The Solr Operator is now an Apache project managed by the Apache Solr PMC.
@@ -59,7 +59,7 @@ annotations:
5959
- SolrCloud can now be used with the Kubernetes HPA to autoscale Solr Cloud pods.
6060
artifacthub.io/images: |
6161
- name: solr-operator
62-
image: apache/solr-operator:v0.3.0-prerelease
62+
image: apache/solr-operator:v0.3.0
6363
artifacthub.io/crds: |
6464
- kind: SolrCloud
6565
version: v1beta1

helm/solr-operator/README.md

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

4343
```bash
44-
kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.3.0-prerelease/all-with-dependencies.yaml
45-
helm install solr-operator apache-solr/solr-operator --version 0.3.0-prerelease
44+
kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.3.0/all-with-dependencies.yaml
45+
helm install solr-operator apache-solr/solr-operator --version 0.3.0
4646
```
4747

4848
The command deploys the solr-operator on the Kubernetes cluster with the default configuration.
@@ -55,8 +55,8 @@ _Note that the Helm chart version does not contain a `v` prefix, which the downl
5555
If you are upgrading your Solr Operator deployment, you should always use a specific version of the chart and pre-install the Solr CRDS:
5656

5757
```bash
58-
kubectl replace -f https://solr.apache.org/operator/downloads/crds/v0.3.0-prerelease/all-with-dependencies.yaml
59-
helm upgrade solr-operator apache-solr/solr-operator --version 0.3.0-prerelease
58+
kubectl replace -f https://solr.apache.org/operator/downloads/crds/v0.3.0/all-with-dependencies.yaml
59+
helm upgrade solr-operator apache-solr/solr-operator --version 0.3.0
6060
```
6161

6262
#### Namespaces
@@ -168,7 +168,7 @@ The command removes all the Kubernetes components associated with the chart and
168168
| Key | Type | Default | Description |
169169
|-----|------|---------|-------------|
170170
| image.repository | string | `"apache/solr-operator"` | The repository of the Solr Operator image |
171-
| image.tag | string | `"v0.3.0-prerelease"` | The tag/version of the Solr Operator to run |
171+
| image.tag | string | `"v0.3.0"` | The tag/version of the Solr Operator to run |
172172
| image.pullPolicy | string | `"IfNotPresent"` | |
173173
| fullnameOverride | string | `""` | A custom name for the Solr Operator Deployment |
174174
| nameOverride | string | `""` | |

helm/solr-operator/values.yaml

Lines changed: 2 additions & 2 deletions
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.3.0-prerelease
24+
tag: v0.3.0
2525
pullPolicy: IfNotPresent
2626

2727
nameOverride: ""
@@ -78,4 +78,4 @@ mTLS:
7878
clientCertSecret: ""
7979
caCertSecret: ""
8080
caCertSecretKey: ca-cert.pem
81-
insecureSkipVerify: true
81+
insecureSkipVerify: true

version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ package version
2020
var (
2121
// Version information for the Solr Operator
2222
Version string = "v0.3.0"
23-
VersionSuffix string = "prerelease"
23+
VersionSuffix string = ""
2424
BuildTime string
2525
GitSHA string
2626
)

0 commit comments

Comments
 (0)