Skip to content

Commit

Permalink
pulumi: increase kube client rate limit
Browse files Browse the repository at this point in the history
The default value is too small, and given
kubernetes/kubernetes#111880, it is not really
needed.
  • Loading branch information
Aetf committed Mar 24, 2024
1 parent 4a6fb53 commit b42d9d5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
});
}

Expand Down

0 comments on commit b42d9d5

Please sign in to comment.