diff --git a/charts/elasticsearch/Chart.yaml b/charts/elasticsearch/Chart.yaml index 29923e37dcafce6a27eefd0f82413ba0ec1f1a4d..fe5d314a8ccb6b615f6ff4c868be6063031323d3 100644 --- a/charts/elasticsearch/Chart.yaml +++ b/charts/elasticsearch/Chart.yaml @@ -7,6 +7,6 @@ type: application maintainers: - name: groundhog2k -version: 0.8.0 +version: 0.8.1 appVersion: 8.0.0 diff --git a/charts/elasticsearch/README.md b/charts/elasticsearch/README.md index c00d403c19a2ee49c227a630fae0486484a837a9..5054b2d0f1b4356b78ef211db0f0731633a157ba 100644 --- a/charts/elasticsearch/README.md +++ b/charts/elasticsearch/README.md @@ -1,6 +1,6 @@ # Elasticsearch -   +   ## Changelog diff --git a/charts/elasticsearch/RELEASENOTES.md b/charts/elasticsearch/RELEASENOTES.md index 8dc3d716323b159baa958fe86ae2fe7d6a69f3ae..48efb9fffb7ec4430e61a5f70112a89785d32aeb 100644 --- a/charts/elasticsearch/RELEASENOTES.md +++ b/charts/elasticsearch/RELEASENOTES.md @@ -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 | | | | | diff --git a/charts/elasticsearch/templates/statefulset.yaml b/charts/elasticsearch/templates/statefulset.yaml index ff341755263455095ab5de964f854676c774b112..09b898a083d6ce523fff662380b715ad47575368 100644 --- a/charts/elasticsearch/templates/statefulset.yaml +++ b/charts/elasticsearch/templates/statefulset.yaml @@ -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 }}