Merge pull request #16115 from serathius/robustness-kubernetes-tune

tests/robustness: Tune Kubernetes tests to reduce number of delete requests
This commit is contained in:
Marek Siarkowicz 2023-06-20 11:16:02 +02:00 committed by GitHub
commit fd3e338d88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,13 +37,13 @@ var (
maximalQPS: 1000, maximalQPS: 1000,
clientCount: 12, clientCount: 12,
Traffic: kubernetesTraffic{ Traffic: kubernetesTraffic{
averageKeyCount: 5, averageKeyCount: 10,
resource: "pods", resource: "pods",
namespace: "default", namespace: "default",
writeChoices: []choiceWeight[KubernetesRequestType]{ writeChoices: []choiceWeight[KubernetesRequestType]{
{choice: KubernetesUpdate, weight: 75}, {choice: KubernetesUpdate, weight: 90},
{choice: KubernetesDelete, weight: 15}, {choice: KubernetesDelete, weight: 5},
{choice: KubernetesCreate, weight: 10}, {choice: KubernetesCreate, weight: 5},
}, },
}, },
} }