Merge pull request #102791 from jkh52/konn-large-clusters

Konnectivity: tune flags for larger clusters (5k nodes).
This commit is contained in:
Kubernetes Prow Robot 2021-06-10 17:26:12 -07:00 committed by GitHub
commit 1e36278f0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 0 deletions

View File

@ -33,6 +33,9 @@ spec:
"--ca-cert=/var/run/secrets/kubernetes.io/serviceaccount/ca.crt",
"--proxy-server-host=__APISERVER_IP__",
"--proxy-server-port=8132",
"--sync-interval=5s",
"--sync-interval-cap=30s",
"--probe-interval=5s",
"--service-account-token-path=/var/run/secrets/tokens/konnectivity-agent-token"
]
env:

View File

@ -1932,6 +1932,8 @@ function prepare-konnectivity-server-manifest {
params+=("--agent-service-account=konnectivity-agent")
params+=("--kubeconfig=/etc/srv/kubernetes/konnectivity-server/kubeconfig")
params+=("--authentication-audience=system:konnectivity-server")
params+=("--kubeconfig-qps=75")
params+=("--kubeconfig-burst=150")
konnectivity_args=""
for param in "${params[@]}"; do
konnectivity_args+=", \"${param}\""