Skip to content

Commit

Permalink
Increase client-side rate limits of seed resource-manager
Browse files Browse the repository at this point in the history
Signed-off-by: Niclas Schad <[email protected]>
  • Loading branch information
Niclas Schad authored and ske-prow[bot] committed Jul 23, 2024
1 parent 686d5eb commit 308e1ee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions pkg/component/gardener/resourcemanager/resource_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,9 @@ func (r *resourceManager) ensureConfigMap(ctx context.Context, configMap *corev1
}, r.values.NetworkPolicyAdditionalNamespaceSelectors...),
IngressControllerSelector: r.values.NetworkPolicyControllerIngressControllerSelector,
}

config.SourceClientConnection.ClientConnectionConfiguration.QPS = 300
config.SourceClientConnection.ClientConnectionConfiguration.Burst = 500
config.Webhooks.CRDDeletionProtection.Enabled = true
config.Webhooks.ExtensionValidation.Enabled = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -507,6 +507,8 @@ var _ = Describe("ResourceManager", func() {
},
IngressControllerSelector: ingressControllerSelector,
}
config.SourceClientConnection.ClientConnectionConfiguration.QPS = 300
config.SourceClientConnection.ClientConnectionConfiguration.Burst = 500
config.Webhooks.CRDDeletionProtection.Enabled = true
config.Webhooks.EndpointSliceHints.Enabled = true
config.Webhooks.ExtensionValidation.Enabled = true
Expand Down

0 comments on commit 308e1ee

Please sign in to comment.