Skip to content

Commit

Permalink
fixes include for ingress name (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
michbeck100 authored Jun 13, 2024
1 parent c688f13 commit 98e2cf8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/api7/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.13.1
version: 0.13.2

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion charts/api7/templates/dashboard-ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if .Values.dashboard_service.ingress.enabled -}}
{{- $fullName := include "api7ee3.fullname" . -}}-dashboard
{{- $fullName := printf "%s-dashboard" (include "api7ee3.fullname" .) -}}
{{- $svcPort := .Values.dashboard_service.port -}}
{{- if and .Values.dashboard_service.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
{{- if not (hasKey .Values.dashboard_service.ingress.annotations "kubernetes.io/ingress.class") }}
Expand Down
2 changes: 1 addition & 1 deletion charts/api7/templates/dp-manager-ingress.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{{- if .Values.dp_manager_service.ingress.enabled -}}
{{- $fullName := include "api7ee3.fullname" . -}}-dp-manager
{{- $fullName := printf "%s-dp-manager" (include "api7ee3.fullname" .) -}}
{{- $svcPort := .Values.dp_manager_service.port -}}
{{- if and .Values.dp_manager_service.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }}
{{- if not (hasKey .Values.dp_manager_service.ingress.annotations "kubernetes.io/ingress.class") }}
Expand Down

0 comments on commit 98e2cf8

Please sign in to comment.