mirror of
https://github.com/bitnami/charts.git
synced 2026-03-14 14:57:22 +08:00
[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:
@@ -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
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user