Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
58 of your 226 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.
Upstream (GitHub) caused delay on this scan — not Repobility.
  • GitHub API rate-limited (HTTP 403) — preflight skipped, fell back to direct git clone.
  • Clone from GitHub took 55.04s for a 200.1 MB repo slow.
  • Repobility's analysis ran in 49.92s after the clone landed.

kubernetes/kubernetes

https://github.com/kubernetes/kubernetes · scanned 2026-06-05 05:10 UTC (1 week, 1 day ago) · 10 languages

1074 raw signals (178 security + 896 graph) 11/13 scanners ran 60th percentile · Go · huge (>500K LoC)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 1 week, 1 day ago · v2 · 491 actionable findings from 2 signal sources. 133 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 85.0 0.15 12.75
security_score 100.0 0.25 25.00
testing_score 85.0 0.20 17.00
documentation_score 98.0 0.15 14.70
practices_score 42.0 0.15 6.30
code_quality 69.0 0.10 6.90
Overall 1.00 82.7
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: severity: low × excluding tests × Reset all
Scan summary Quality grade A- (83/100). Dimensions: security 100, maintainability 85. 178 findings (37 security). 3,836,706 lines analyzed.

Showing 372 of 491 actionable findings. 624 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

low Security checks quality Quality conf 1.00 3 occurrences [SEC093] Go: exec.Command with non-literal: exec.Command(<var>) — variable command name allows command injection. Ported from gosec G204 (Apache-2.0).
Use a constant command name and validate args via a whitelist.
3 files, 3 locations
cluster/gce/gci/mounter/mounter.go:70
cmd/importverifier/importverifier.go:231
pkg/kubelet/kubelet_server_journal_linux.go:68
low Security checks quality Quality conf 1.00 [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
hack/verify-flags-underscore.py:42
low Security checks quality Error handling conf 0.55 ✓ Repobility Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
hack/verify-flags-underscore.py:42 Error handlingquality
low Security checks quality Error handling conf 1.00 3 occurrences [ERR003] Ignored Error (Go): Ignoring error return values.
Handle the error or use errcheck linter.
3 files, 3 locations
cmd/kubeadm/app/cmd/options/generic.go:66
cmd/kubeadm/app/cmd/phases/upgrade/apply/preflight.go:91
cmd/kubeadm/app/cmd/upgrade/common.go:203
low Security checks cicd CI/CD security conf 0.72 5 occurrences Dockerfile installs recommended OS packages
Add `--no-install-recommends` and explicitly list only packages the image needs.
5 files, 5 locations
cluster/gce/gci/mounter/Dockerfile:17
test/images/agnhost/Dockerfile:25
test/images/glibc-dns-testing/Dockerfile:32
test/images/node-perf/npb-ep/Dockerfile:18
test/images/node-perf/npb-is/Dockerfile:18
CI/CD securitycontainers
low Security checks cicd CI/CD security conf 0.74 4 occurrences Dockerfile leaves apt package indexes in the image layer
End the apt install layer with `rm -rf /var/lib/apt/lists/*`.
4 files, 4 locations
cluster/gce/gci/mounter/Dockerfile:17
test/images/agnhost/Dockerfile:25
test/images/node-perf/npb-ep/Dockerfile:18
test/images/node-perf/npb-is/Dockerfile:18
CI/CD securitycontainers
low Security checks quality Quality conf 0.60 30 occurrences Duplicated implementation block across source files
Duplicate implementation blocks are maintenance debt. Keep them visible, but they are not a high-severity defect unless the duplicated logic is security-sensitive or drifting.
12 files, 25 locations
cmd/gotemplate/gotemplate.go:1, 2, 3, 6 (4 hits)
cmd/genman/gen_kube_man.go:1, 2, 3 (3 hits)
cmd/genyaml/gen_kubectl_yaml.go:1, 2, 125 (3 hits)
cmd/importverifier/importverifier.go:1, 2, 4 (3 hits)
cmd/genkubedocs/gen_kube_docs.go:1, 2 (2 hits)
cmd/genkubedocs/postprocessing.go:1, 2 (2 hits)
cmd/genswaggertypedocs/swagger_type_docs.go:2, 3 (2 hits)
cmd/kube-apiserver/apiserver.go:1, 2 (2 hits)
duplicationquality
low Security checks quality Quality conf 0.70 Generated build artifact directory is present at repository root
Remove generated output from version control, add it to .gitignore and .dockerignore where relevant, and regenerate it in CI or release jobs.
build:1
low System graph quality Maintenance conf 1.00 2156 TODO/FIXME markers
High count of TODO/FIXME/HACK markers — track them as issues so they're not forgotten.
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: registry.k8s.io/build-image/go-runner:v2.3.1-go1.17.2-bullseye.0
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
cluster/images/kubemark/Dockerfile:22 containersPinned dependencies
low System graph hardware Supply chain conf 1.00 Docker base image is tag-pinned but not digest-pinned: ubuntu:xenial
Container tags can be retagged upstream. Pin production base images to a reviewed digest (`image@sha256:...`) when reproducibility and supply-chain integrity matter.
cluster/gce/gci/mounter/Dockerfile:14 containersPinned dependencies
low System graph software Dead code candidate conf 1.00 File has no detected symbols: hack/boilerplate/test/fail.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code candidate conf 1.00 File has no detected symbols: hack/boilerplate/test/pass.py
Source file with no class/function declarations — possible config, dead code, or scratch file.
low System graph software Dead code conf 1.00 Possibly dead Python function: import_replace
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
staging/src/k8s.io/kubectl/pkg/util/i18n/translations/extract.py:44
low System graph software Dead code conf 1.00 Possibly dead Python function: long_string_replace
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
staging/src/k8s.io/kubectl/pkg/util/i18n/translations/extract.py:62
low System graph software Dead code conf 1.00 Possibly dead Python function: short_replace
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
staging/src/k8s.io/kubectl/pkg/util/i18n/translations/extract.py:37
low System graph software Dead code conf 1.00 Possibly dead Python function: string_flag_replace
No callers detected by AST scan in this repo. Could be exported for external callers or a framework handler.
staging/src/k8s.io/kubectl/pkg/util/i18n/translations/extract.py:54
low System graph quality Complexity conf 1.00 Very large file: cluster/gce/gci/configure-helper.sh (3701 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: cluster/gce/util.sh (4218 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: cmd/kube-controller-manager/app/options/options_test.go (1631 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: cmd/kubeadm/app/apis/kubeadm/v1/zz_generated.conversion.go (1199 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go (1199 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: cmd/kubeadm/app/apis/kubeadm/validation/validation_test.go (1722 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: cmd/kubeadm/app/phases/controlplane/manifests_test.go (1265 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: cmd/kubelet/app/server.go (1453 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: hack/local-up-cluster.sh (1580 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/api/pod/util.go (2009 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/api/pod/util_test.go (7461 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/api/pod/warnings_test.go (2089 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/admissionregistration/types.go (1498 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/admissionregistration/v1/zz_generated.conversion.go (1632 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/admissionregistration/v1alpha1/zz_generated.conversion.go (1124 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/admissionregistration/v1beta1/zz_generated.conversion.go (1572 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/admissionregistration/validation/validation.go (1537 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/admissionregistration/validation/validation_test.go (6156 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/apps/v1/zz_generated.conversion.go (1322 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/apps/v1beta1/zz_generated.conversion.go (980 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/apps/v1beta2/zz_generated.conversion.go (1418 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/apps/validation/validation_test.go (3898 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/autoscaling/v2/zz_generated.conversion.go (1041 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/autoscaling/validation/validation_test.go (2134 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/batch/validation/validation.go (1089 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/batch/validation/validation_test.go (4552 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/certificates/validation/validation_test.go (4683 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/core/types.go (7228 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/core/v1/defaults_test.go (3370 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/core/v1/zz_generated.conversion.go (9464 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/core/validation/validation.go (9748 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/core/zz_generated.deepcopy.go (6944 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/extensions/v1beta1/zz_generated.conversion.go (1912 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/flowcontrol/v1/zz_generated.conversion.go (870 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/flowcontrol/v1beta1/zz_generated.conversion.go (855 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/flowcontrol/v1beta2/zz_generated.conversion.go (855 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/flowcontrol/v1beta3/zz_generated.conversion.go (839 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/flowcontrol/validation/validation_test.go (1459 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/networking/v1/zz_generated.conversion.go (1227 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/networking/v1beta1/zz_generated.conversion.go (947 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/networking/validation/validation_test.go (3047 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/resource/types.go (2263 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/resource/v1/zz_generated.conversion.go (1618 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/resource/v1/zz_generated.validations.go (2856 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/resource/v1beta1/zz_generated.conversion.go (1649 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/resource/v1beta1/zz_generated.validations.go (2859 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/resource/v1beta2/zz_generated.conversion.go (1792 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/resource/v1beta2/zz_generated.validations.go (2943 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/resource/validation/validation.go (1623 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/resource/validation/validation_resourceclaim_test.go (2394 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/resource/validation/validation_resourceslice_test.go (1582 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/scheduling/v1alpha3/zz_generated.validations.go (1557 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/apis/storage/validation/validation_test.go (2739 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/controller_utils.go (1452 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/controller_utils_test.go (1789 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/cronjob/cronjob_controllerv2_test.go (1899 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/daemon/daemon_controller.go (1560 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/daemon/daemon_controller_test.go (3675 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/devicetainteviction/device_taint_eviction.go (1691 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/devicetainteviction/device_taint_eviction_test.go (2926 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/disruption/disruption_test.go (1618 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/endpoint/endpoints_controller_test.go (3306 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/endpointslice/endpointslice_controller_test.go (2190 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/garbagecollector/garbagecollector_test.go (3181 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/history/controller_history_test.go (1740 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/job/job_controller.go (2247 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/job/job_controller_test.go (8003 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/nodelifecycle/node_lifecycle_controller.go (1399 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/nodelifecycle/node_lifecycle_controller_test.go (4097 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/podautoscaler/horizontal.go (1701 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/podautoscaler/horizontal_test.go (6266 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/podautoscaler/replica_calculator_test.go (2369 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/replicaset/replica_set_test.go (2177 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/resourceclaim/controller.go (1808 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/resourceclaim/controller_test.go (2096 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/statefulset/stateful_set_control_test.go (4380 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/statefulset/stateful_set_utils_test.go (1933 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/volume/attachdetach/cache/actual_state_of_world_test.go (1541 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/volume/attachdetach/reconciler/reconciler_test.go (1872 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/volume/persistentvolume/binder_test.go (1090 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/controller/volume/persistentvolume/pv_controller.go (2024 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/credentialprovider/plugin/plugin_test.go (1697 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/features/kube_features.go (2682 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubeapiserver/options/authentication_test.go (1789 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/allocation/allocation_manager_test.go (2485 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/apis/config/types.go (972 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/apis/config/v1beta1/defaults_test.go (1114 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/apis/config/v1beta1/zz_generated.conversion.go (1154 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/cm/cpumanager/policy_static_test.go (2755 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/cm/cpumanager/policy_test.go (2786 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/cm/cpumanager/topology/topology_test.go (1634 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/cm/devicemanager/manager.go (1273 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/cm/devicemanager/manager_test.go (2207 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/cm/devicemanager/topology_hints_test.go (2044 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/cm/dra/manager_test.go (2906 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/cm/memorymanager/memory_manager_test.go (2420 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/cm/memorymanager/policy_static.go (1494 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/cm/memorymanager/policy_static_test.go (5708 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/cm/testing/mocks.go (2484 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/container/testing/mocks.go (1984 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/eviction/eviction_manager_test.go (3174 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/eviction/helpers.go (1318 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/eviction/helpers_test.go (3723 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/images/image_manager_test.go (1651 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/images/pullmanager/image_pull_manager_test.go (1678 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/images/pullmanager/mem_pullrecords_test.go (1347 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/kubelet.go (3588 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/kubelet_node_status_test.go (3233 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/kubelet_pods.go (2959 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/kubelet_pods_test.go (9320 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/kubelet_test.go (5220 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/kuberuntime/kuberuntime_container.go (1464 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go (2172 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/kuberuntime/kuberuntime_manager.go (2306 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/kuberuntime/kuberuntime_manager_test.go (6062 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/metrics/metrics.go (1471 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/nodestatus/setters_test.go (1957 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/pod_workers.go (1758 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/pod_workers_test.go (2675 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/server/server_test.go (2540 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/stats/cri_stats_provider_test.go (1596 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/status/status_manager.go (1494 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/status/status_manager_test.go (3096 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/volumemanager/cache/desired_state_of_world_test.go (1576 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go (1621 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/kubelet/volumemanager/reconciler/reconciler_test.go (2617 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/printers/internalversion/printers.go (3575 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/printers/internalversion/printers_test.go (8627 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/proxy/endpointschangetracker_test.go (1650 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/proxy/iptables/proxier.go (1483 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/proxy/iptables/proxier_test.go (6713 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/proxy/ipvs/proxier.go (1774 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/proxy/ipvs/proxier_test.go (5655 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/proxy/nftables/helpers_test.go (1145 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/proxy/nftables/proxier.go (1830 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/proxy/nftables/proxier_test.go (4852 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/proxy/winkernel/proxier.go (1800 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/proxy/winkernel/proxier_test.go (2676 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/registry/batch/job/strategy_test.go (3969 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/registry/core/pod/strategy_test.go (4466 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/registry/core/service/storage/storage_test.go (11873 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/registry/resource/resourceclaim/strategy_test.go (1825 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/apis/config/v1/zz_generated.conversion.go (990 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/backend/cache/cache_test.go (2714 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/backend/queue/scheduling_queue.go (1782 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/backend/queue/scheduling_queue_test.go (7209 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/plugins/defaultpreemption/default_preemption_test.go (2726 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/plugins/dynamicresources/dynamicresources.go (1919 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/plugins/dynamicresources/dynamicresources_test.go (5135 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go (1485 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/plugins/noderesources/fit_test.go (2716 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/plugins/podtopologyspread/filtering_test.go (3534 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/plugins/podtopologyspread/scoring_test.go (1499 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/plugins/volumebinding/binder_test.go (2349 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/plugins/volumebinding/volume_binding_test.go (1896 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/preemption/executor_test.go (1570 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/preemption/podgrouppreemption_test.go (1402 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/runtime/framework.go (2332 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/runtime/framework_test.go (4816 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/types.go (1434 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/framework/types_test.go (3515 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/schedule_one.go (1337 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/schedule_one_podgroup_test.go (3105 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/schedule_one_test.go (4912 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/scheduler_test.go (1486 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/scheduler/testing/wrappers.go (1750 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/util/iptables/iptables_test.go (1599 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/volume/csi/csi_attacher_test.go (1671 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/volume/csi/csi_mounter_test.go (1739 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/volume/testing/testing.go (1753 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: pkg/volume/util/operationexecutor/operation_generator.go (2228 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: plugin/pkg/admission/limitranger/admission_test.go (1063 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: plugin/pkg/admission/noderestriction/admission_test.go (2611 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: plugin/pkg/admission/resourcequota/admission_test.go (2738 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: plugin/pkg/auth/authorizer/node/node_authorizer_test.go (1715 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/admissionregistration/v1/generated.pb.go (9060 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/admissionregistration/v1/types.go (1572 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/admissionregistration/v1alpha1/generated.pb.go (6033 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/admissionregistration/v1alpha1/types.go (1018 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/admissionregistration/v1beta1/generated.pb.go (8593 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/admissionregistration/v1beta1/types.go (1540 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/apps/v1/generated.pb.go (7857 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/apps/v1/types.go (1020 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/apps/v1beta1/generated.pb.go (6002 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/apps/v1beta2/generated.pb.go (8533 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/apps/v1beta2/types.go (1095 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/authentication/v1/generated.pb.go (2552 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/authorization/v1/generated.pb.go (4063 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go (3677 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/autoscaling/v1/generated.pb.go (5518 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/autoscaling/v2/generated.pb.go (5899 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/batch/v1/generated.pb.go (4768 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/certificates/v1beta1/generated.pb.go (3867 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/core/v1/types.go (8523 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go (2927 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go (6954 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/extensions/v1beta1/generated.pb.go (10667 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/extensions/v1beta1/types.go (1275 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/flowcontrol/v1/generated.pb.go (4921 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/flowcontrol/v1beta1/generated.pb.go (4916 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/flowcontrol/v1beta2/generated.pb.go (4916 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/flowcontrol/v1beta3/generated.pb.go (4916 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/networking/v1/generated.pb.go (7187 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/networking/v1beta1/generated.pb.go (5112 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/rbac/v1/generated.pb.go (2831 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/rbac/v1alpha1/generated.pb.go (2831 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/rbac/v1beta1/generated.pb.go (2831 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/resource/v1/generated.pb.go (12037 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/resource/v1/types.go (2193 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/resource/v1alpha3/generated.pb.go (2995 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/resource/v1beta1/generated.pb.go (12027 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/resource/v1beta1/types.go (2199 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/resource/v1beta2/generated.pb.go (13040 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/resource/v1beta2/types.go (2340 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/scheduling/v1alpha3/generated.pb.go (4229 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/storage/v1/generated.pb.go (5458 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/storage/v1alpha1/generated.pb.go (2677 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/api/storage/v1beta1/generated.pb.go (5458 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.pb.go (8738 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go (1363 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/generated.pb.go (8863 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go (1412 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go (1923 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go (11919 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go (1550 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go (2108 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go (1940 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go (5254 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/generated/openapi/zz_generated.openapi.go (6750 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go (1780 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go (1669 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test.go (2081 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiextensions-apiserver/test/integration/validation_test.go (2080 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apimachinery/pkg/api/resource/quantity_test.go (1983 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.pb.go (10536 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go (1666 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/v1/generated.pb.go (2323 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go (2253 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go (7061 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/admission_test.go (2002 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/admission/plugin/webhook/testing/testcase.go (1350 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1/zz_generated.conversion.go (1031 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1alpha1/zz_generated.conversion.go (1016 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/apis/apiserver/v1beta1/zz_generated.conversion.go (952 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go (2564 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.pb.go (3124 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/cel/library/cost_test.go (1516 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/endpoints/apiserver_test.go (4626 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/endpoints/filters/impersonation/constrained_impersonation_test.go (2406 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/endpoints/filters/read_write_deadline_test.go (1498 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/endpoints/installer.go (1353 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store.go (1780 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go (3138 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/registry/rest/resttest/resttest.go (1607 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/server/config.go (1226 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/server/filters/priority-and-fairness_test.go (1534 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go (2245 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go (1465 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher_whitebox_test.go (3414 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go (4481 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/storage/testing/watcher_tests.go (1826 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go (1162 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go (1599 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go (5069 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/cli-runtime/pkg/resource/builder_test.go (1957 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/client-go/applyconfigurations/internal/internal.go (16039 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/client-go/applyconfigurations/utils.go (1976 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/client-go/discovery/discovery_client_test.go (2882 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/client-go/rest/request_test.go (4277 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/client-go/tools/cache/reflector.go (1333 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/client-go/tools/cache/reflector_test.go (2534 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/client-go/tools/cache/shared_informer.go (1409 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/client-go/tools/remotecommand/websocket_test.go (1459 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/cloud-provider/controllers/node/node_controller_test.go (2815 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/cloud-provider/controllers/service/controller_test.go (2444 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/cloud-provider/volume/helpers/zones_test.go (1675 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/code-generator/cmd/validation-gen/validation.go (2023 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/code-generator/examples/apiserver/openapi/zz_generated.openapi.go (3503 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/component-base/featuregate/feature_gate_test.go (2580 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/component-helpers/resource/helpers_test.go (2717 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api.pb.go (13068 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/cri-api/pkg/apis/runtime/v1/api_grpc.pb.go (2097 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.
low System graph quality Complexity conf 1.00 Very large file: staging/src/k8s.io/dynamic-resource-allocation/api/v1beta1/zz_generated.conversion.go (1648 lines)
Files with >800 lines often hide complexity hotspots and discourage tests.

Showing first 300 of 372. Refine filters or use the findings page for deep search.

For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/ff9a7d79-b095-4271-96e0-6710ec3d6b0f/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/ff9a7d79-b095-4271-96e0-6710ec3d6b0f/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.