Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Update quoted true, false in configmap #298

Merged
merged 1 commit into from
Nov 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/install/start.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down