From e800d2e14845e61c5c9b5ce0f94ec844d3d3c66c Mon Sep 17 00:00:00 2001 From: manivannan-g Date: Wed, 10 Nov 2021 21:08:39 +0530 Subject: [PATCH] Update quoted true, false in configmap The non-quoted true, false variable assignment in the `argocd-image-updater-config` ConfigMap is causing failures. Quoted them now. --- docs/install/start.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/install/start.md b/docs/install/start.md index 4cb048ba..68a6c183 100644 --- a/docs/install/start.md +++ b/docs/install/start.md @@ -184,11 +184,11 @@ data: # The address of Argo CD API endpoint - defaults to argocd-server.argocd argocd.server_addr: # Whether to use GRPC-web protocol instead of GRPC over HTTP/2 - argocd.grpc_web: true + argocd.grpc_web: "true" # Whether to ignore invalid TLS cert from Argo CD API endpoint - argocd.insecure: false + argocd.insecure: "false" # Whether to use plain text connection (http) instead of TLS (https) - argocd.plaintext: false + argocd.plaintext: "false" ``` After changing values in the ConfigMap, Argo CD Image Updater needs to be