Make curator path configurable

Some es curator images do not use /usr/bin/curator for the executable. This PS
makes the path configurable via values.yaml.

Change-Id: I640e0f4928683810ef0b4a6d4dbac9bdf865aa2a
This commit is contained in:
Ritchie, Frank (fr801x) 2023-12-05 14:28:34 -05:00
parent 4a95f75b6b
commit e36b5d6dab
4 changed files with 4 additions and 2 deletions

View File

@ -15,7 +15,7 @@ apiVersion: v1
appVersion: v8.9.0
description: OpenStack-Helm ElasticSearch
name: elasticsearch
version: 0.2.28
version: 0.2.29
home: https://www.elastic.co/
sources:
- https://github.com/elastic/elasticsearch

View File

@ -15,4 +15,4 @@ limitations under the License.
set -ex
exec /usr/bin/curator --config /etc/config/config.yml /etc/config/action_file.yml
exec {{ .Values.conf.curator.executable }} --config /etc/config/config.yml /etc/config/action_file.yml

View File

@ -595,6 +595,7 @@ conf:
ceph:
admin_keyring: null
curator:
executable: /usr/bin/curator
action_file: {}
# Remember, leave a key empty if there is no value. None will be a string,
# not a Python "NoneType"

View File

@ -38,4 +38,5 @@ elasticsearch:
- 0.2.26 Add 2023.1 Ubuntu Focal overrides
- 0.2.27 Update Rook to 1.12.5 and Ceph to 18.2.0
- 0.2.28 Utilize bucket claim CRD when using with Rook
- 0.2.29 Make es curator path configurable
...