Creates exemplary/representative pod fuzzer tool#3925
Open
seans3 wants to merge 5 commits intokubernetes:masterfrom
Open
Creates exemplary/representative pod fuzzer tool#3925seans3 wants to merge 5 commits intokubernetes:masterfrom
seans3 wants to merge 5 commits intokubernetes:masterfrom
Conversation
Contributor
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: seans3 The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
001261e to
fab4c54
Compare
- Implement local CreatePodWithRetries to remove k8s.io/kubernetes dependency. - Initialize go.mod with k8s.io v0.32.1 dependencies. - Update README and CLI flags to reflect standalone directory structure. Examples: 1. High-concurrency 50k pod injection: go run cmd/main.go --base-pod templates/complex-daemonset.yaml --namespace fuzz-test --name-prefix representative-pod --count 50000 --concurrency 100 2. Single fuzzed output pod for inspection: go run cmd/main.go --base-pod templates/complex-daemonset.yaml --count 1 --out-dir ./output-pod
187fe78 to
c76b4df
Compare
Author
|
/cc @jpbetz |
Author
|
/cc @serathius |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Examples:
From the
fuzzerdirectory run:Measuring the memory and performance impact of high-density metadata in the Kubernetes control plane requires objects that mirror production complexity. This PR introduces the Exemplary Pod Fuzzer, a specialized utility that replaces generic synthetic objects with high-fidelity "Sanitize & Clone" instances derived from real-world infrastructure manifests.
By ingesting real pod shapes and scrubbing all PII while preserving structural DNA—such as deep ManagedFields and dense container specs—the tool enables reproducible 50,000+ pod benchmarks. This framework is specifically tuned to validate kube-apiserver optimizations like string interning and field stripping under extreme object pressure.
Key Capabilities
/kind feature