Skip to content

Commit 94295a6

Browse files
authored
fix: seting wrong default values for tls path (#568)
Signed-off-by: Anand Kumar Singh <[email protected]>
1 parent a2a7a63 commit 94295a6

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

install/helm-repo/argocd-agent-agent/values.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ metricsPort: "8181"
2121
tlsClientInSecure: "false"
2222
healthzPort: "8002"
2323
redisAddress: "argocd-redis:6379"
24-
tlsClientKeyPath: "/app/config/tls/tls.key"
25-
tlsClientCertPath: "/app/config/tls/tls.crt"
26-
tlsRootCAPath: "/app/config/tls/ca.crt"
24+
tlsClientKeyPath: ""
25+
tlsClientCertPath: ""
26+
tlsRootCAPath: ""

install/helm-repo/doc/install.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,9 @@ serverPort: "443"
6666
metricsPort: "8181"
6767
tlsClientInSecure: "false"
6868
healthzPort: "8002"
69-
tlsClientKeyPath: "/app/config/tls/tls.key"
70-
tlsClientCertPath: "/app/config/tls/tls.crt"
71-
tlsRootCAPath: "/app/config/tls/ca.crt"
69+
tlsClientKeyPath: ""
70+
tlsClientCertPath: ""
71+
tlsRootCAPath: ""
7272
```
7373

7474
Parameter Descriptions:
@@ -159,19 +159,19 @@ The port the health check server should listen on.
159159

160160
tlsClientKeyPath:
161161

162-
Default: "/app/config/tls/tls.key"
162+
Default: ""
163163

164164
Path to a file containing the agent's TLS client certificate.
165165

166166
tlsClientCertPath:
167167

168-
Default: "/app/config/tls/tls.crt"
168+
Default: ""
169169

170170
Path to a file containing the agent's TLS client private key.
171171

172172
tlsRootCAPath:
173173

174-
Default: "/app/config/tls/ca.crt"
174+
Default: ""
175175

176176
The path to a file containing the certificates for the TLS root certificate authority used to validate the remote principal.
177177

0 commit comments

Comments
 (0)