diff options
| author | manivannan-g <manivannan-g@users.noreply.github.com> | 2021-11-10 21:14:41 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-11-10 16:44:41 +0100 |
| commit | da58411eea9f98811f55cc10b92c150385e2d9ae (patch) | |
| tree | 106ca7eb29a0f904ce04501210047cc6faf36b41 /docs/install | |
| parent | 934f7c5e735e89572dc93a33a33a68ff43522625 (diff) | |
docs: Update quoted true, false in configmap (#298)
The non-quoted true, false variable assignment in the `argocd-image-updater-config` ConfigMap is causing failures. Quoted them now.
Diffstat (limited to 'docs/install')
| -rw-r--r-- | docs/install/start.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/install/start.md b/docs/install/start.md index 4cb048b..68a6c18 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: <FQDN or IP of your Argo CD server> # 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 |
