tests/robustness: Tune Kubernetes tests to reduce number of delete requests
Having too many delete requests is bad as they are not unique requests, so linearization is more prone to timeout on them. Signed-off-by: Marek Siarkowicz <siarkowicz@google.com>
This commit is contained in:
@ -37,13 +37,13 @@ var (
|
||||
maximalQPS: 1000,
|
||||
clientCount: 12,
|
||||
Traffic: kubernetesTraffic{
|
||||
averageKeyCount: 5,
|
||||
averageKeyCount: 10,
|
||||
resource: "pods",
|
||||
namespace: "default",
|
||||
writeChoices: []choiceWeight[KubernetesRequestType]{
|
||||
{choice: KubernetesUpdate, weight: 75},
|
||||
{choice: KubernetesDelete, weight: 15},
|
||||
{choice: KubernetesCreate, weight: 10},
|
||||
{choice: KubernetesUpdate, weight: 90},
|
||||
{choice: KubernetesDelete, weight: 5},
|
||||
{choice: KubernetesCreate, weight: 5},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
Reference in New Issue
Block a user