Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
generate_tests: Use "latest" markers instead of "k8s-*" pseudo-versions
The "k8s-beta" version marker leads to confusion as sometimes "beta" should refer to the current pre-release branch and sometimes it should point to master. There is no consistent guidance or follow-through on how or when these markers need to be changed, which can lead to a slew of tests that don't test what we think they do. As a first step, we're setting test_config.yaml to use the "latest**" version markers, which are pretty clear at a glance which version of Kubernetes will be tested against: - "dev" --> "latest" --> 1.18.0-ish - "beta" --> "latest" --> 1.18.0-ish - "stable1" --> "latest-1.16" --> 1.16-ish - "stable2" --> "latest-1.15" --> 1.15-ish - "stable3" --> "latest-1.14" --> 1.14-ish Note that "beta" here was shifted back to be even with "dev" since we've just finished cutting the 1.17.0 release. Signed-off-by: Stephen Augustus <[email protected]>
- Loading branch information