From f5fa18d7ca1212f1ada25ed4f7641eaeabcbd0d5 Mon Sep 17 00:00:00 2001 From: Carson A Date: Thu, 25 Mar 2021 11:46:15 -0600 Subject: [PATCH] Update traefik-progressive-delivery.md Use curly braces to specify an array value in helm set. The latest versions of the chart need to have the additional arguments specified as a list or they error out: ``` Error: template: traefik/templates/_podtemplate.tpl:199:20: executing "traefik.podTemplate" at <.>: range can't iterate over --metrics.prometheus=true ``` Signed-off-by: Carson Anderson --- docs/gitbook/tutorials/traefik-progressive-delivery.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/gitbook/tutorials/traefik-progressive-delivery.md b/docs/gitbook/tutorials/traefik-progressive-delivery.md index 9ac3fdb42..71146cb0b 100644 --- a/docs/gitbook/tutorials/traefik-progressive-delivery.md +++ b/docs/gitbook/tutorials/traefik-progressive-delivery.md @@ -15,7 +15,7 @@ helm repo add traefik https://helm.traefik.io/traefik kubectl create ns traefik helm upgrade -i traefik traefik/traefik \ --namespace traefik \ ---set additionalArguments="--metrics.prometheus=true" +--set additionalArguments="{--metrics.prometheus=true}" ``` Install Flagger and the Prometheus add-on in the same namespace as Traefik: