Skip to content

Commit c688f13

Browse files
authored
fixes service name in ingress (#111)
1 parent 624f7ca commit c688f13

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

charts/api7/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.13.0
18+
version: 0.13.1
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/api7/templates/dashboard-ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.dashboard_service.ingress.enabled -}}
2-
{{- $fullName := include "api7ee3.fullname" . -}}
2+
{{- $fullName := include "api7ee3.fullname" . -}}-dashboard
33
{{- $svcPort := .Values.dashboard_service.port -}}
44
{{- if and .Values.dashboard_service.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
55
{{- if not (hasKey .Values.dashboard_service.ingress.annotations "kubernetes.io/ingress.class") }}

charts/api7/templates/dp-manager-ingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{{- if .Values.dp_manager_service.ingress.enabled -}}
2-
{{- $fullName := include "api7ee3.fullname" . -}}
2+
{{- $fullName := include "api7ee3.fullname" . -}}-dp-manager
33
{{- $svcPort := .Values.dp_manager_service.port -}}
44
{{- if and .Values.dp_manager_service.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
55
{{- if not (hasKey .Values.dp_manager_service.ingress.annotations "kubernetes.io/ingress.class") }}

0 commit comments

Comments
 (0)