kubernetes/minikube
GitHub で見るtest: Remove duplicate kubernetes versions in tests
Open
#21,483 opened on 2025年9月3日
good first issuehelp wanted
説明
Some tests use multiple kubernetes versions:
versions := []string{
constants.OldestKubernetesVersion,
constants.DefaultKubernetesVersion,
constants.NewestKubernetesVersion,
}
Currently DefaultKubernetesVersion and constants.NewestKubernetesVersion are the same ("1.34.0") so we run the same test twice.
Fix:
- remove duplicate versions in the list