[bitnami/elasticsearch] Fix ingress service name (#10549)

* fix: ingress service name

The service name of the ingress was set to "restApi" which is an invalid value for Kubernetes. It should have been "tcp-rest-api".

Fixes #10460

Signed-off-by: Tonny Miousse <tonny.miousse@telus.com>

* Bump the version

Signed-off-by: Tonny Miousse <tonny.miousse@telus.com>
This commit is contained in:
Tonny Miousse
2022-06-06 10:35:46 -04:00
committed by GitHub
parent b18fc95606
commit 5b318b29ba
2 changed files with 2 additions and 2 deletions

View File

@@ -25,4 +25,4 @@ name: elasticsearch
sources:
- https://github.com/bitnami/bitnami-docker-elasticsearch
- https://www.elastic.co/products/elasticsearch
version: 18.2.7
version: 18.2.8

View File

@@ -46,7 +46,7 @@ spec:
{{- if eq "true" (include "common.ingress.supportsPathType" $) }}
pathType: {{ default "ImplementationSpecific" .pathType }}
{{- end }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "restAPI" "context" $) | nindent 14 }}
backend: {{- include "common.ingress.backend" (dict "serviceName" (include "common.names.fullname" $) "servicePort" "tcp-rest-api" "context" $) | nindent 14 }}
{{- end }}
{{- if .Values.ingress.extraRules }}
{{- include "common.tplvalues.render" ( dict "value" .Values.ingress.extraRules "context" $ ) | nindent 4 }}