mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
feat: specify listen address from env / command line (#11846)
* feat: specify listen address from env / command line Signed-off-by: Eldar Yusupov <eldar.yusupov@workato.com> * Make listen addrs configurable through ConfigMap Signed-off-by: Eldar Yusupov <eldar.yusupov@workato.com> * Update autogenerated manifests Signed-off-by: Eldar Yusupov <eldar.yusupov@workato.com> --------- Signed-off-by: Eldar Yusupov <eldar.yusupov@workato.com>
This commit is contained in:
@@ -53,7 +53,11 @@ const (
|
||||
|
||||
// DefaultAddressAPIServer for ArgoCD components
|
||||
const (
|
||||
DefaultAddressAPIServer = "localhost"
|
||||
DefaultAddressAdminDashboard = "localhost"
|
||||
DefaultAddressAPIServer = "0.0.0.0"
|
||||
DefaultAddressAPIServerMetrics = "0.0.0.0"
|
||||
DefaultAddressRepoServer = "0.0.0.0"
|
||||
DefaultAddressRepoServerMetrics = "0.0.0.0"
|
||||
)
|
||||
|
||||
// Default paths on the pod's file system
|
||||
|
||||
Reference in New Issue
Block a user