You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: helm/solr-operator/README.md
+38-11Lines changed: 38 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,19 +31,34 @@ If you do not wish to use the Zookeeper Operator, set:
31
31
-`zookeeper-operator.use: false`
32
32
33
33
34
-
### Adding the Solr Operator Helm Chart Repository
35
-
You should only need to add the solr operator helm chart repository once, by running the following command:
34
+
### Installing the Chart
35
+
36
+
The Solr Operator Helm chart can be installed using either the OCI registry (recommended) or the traditional HTTPS repository.
37
+
38
+
#### Installation via OCI Registry (Recommended)
39
+
40
+
The Helm chart is available directly from Docker Hub as an OCI artifact, which provides a more reliable distribution mechanism and doesn't require adding a repository.
#### Installation via HTTPS Repository (Traditional)
42
51
43
-
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:
52
+
If you prefer the traditional method, you can add the Helm repository and install from there.
Copy file name to clipboardExpand all lines: helm/solr/README.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -33,9 +33,15 @@ There may be breaking changes between the version you are using and the version
33
33
34
34
### Installing the Chart
35
35
36
-
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:
36
+
The Solr Helm chart can be installed using either the OCI registry (recommended) or the traditional HTTPS helm repository.
37
+
38
+
To install a SolrCloud for the first time in your cluster, you can use the latest version or a specific version:
37
39
38
40
```bash
41
+
# Via OCI registry (recommended)
42
+
helm install example oci://docker.io/apache/solr-chart --version 0.10.0-prerelease --set image.tag=9.10.0
43
+
44
+
# Or via HTTPS helm repository (traditional)
39
45
helm install example apache-solr/solr --version 0.10.0-prerelease --set image.tag=9.10.0
40
46
```
41
47
@@ -50,6 +56,10 @@ _Note that the Helm chart version does not contain a `v` prefix, which the Solr
50
56
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**:
51
57
52
58
```bash
59
+
# Via OCI registry (recommended)
60
+
helm upgrade example oci://docker.io/apache/solr-chart --version 0.10.0-prerelease --reuse-values --set image.tag=9.10.0
61
+
62
+
# Or via HTTPS repository (traditional)
53
63
helm upgrade example apache-solr/solr --version 0.10.0-prerelease --reuse-values --set image.tag=9.10.0
0 commit comments