mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
Fix ingress for GCE (#10745)
* Fix ingress for GCE The GCE ingress controller fails when the ingress name contains dots. Signed-off-by: Fred Cox <mcfedr@gmail.com> * Fix version Signed-off-by: Fred Cox <mcfedr@gmail.com>
This commit is contained in:
committed by
Kubernetes Prow Robot
parent
c78b41c7af
commit
f638055f98
@@ -1,5 +1,5 @@
|
||||
name: redmine
|
||||
version: 8.0.2
|
||||
version: 8.0.3
|
||||
appVersion: 4.0.1
|
||||
description: A flexible project management web application.
|
||||
keywords:
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
apiVersion: extensions/v1beta1
|
||||
kind: Ingress
|
||||
metadata:
|
||||
name: "{{- printf "%s-%s" .name $.Release.Name | trunc 63 | trimSuffix "-" -}}"
|
||||
name: "{{- printf "%s-%s" .name $.Release.Name | trunc 63 | trimSuffix "-" | replace "." "-" -}}"
|
||||
labels:
|
||||
app: {{ template "redmine.fullname" $ }}
|
||||
chart: {{ template "redmine.chart" $ }}
|
||||
|
||||
Reference in New Issue
Block a user