Skip to content
Snippets Groups Projects
Unverified Commit 12b993cb authored by Göran Pöhner's avatar Göran Pöhner Committed by GitHub
Browse files

Fix livenessProbe for Elasticsearch 8.x (#870)

parent 9e855b17
No related branches found
No related tags found
No related merge requests found
......@@ -7,6 +7,6 @@ type: application
maintainers:
- name: groundhog2k
version: 0.8.0
version: 0.8.1
appVersion: 8.0.0
# Elasticsearch
![Version: 0.8.0](https://img.shields.io/badge/Version-0.8.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.0.0](https://img.shields.io/badge/AppVersion-8.0.0-informational?style=flat-square)
![Version: 0.8.1](https://img.shields.io/badge/Version-0.8.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 8.0.0](https://img.shields.io/badge/AppVersion-8.0.0-informational?style=flat-square)
## Changelog
......
......@@ -10,4 +10,5 @@
| 0.6.6 | 7.16.3 | Fixed startupProbe |
| 0.7.0 | 7.17.0 | Upgraded to Elasticsearch 7.17.0 |
| 0.8.0 | 8.0.0 | Upgraded to Elasticsearch 8.0.0 |
| 0.8.1 | 8.0.0 | Fixed livenessProbe for Elasticsearch 8.x |
| | | |
......@@ -76,12 +76,8 @@ spec:
{{- else }}
{{- if .Values.startupProbe.enabled }}
startupProbe:
httpGet:
path: /
tcpSocket:
port: http
httpHeaders:
- name: Host
value: localhost:9200
{{- with .Values.startupProbe }}
initialDelaySeconds: {{ .initialDelaySeconds }}
timeoutSeconds: {{ .timeoutSeconds }}
......@@ -97,12 +93,8 @@ spec:
{{- else }}
{{- if .Values.livenessProbe.enabled }}
livenessProbe:
httpGet:
path: /
tcpSocket:
port: http
httpHeaders:
- name: Host
value: localhost:9200
{{- with .Values.livenessProbe }}
initialDelaySeconds: {{ .initialDelaySeconds }}
timeoutSeconds: {{ .timeoutSeconds }}
......@@ -118,12 +110,8 @@ spec:
{{- else }}
{{- if .Values.readinessProbe.enabled }}
readinessProbe:
httpGet:
path: /
tcpSocket:
port: http
httpHeaders:
- name: Host
value: localhost:9200
{{- with .Values.readinessProbe }}
initialDelaySeconds: {{ .initialDelaySeconds }}
timeoutSeconds: {{ .timeoutSeconds }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment