Skip to content

Commit

Permalink
feat(solr): Minor updates to Solr Operator template
Browse files Browse the repository at this point in the history
  • Loading branch information
sylus committed May 10, 2024
1 parent a0dcbaa commit 0076841
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion charts/solr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.1.8
version: 0.1.9

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
4 changes: 2 additions & 2 deletions charts/solr/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# solr

![Version: 0.1.8](https://img.shields.io/badge/Version-0.1.8-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.11.3](https://img.shields.io/badge/AppVersion-8.11.3-informational?style=flat-square)
![Version: 0.1.9](https://img.shields.io/badge/Version-0.1.9-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.11.3](https://img.shields.io/badge/AppVersion-8.11.3-informational?style=flat-square)

A Helm chart for a Solr instance using the official Solr Operator.

Expand All @@ -16,11 +16,11 @@ A Helm chart for a Solr instance using the official Solr Operator.
| ingress.path | string | `"/.*"` | |
| ingress.pathType | string | `"ImplementationSpecific"` | |
| ingress.tls | list | `[]` | |
| replicas | int | `1` | |
| solr.basicAuthSecret | string | `nil` | |
| solr.replicas | int | `1` | |
| solr.solrJavaMem | string | `"-Xms1g -Xmx5g"` | |
| solr.storage.size | string | `"5Gi"` | |
| zookeeper.replicas | int | `1` | |
| zookeeper.resources | object | `{}` | |
| zookeeper.storage.size | string | `"5Gi"` | |

Expand Down
2 changes: 1 addition & 1 deletion charts/solr/templates/solrcloud/solr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ spec:
resources:
requests:
storage: "{{ .Values.zookeeper.storage.size }}"
replicas: {{ .Values.replicas }}
replicas: {{ .Values.zookeeper.replicas }}
{{- if .Values.zookeeper.resources }}
zookeeperPodPolicy:
resources:
Expand Down
5 changes: 1 addition & 4 deletions charts/solr/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ solr:
size: 5Gi

zookeeper:
replicas: 1
resources: {}
# limits:
# memory: 2Gi
Expand All @@ -54,7 +55,3 @@ zookeeper:
destinationRule:
enabled: false
mode: DISABLE

## Solr
## Ref: https://github.com/drupalwxt/helm-drupal/tree/master/solr
replicas: 1

0 comments on commit 0076841

Please sign in to comment.