Skip to content

Commit

Permalink
Merge pull request etcd-io#16115 from serathius/robustness-kubernetes…
Browse files Browse the repository at this point in the history
…-tune

tests/robustness: Tune Kubernetes tests to reduce number of delete requests
  • Loading branch information
serathius committed Jun 20, 2023
2 parents 486462a + 519617c commit fd3e338
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/robustness/traffic/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -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},
},
},
}
Expand Down

0 comments on commit fd3e338

Please sign in to comment.