From 0e221423d807fb52f59a71be0f11f80703df6bfb Mon Sep 17 00:00:00 2001 From: Matt Colman <33348891+mtcolman@users.noreply.github.com> Date: Mon, 21 Feb 2022 12:45:46 +0000 Subject: [PATCH] ingress minor update (#142) Signed-off-by: Matt Colman Co-authored-by: David J. M. Karlsen --- charts/dependency-track/Chart.yaml | 4 ++-- charts/dependency-track/templates/ingress.yaml | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/charts/dependency-track/Chart.yaml b/charts/dependency-track/Chart.yaml index 6eca9f1..3ee24eb 100644 --- a/charts/dependency-track/Chart.yaml +++ b/charts/dependency-track/Chart.yaml @@ -1,10 +1,10 @@ apiVersion: v2 -appVersion: 4.4.0 +appVersion: 4.4.1 description: | Dependency-Track is an intelligent Software Supply Chain Component Analysis platform that allows organizations to identify and reduce risk from the use of third-party and open source components. Dependency-Track takes a unique and highly beneficial approach by leveraging the capabilities of Software Bill-of-Materials (SBOM). This approach provides capabilities that traditional Software Composition Analysis (SCA) solutions cannot achieve. name: dependency-track home: https://dependencytrack.org/ -version: 1.3.0 +version: 1.3.1 icon: https://raw.githubusercontent.com/DependencyTrack/branding/master/dt-logo-black-text.svg keywords: - security diff --git a/charts/dependency-track/templates/ingress.yaml b/charts/dependency-track/templates/ingress.yaml index cd90b3c..15ef15a 100644 --- a/charts/dependency-track/templates/ingress.yaml +++ b/charts/dependency-track/templates/ingress.yaml @@ -23,10 +23,8 @@ spec: paths: - path: /api pathType: Prefix - backend: - {{ include "common.ingress.backend" (dict "serviceName" (print (include "common.names.fullname" . ) "-apiserver") "servicePort" 80 "context" $) | nindent 10 }} + backend: {{ include "common.ingress.backend" (dict "serviceName" (print (include "common.names.fullname" . ) "-apiserver") "servicePort" 80 "context" $) | nindent 10 }} - path: / pathType: Prefix - backend: - {{ include "common.ingress.backend" (dict "serviceName" (print (include "common.names.fullname" . ) "-frontend") "servicePort" 80 "context" $) | nindent 10 }} + backend: {{ include "common.ingress.backend" (dict "serviceName" (print (include "common.names.fullname" . ) "-frontend") "servicePort" 80 "context" $) | nindent 10 }} {{- end }}