diff --git a/helm/solr-operator/Chart.yaml b/helm/solr-operator/Chart.yaml index fcbffad9..1763ecdb 100644 --- a/helm/solr-operator/Chart.yaml +++ b/helm/solr-operator/Chart.yaml @@ -16,8 +16,8 @@ apiVersion: v2 name: solr-operator description: The Solr Operator enables easy management of Solr resources within Kubernetes. -version: 0.3.0-prerelease -appVersion: v0.3.0-prerelease +version: 0.3.0 +appVersion: v0.3.0 kubeVersion: ">= 1.16.0-0" home: https://github.com/apache/solr-operator sources: @@ -42,7 +42,7 @@ dependencies: annotations: artifacthub.io/operator: "true" artifacthub.io/operatorCapabilities: Seamless Upgrades - artifacthub.io/prerelease: "true" + artifacthub.io/prerelease: "false" # Add change log for a single release here, only single-layered bulleted list allowed. artifacthub.io/changes: | - The Solr Operator is now an Apache project managed by the Apache Solr PMC. @@ -59,7 +59,7 @@ annotations: - SolrCloud can now be used with the Kubernetes HPA to autoscale Solr Cloud pods. artifacthub.io/images: | - name: solr-operator - image: apache/solr-operator:v0.3.0-prerelease + image: apache/solr-operator:v0.3.0 artifacthub.io/crds: | - kind: SolrCloud version: v1beta1 diff --git a/helm/solr-operator/README.md b/helm/solr-operator/README.md index 68584a50..92adcf2c 100644 --- a/helm/solr-operator/README.md +++ b/helm/solr-operator/README.md @@ -41,8 +41,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.3.0-prerelease/all-with-dependencies.yaml -helm install solr-operator apache-solr/solr-operator --version 0.3.0-prerelease +kubectl create -f https://solr.apache.org/operator/downloads/crds/v0.3.0/all-with-dependencies.yaml +helm install solr-operator apache-solr/solr-operator --version 0.3.0 ``` 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 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.3.0-prerelease/all-with-dependencies.yaml -helm upgrade solr-operator apache-solr/solr-operator --version 0.3.0-prerelease +kubectl replace -f https://solr.apache.org/operator/downloads/crds/v0.3.0/all-with-dependencies.yaml +helm upgrade solr-operator apache-solr/solr-operator --version 0.3.0 ``` #### Namespaces @@ -168,7 +168,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.3.0-prerelease"` | The tag/version of the Solr Operator to run | +| image.tag | string | `"v0.3.0"` | The tag/version of the Solr Operator to run | | image.pullPolicy | string | `"IfNotPresent"` | | | fullnameOverride | string | `""` | A custom name for the Solr Operator Deployment | | nameOverride | string | `""` | | diff --git a/helm/solr-operator/values.yaml b/helm/solr-operator/values.yaml index 2cc2a8fb..60a539a5 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.3.0-prerelease + tag: v0.3.0 pullPolicy: IfNotPresent nameOverride: "" @@ -78,4 +78,4 @@ mTLS: clientCertSecret: "" caCertSecret: "" caCertSecretKey: ca-cert.pem - insecureSkipVerify: true \ No newline at end of file + insecureSkipVerify: true diff --git a/version/version.go b/version/version.go index 48a3406c..767d17dc 100644 --- a/version/version.go +++ b/version/version.go @@ -20,7 +20,7 @@ package version var ( // Version information for the Solr Operator Version string = "v0.3.0" - VersionSuffix string = "prerelease" + VersionSuffix string = "" BuildTime string GitSHA string )