From 2827fef2730a54b452faff20d23cac5189f24b9a Mon Sep 17 00:00:00 2001 From: Joseph Kavanagh Date: Tue, 5 Sep 2023 12:26:50 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20env=20values=20need=20to=20be=20?= =?UTF-8?q?string=20(#112)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit cannot unmarshal bool into Go struct field EnvVar.spec.template.spec.containers.env.value of type string --- exemples/kubernetes/crowdsec/values.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exemples/kubernetes/crowdsec/values.yml b/exemples/kubernetes/crowdsec/values.yml index fb6217a..bf91aa1 100644 --- a/exemples/kubernetes/crowdsec/values.yml +++ b/exemples/kubernetes/crowdsec/values.yml @@ -22,4 +22,4 @@ lapi: value: "k8s linux test" # If it's a test, we don't want to share signals with CrowdSec so disable the Online API. - name: DISABLE_ONLINE_API - value: true + value: "true"