mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
Signed-off-by: gami <20226196+gosarami@users.noreply.github.com> Signed-off-by: Alexandre Gaudreault <alexandre_gaudreault@intuit.com> Co-authored-by: Alexandre Gaudreault <alexandre_gaudreault@intuit.com>
This commit is contained in:
@@ -102,6 +102,27 @@ data:
|
||||
# will increase the speed at which Argo CD becomes aware of external cluster state. A higher value will reduce cluster
|
||||
# cache lock contention and better handle high-churn clusters.
|
||||
controller.cluster.cache.events.processing.interval: "100ms"
|
||||
# QPS (Queries Per Second) limit for K8s API client requests (default "50")
|
||||
# Can also be set via ARGOCD_K8S_CLIENT_QPS environment variable
|
||||
controller.k8s.client.qps: "50"
|
||||
# Burst value for K8s API client requests (default "100", which is 2x QPS)
|
||||
# Can also be set via ARGOCD_K8S_CLIENT_BURST environment variable
|
||||
controller.k8s.client.burst: "100"
|
||||
# Maximum number of idle connections in the K8s REST client HTTP transport (default "500")
|
||||
# Can also be set via ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS environment variable
|
||||
controller.k8s.client.max.idle.connections: "500"
|
||||
# TCP timeout duration when communicating with K8s API servers (default "30s")
|
||||
# Can also be set via ARGOCD_K8S_TCP_TIMEOUT environment variable
|
||||
controller.k8s.tcp.timeout: "30s"
|
||||
# TCP keep-alive probe interval when communicating with K8s API servers (default "30s")
|
||||
# Can also be set via ARGOCD_K8S_TCP_KEEPALIVE environment variable
|
||||
controller.k8s.tcp.keepalive: "30s"
|
||||
# TLS handshake timeout when establishing connections to K8s API servers (default "10s")
|
||||
# Can also be set via ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT environment variable
|
||||
controller.k8s.tls.handshake.timeout: "10s"
|
||||
# Idle TCP connection timeout to K8s API servers (default "5m")
|
||||
# Can also be set via ARGOCD_K8S_TCP_IDLE_TIMEOUT environment variable
|
||||
controller.k8s.tcp.idle.timeout: "5m"
|
||||
# Enable gRPC service config lookups via DNS TXT records (default "false"). By default, gRPC DNS TXT lookups for
|
||||
# _grpc_config.<hostname> are disabled to prevent excessive DNS queries that can cause timeouts in dual-stack environments.
|
||||
# See https://github.com/argoproj/argo-cd/issues/24991
|
||||
@@ -172,6 +193,27 @@ data:
|
||||
server.enable.proxy.extension: "false"
|
||||
# Enables profile endpoint on the internal metrics port
|
||||
server.profile.enabled: "false"
|
||||
# QPS (Queries Per Second) limit for K8s API client requests (default "50")
|
||||
# Can also be set via ARGOCD_K8S_CLIENT_QPS environment variable
|
||||
server.k8s.client.qps: "50"
|
||||
# Burst value for K8s API client requests (default "100", which is 2x QPS)
|
||||
# Can also be set via ARGOCD_K8S_CLIENT_BURST environment variable
|
||||
server.k8s.client.burst: "100"
|
||||
# Maximum number of idle connections in the K8s REST client HTTP transport (default "500")
|
||||
# Can also be set via ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS environment variable
|
||||
server.k8s.client.max.idle.connections: "500"
|
||||
# TCP timeout duration when communicating with K8s API servers (default "30s")
|
||||
# Can also be set via ARGOCD_K8S_TCP_TIMEOUT environment variable
|
||||
server.k8s.tcp.timeout: "30s"
|
||||
# TCP keep-alive probe interval when communicating with K8s API servers (default "30s")
|
||||
# Can also be set via ARGOCD_K8S_TCP_KEEPALIVE environment variable
|
||||
server.k8s.tcp.keepalive: "30s"
|
||||
# TLS handshake timeout when establishing connections to K8s API servers (default "10s")
|
||||
# Can also be set via ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT environment variable
|
||||
server.k8s.tls.handshake.timeout: "10s"
|
||||
# Idle TCP connection timeout to K8s API servers (default "5m")
|
||||
# Can also be set via ARGOCD_K8S_TCP_IDLE_TIMEOUT environment variable
|
||||
server.k8s.tcp.idle.timeout: "5m"
|
||||
# Enable gRPC service config lookups via DNS TXT records (default "false"). By default, gRPC DNS TXT lookups for
|
||||
# _grpc_config.<hostname> are disabled to prevent excessive DNS queries that can cause timeouts in dual-stack environments.
|
||||
# See https://github.com/argoproj/argo-cd/issues/24991
|
||||
@@ -316,6 +358,27 @@ data:
|
||||
applicationsetcontroller.status.max.resources.count: "5000"
|
||||
# Enables profile endpoint on the internal metrics port
|
||||
applicationsetcontroller.profile.enabled: "false"
|
||||
# QPS (Queries Per Second) limit for K8s API client requests (default "50")
|
||||
# Can also be set via ARGOCD_K8S_CLIENT_QPS environment variable
|
||||
applicationsetcontroller.k8s.client.qps: "50"
|
||||
# Burst value for K8s API client requests (default "100", which is 2x QPS)
|
||||
# Can also be set via ARGOCD_K8S_CLIENT_BURST environment variable
|
||||
applicationsetcontroller.k8s.client.burst: "100"
|
||||
# Maximum number of idle connections in the K8s REST client HTTP transport (default "500")
|
||||
# Can also be set via ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS environment variable
|
||||
applicationsetcontroller.k8s.client.max.idle.connections: "500"
|
||||
# TCP timeout duration when communicating with K8s API servers (default "30s")
|
||||
# Can also be set via ARGOCD_K8S_TCP_TIMEOUT environment variable
|
||||
applicationsetcontroller.k8s.tcp.timeout: "30s"
|
||||
# TCP keep-alive probe interval when communicating with K8s API servers (default "30s")
|
||||
# Can also be set via ARGOCD_K8S_TCP_KEEPALIVE environment variable
|
||||
applicationsetcontroller.k8s.tcp.keepalive: "30s"
|
||||
# TLS handshake timeout when establishing connections to K8s API servers (default "10s")
|
||||
# Can also be set via ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT environment variable
|
||||
applicationsetcontroller.k8s.tls.handshake.timeout: "10s"
|
||||
# Idle TCP connection timeout to K8s API servers (default "5m")
|
||||
# Can also be set via ARGOCD_K8S_TCP_IDLE_TIMEOUT environment variable
|
||||
applicationsetcontroller.k8s.tcp.idle.timeout: "5m"
|
||||
# Enable gRPC service config lookups via DNS TXT records (default "false"). By default, gRPC DNS TXT lookups for
|
||||
# _grpc_config.<hostname> are disabled to prevent excessive DNS queries that can cause timeouts in dual-stack environments.
|
||||
# See https://github.com/argoproj/argo-cd/issues/24991
|
||||
|
||||
@@ -97,6 +97,48 @@ spec:
|
||||
name: argocd-cmd-params-cm
|
||||
key: log.format.timestamp
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.client.qps
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.client.burst
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.tcp.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.tcp.keepalive
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -337,4 +379,4 @@ spec:
|
||||
- key: controller.profile.enabled
|
||||
path: profiler.enabled
|
||||
nodeSelector:
|
||||
kubernetes.io/os: linux
|
||||
kubernetes.io/os: linux
|
||||
|
||||
@@ -100,6 +100,48 @@ spec:
|
||||
name: argocd-cmd-params-cm
|
||||
key: log.format.timestamp
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.client.qps
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.client.burst
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.tcp.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.tcp.keepalive
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
@@ -97,6 +97,48 @@ spec:
|
||||
name: argocd-cmd-params-cm
|
||||
key: log.format.timestamp
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: applicationsetcontroller.k8s.client.qps
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: applicationsetcontroller.k8s.client.burst
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: applicationsetcontroller.k8s.client.max.idle.connections
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: applicationsetcontroller.k8s.tcp.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: applicationsetcontroller.k8s.tcp.keepalive
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: applicationsetcontroller.k8s.tls.handshake.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: applicationsetcontroller.k8s.tcp.idle.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_DRY_RUN
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -257,4 +299,4 @@ spec:
|
||||
- key: applicationsetcontroller.profile.enabled
|
||||
path: profiler.enabled
|
||||
nodeSelector:
|
||||
kubernetes.io/os: linux
|
||||
kubernetes.io/os: linux
|
||||
|
||||
@@ -64,6 +64,48 @@ spec:
|
||||
name: argocd-cmd-params-cm
|
||||
key: server.log.level
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: server.k8s.client.qps
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: server.k8s.client.burst
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: server.k8s.client.max.idle.connections
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: server.k8s.tcp.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: server.k8s.tcp.keepalive
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: server.k8s.tls.handshake.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
name: argocd-cmd-params-cm
|
||||
key: server.k8s.tcp.idle.timeout
|
||||
optional: true
|
||||
- name: ARGOCD_SERVER_REPO_SERVER
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -410,4 +452,4 @@ spec:
|
||||
app.kubernetes.io/part-of: argocd
|
||||
topologyKey: kubernetes.io/hostname
|
||||
nodeSelector:
|
||||
kubernetes.io/os: linux
|
||||
kubernetes.io/os: linux
|
||||
|
||||
84
manifests/core-install-with-hydrator.yaml
generated
84
manifests/core-install-with-hydrator.yaml
generated
@@ -31187,6 +31187,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_DRY_RUN
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -32086,6 +32128,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
84
manifests/core-install.yaml
generated
84
manifests/core-install.yaml
generated
@@ -31155,6 +31155,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_DRY_RUN
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -31914,6 +31956,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
126
manifests/ha/install-with-hydrator.yaml
generated
126
manifests/ha/install-with-hydrator.yaml
generated
@@ -32553,6 +32553,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_DRY_RUN
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -33683,6 +33725,48 @@ spec:
|
||||
key: server.log.level
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_SERVER_REPO_SERVER
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -34137,6 +34221,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
126
manifests/ha/install.yaml
generated
126
manifests/ha/install.yaml
generated
@@ -32523,6 +32523,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_DRY_RUN
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -33513,6 +33555,48 @@ spec:
|
||||
key: server.log.level
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_SERVER_REPO_SERVER
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -33967,6 +34051,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
126
manifests/ha/namespace-install-with-hydrator.yaml
generated
126
manifests/ha/namespace-install-with-hydrator.yaml
generated
@@ -1801,6 +1801,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_DRY_RUN
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -2931,6 +2973,48 @@ spec:
|
||||
key: server.log.level
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_SERVER_REPO_SERVER
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -3385,6 +3469,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
126
manifests/ha/namespace-install.yaml
generated
126
manifests/ha/namespace-install.yaml
generated
@@ -1771,6 +1771,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_DRY_RUN
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -2761,6 +2803,48 @@ spec:
|
||||
key: server.log.level
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_SERVER_REPO_SERVER
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -3215,6 +3299,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
126
manifests/install-with-hydrator.yaml
generated
126
manifests/install-with-hydrator.yaml
generated
@@ -31631,6 +31631,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_DRY_RUN
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -32711,6 +32753,48 @@ spec:
|
||||
key: server.log.level
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_SERVER_REPO_SERVER
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -33165,6 +33249,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
126
manifests/install.yaml
generated
126
manifests/install.yaml
generated
@@ -31599,6 +31599,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_DRY_RUN
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -32539,6 +32581,48 @@ spec:
|
||||
key: server.log.level
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_SERVER_REPO_SERVER
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -32993,6 +33077,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
126
manifests/namespace-install-with-hydrator.yaml
generated
126
manifests/namespace-install-with-hydrator.yaml
generated
@@ -879,6 +879,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_DRY_RUN
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -1959,6 +2001,48 @@ spec:
|
||||
key: server.log.level
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_SERVER_REPO_SERVER
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -2413,6 +2497,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
126
manifests/namespace-install.yaml
generated
126
manifests/namespace-install.yaml
generated
@@ -847,6 +847,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: applicationsetcontroller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATIONSET_CONTROLLER_DRY_RUN
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -1787,6 +1829,48 @@ spec:
|
||||
key: server.log.level
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: server.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_SERVER_REPO_SERVER
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
@@ -2241,6 +2325,48 @@ spec:
|
||||
key: log.format.timestamp
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_QPS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.qps
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_BURST
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.burst
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_CLIENT_MAX_IDLE_CONNECTIONS
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.client.max.idle.connections
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_KEEPALIVE
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.keepalive
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TLS_HANDSHAKE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tls.handshake.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_K8S_TCP_IDLE_TIMEOUT
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
key: controller.k8s.tcp.idle.timeout
|
||||
name: argocd-cmd-params-cm
|
||||
optional: true
|
||||
- name: ARGOCD_APPLICATION_CONTROLLER_METRICS_CACHE_EXPIRATION
|
||||
valueFrom:
|
||||
configMapKeyRef:
|
||||
|
||||
Reference in New Issue
Block a user