Skip to content

Commit

Permalink
Solr Operator v0.3.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
HoustonPutman committed Apr 23, 2021
1 parent ee969fc commit f3cde99
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions helm/solr-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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.
Expand All @@ -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
Expand Down
10 changes: 5 additions & 5 deletions helm/solr-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
Expand Down Expand Up @@ -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 | `""` | |
Expand Down
4 changes: 2 additions & 2 deletions helm/solr-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ replicaCount: 1

image:
repository: apache/solr-operator
tag: v0.3.0-prerelease
tag: v0.3.0
pullPolicy: IfNotPresent

nameOverride: ""
Expand Down Expand Up @@ -78,4 +78,4 @@ mTLS:
clientCertSecret: ""
caCertSecret: ""
caCertSecretKey: ca-cert.pem
insecureSkipVerify: true
insecureSkipVerify: true
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
)

0 comments on commit f3cde99

Please sign in to comment.