fix(argo-rollouts): Fix service name for ingress rollouts dashboard (#1084)
* Fix service name for ingress rollouts dashboard Signed-off-by: Sergey Shaykhullin <sergeyshaykhullin@gmail.com> * Update Chart.yaml Signed-off-by: Sergey Shaykhullin <sergeyshaykhullin@gmail.com> * Fix it centrally Signed-off-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com> Co-authored-by: Marco Kilchhofer <mkilchhofer@users.noreply.github.com>
This commit is contained in:
parent
8d55826d77
commit
554d150df9
2 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
||||||
appVersion: "v1.1.1"
|
appVersion: "v1.1.1"
|
||||||
description: A Helm chart for Argo Rollouts
|
description: A Helm chart for Argo Rollouts
|
||||||
name: argo-rollouts
|
name: argo-rollouts
|
||||||
version: 2.9.0
|
version: 2.9.1
|
||||||
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
|
||||||
home: https://github.com/argoproj/argo-helm
|
home: https://github.com/argoproj/argo-helm
|
||||||
maintainers:
|
maintainers:
|
||||||
|
@ -11,4 +11,4 @@ maintainers:
|
||||||
- name: jessesuen
|
- name: jessesuen
|
||||||
annotations:
|
annotations:
|
||||||
artifacthub.io/changes: |
|
artifacthub.io/changes: |
|
||||||
- "[Added]: Dashboard ingress support"
|
- "[Fixed]: Dashboard ingress service name"
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{{- if and .Values.dashboard.enabled .Values.dashboard.ingress.enabled -}}
|
{{- if and .Values.dashboard.enabled .Values.dashboard.ingress.enabled -}}
|
||||||
{{- $serviceName := include "argo-rollouts.fullname" . -}}
|
{{- $serviceName := printf "%s-dashboard" (include "argo-rollouts.fullname" .) -}}
|
||||||
{{- $servicePort := .Values.dashboard.service.port -}}
|
{{- $servicePort := .Values.dashboard.service.port -}}
|
||||||
{{- $paths := .Values.dashboard.ingress.paths -}}
|
{{- $paths := .Values.dashboard.ingress.paths -}}
|
||||||
{{- $extraPaths := .Values.dashboard.ingress.extraPaths -}}
|
{{- $extraPaths := .Values.dashboard.ingress.extraPaths -}}
|
||||||
|
|
Loading…
Reference in a new issue