UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Commit c30b3e65 authored by Ryan Garcia's avatar Ryan Garcia :dizzy:
Browse files

feat: Bumping chart, adding lifecycle block for ES resources

parent eba33e71
No related branches found
No related tags found
1 merge request!29Resolve "Add lifecycle postStart Support to Auto Populate Index Patterns into Kibana"
Pipeline #225905 passed
...@@ -3,6 +3,9 @@ ...@@ -3,6 +3,9 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
--- ---
## [0.1.8-bb.0] - 2021-04-19
### Added
- Adding Lifecycle declaration support for Kibana and Elasticsearch resources
## [0.1.7-bb.0] - 2021-04-07 ## [0.1.7-bb.0] - 2021-04-07
### Added ### Added
......
apiVersion: v2 apiVersion: v2
name: logging name: logging
version: 0.1.7-bb.0 version: 0.1.8-bb.0
appVersion: 7.9.2 appVersion: 7.9.2
...@@ -99,6 +99,8 @@ spec: ...@@ -99,6 +99,8 @@ spec:
value: "-Xms{{ .heap.min }} -Xmx{{ .heap.max }}" value: "-Xms{{ .heap.min }} -Xmx{{ .heap.max }}"
resources: resources:
{{- toYaml .resources | nindent 14 }} {{- toYaml .resources | nindent 14 }}
lifecycle:
{{- toYaml .lifecycle | nindent 14 }}
{{- with $.Values.elasticsearch.imagePullSecrets }} {{- with $.Values.elasticsearch.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:
{{- toYaml . | nindent 10 }} {{- toYaml . | nindent 10 }}
...@@ -196,6 +198,8 @@ spec: ...@@ -196,6 +198,8 @@ spec:
value: "-Xms{{ .heap.min }} -Xmx{{ .heap.max }}" value: "-Xms{{ .heap.min }} -Xmx{{ .heap.max }}"
resources: resources:
{{- toYaml .resources | nindent 14 }} {{- toYaml .resources | nindent 14 }}
lifecycle:
{{- toYaml .lifecycle | nindent 14 }}
{{- with $.Values.elasticsearch.imagePullSecrets }} {{- with $.Values.elasticsearch.imagePullSecrets }}
imagePullSecrets: imagePullSecrets:
{{- toYaml . | nindent 10 }} {{- toYaml . | nindent 10 }}
......
...@@ -93,6 +93,10 @@ elasticsearch: ...@@ -93,6 +93,10 @@ elasticsearch:
nodeSelector: {} nodeSelector: {}
# node-type: elastic-master # node-type: elastic-master
lifecycle: {}
# preStop:
# exec:
# command: ["/bin/sh", "-c", "echo Hello from the postStart handler > /usr/share/message"]
count: 3 count: 3
persistence: persistence:
...@@ -146,6 +150,10 @@ elasticsearch: ...@@ -146,6 +150,10 @@ elasticsearch:
nodeSelector: {} nodeSelector: {}
# node-type: elastic-data # node-type: elastic-data
lifecycle: {}
# preStop:
# exec:
# command: ["/bin/sh", "-c", "echo Hello from the postStart handler > /usr/share/message"]
count: 4 count: 4
persistence: persistence:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment