Skip to content

Commit

Permalink
fix(argo-rollouts): plugin block rendering was incorrect (#3014)
Browse files Browse the repository at this point in the history
* Fix the plugin block rendering

Signed-off-by: Robert Macaulay <[email protected]>

* fixed chart.yaml

Signed-off-by: Robert Macaulay <[email protected]>

* Update charts/argo-rollouts/Chart.yaml

Co-authored-by: Marco Maurer (-Kilchhofer) <[email protected]>
Signed-off-by: Robert Macaulay <[email protected]>

---------

Signed-off-by: Robert Macaulay <[email protected]>
Co-authored-by: Marco Maurer (-Kilchhofer) <[email protected]>
  • Loading branch information
taer and mkilchhofer authored Nov 7, 2024
1 parent 69f3edd commit 1c95f37
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions charts/argo-rollouts/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: v1.7.2
description: A Helm chart for Argo Rollouts
name: argo-rollouts
version: 2.37.7
version: 2.37.8
home: https://github.com/argoproj/argo-helm
icon: https://argoproj.github.io/argo-rollouts/assets/logo.png
keywords:
Expand All @@ -18,5 +18,5 @@ annotations:
fingerprint: 2B8F22F57260EFA67BE1C5824B11F800CD9D2252
url: https://argoproj.github.io/argo-helm/pgp_keys.asc
artifacthub.io/changes: |
- kind: added
description: add description for manual secret creation
- kind: fixed
description: Fixed rendering of plugins in the ConfigMap
6 changes: 4 additions & 2 deletions charts/argo-rollouts/templates/controller/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ metadata:
{{- include "argo-rollouts.labels" . | nindent 4 }}
data:
{{- with .Values.controller.metricProviderPlugins }}
{{- toYaml . | nindent 2 }}
metricProviderPlugins: |-
{{- toYaml . | nindent 4 }}
{{- end }}
{{- with .Values.controller.trafficRouterPlugins }}
{{- toYaml . | nindent 2 }}
trafficRouterPlugins: |-
{{- toYaml . | nindent 4 }}
{{- end }}

0 comments on commit 1c95f37

Please sign in to comment.