From b42d9d5e3a4796e07022b9b13e9e2ccb060c5196 Mon Sep 17 00:00:00 2001 From: Aetf Date: Sat, 23 Mar 2024 19:13:59 -0700 Subject: [PATCH] pulumi: increase kube client rate limit The default value is too small, and given https://github.com/kubernetes/kubernetes/issues/111880, it is not really needed. --- src/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/index.ts b/src/index.ts index f23c95b..73c7573 100644 --- a/src/index.ts +++ b/src/index.ts @@ -35,6 +35,12 @@ function namespaced(ns: string, args?: k8s.ProviderArgs): k8s.Provider { ...args, suppressDeprecationWarnings: true, namespace: namespace.metadata.name, + enableServerSideApply: true, + kubeClientSettings: { + burst: 120, + qps: 60, + timeout: 300, + }, }); }