1
0
mirror of https://github.com/rancher/rke.git synced 2025-09-16 15:10:12 +00:00

[v1.5.10] s4: Fix 478

This commit is contained in:
Bruno Bachmann
2024-04-16 10:14:22 -07:00
committed by Bruno Bachmann
parent 1f4f2160bc
commit cf49199481
9 changed files with 352 additions and 73 deletions

View File

@@ -86,8 +86,9 @@ const (
AuthnWebhookProvider = "webhook"
StateConfigMapName = "cluster-state"
FullStateConfigMapName = "full-cluster-state"
UpdateStateTimeout = 30
GetStateTimeout = 30
FullStateSecretName = "full-cluster-state"
UpdateStateTimeout = time.Second * 30
GetStateTimeout = time.Second * 30
RewriteWorkers = 5
SyncWorkers = 10
NoneAuthorizationMode = "none"