[fix] Update the ES curator config

The curator actions in the configmap gets set to
null which is causing error when redering any actions downstream.
Adding the {} should resolve this issue.

Change-Id: I8c337ee1f089c13f75cb7a9997a7bf6f04246160
This commit is contained in:
Pai, Radhika (rp592h) 2021-04-14 14:30:04 -05:00
parent 413bd4f850
commit dbb20c786d
3 changed files with 4 additions and 3 deletions

View File

@ -15,7 +15,7 @@ apiVersion: v1
appVersion: v7.6.2 appVersion: v7.6.2
description: OpenStack-Helm ElasticSearch description: OpenStack-Helm ElasticSearch
name: elasticsearch name: elasticsearch
version: 0.2.1 version: 0.2.2
home: https://www.elastic.co/ home: https://www.elastic.co/
sources: sources:
- https://github.com/elastic/elasticsearch - https://github.com/elastic/elasticsearch

View File

@ -585,7 +585,7 @@ conf:
ceph: ceph:
admin_keyring: null admin_keyring: null
curator: curator:
action_file: action_file: {}
# Remember, leave a key empty if there is no value. None will be a string, # Remember, leave a key empty if there is no value. None will be a string,
# not a Python "NoneType" # not a Python "NoneType"
# #
@ -598,7 +598,7 @@ conf:
# the desired configuration should include all fields as to avoid unwanted # the desired configuration should include all fields as to avoid unwanted
# merges with a set of dummy default values. The supplied values can be # merges with a set of dummy default values. The supplied values can be
# used as an example # used as an example
actions: # actions:
# 1: # 1:
# action: delete_indices # action: delete_indices
# description: >- # description: >-

View File

@ -11,4 +11,5 @@ elasticsearch:
- 0.1.8 Disable Curator in Gate & Chart Defaults - 0.1.8 Disable Curator in Gate & Chart Defaults
- 0.2.0 Add more S3 configuration options - 0.2.0 Add more S3 configuration options
- 0.2.1 Make templates job more robust & allow overrides - 0.2.1 Make templates job more robust & allow overrides
- 0.2.2 Update the ES curator config to {}
... ...