This is an automated email from the ASF dual-hosted git repository.
rkk pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/sdap-nexus.git
The following commit(s) were added to refs/heads/develop by this push:
new be6c4c2 SDAP-513 - Configurable Solr init pod image in helm (#306)
be6c4c2 is described below
commit be6c4c294aca6bc9bfb3e46fed5ba1b70496ad57
Author: Riley Kuttruff <[email protected]>
AuthorDate: Wed May 8 17:40:55 2024 -0700
SDAP-513 - Configurable Solr init pod image in helm (#306)
Co-authored-by: rileykk <[email protected]>
---
CHANGELOG.md | 1 +
helm/templates/solr-create-collection.yml | 2 +-
helm/values.yaml | 1 +
3 files changed, 3 insertions(+), 1 deletion(-)
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1531d34..8d33f6a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -13,6 +13,7 @@ and this project adheres to [Semantic
Versioning](https://semver.org/spec/v2.0.0
- SDAP-472:
- Support for Zarr backend (gridded data only)
- Dataset management endpoints for Zarr datasets
+- SDAP-513: Added helm chart value `solr.initImage` to specify Solr init pod
image. If omitted, defaults to `apache/sdap-solr-cloud-init:1.1.0`
### Changed
- SDAP-493:
- Updated /job endpoint to use `executionId` terminology for consistency
with existing `/cdmsresults` endpoint
diff --git a/helm/templates/solr-create-collection.yml
b/helm/templates/solr-create-collection.yml
index 717cb42..b55f7b4 100644
--- a/helm/templates/solr-create-collection.yml
+++ b/helm/templates/solr-create-collection.yml
@@ -16,7 +16,7 @@ spec:
containers:
- name: solr-create-collection
imagePullPolicy: Always
- image: nexusjpl/solr-cloud-init:1.0.2
+ image: {{ .Values.solr.initImage | default
"apache/sdap-solr-cloud-init:1.1.0" }}
resources:
requests:
memory: "0.5Gi"
diff --git a/helm/values.yaml b/helm/values.yaml
index fe2481e..3576547 100644
--- a/helm/values.yaml
+++ b/helm/values.yaml
@@ -126,6 +126,7 @@ external:
solr:
enabled: true
initPodEnabled: true
+ initImage: apache/sdap-solr-cloud-init:1.2.0
image:
repository: nexusjpl/solr
tag: 8.11.1