Skip to content
This repository has been archived by the owner on Oct 22, 2024. It is now read-only.

Commit

Permalink
Merge pull request #815 from pohly/release-0.8
Browse files Browse the repository at this point in the history
release-0.8: disable 0.7.x
  • Loading branch information
pohly authored Nov 16, 2020
2 parents b4b8754 + edf9120 commit b73c4ce
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ module (NVDIMM).

The [v0.8.0 release](https://github.com/intel/pmem-csi/releases/latest)
is the latest feature release and is [regularly updated](docs/DEVELOPMENT.md#release-management) with newer base images
and bug fixes. The v0.7.0 release will stop receiving updates
end of October 2020.
and bug fixes. Older releases are no longer supported.

Documentation is part of the source code for each release and also
available in rendered form for easier reading:
Expand Down
7 changes: 5 additions & 2 deletions test/e2e/versionskew/versionskew.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ import (
)

const (
// base is the release branch used for version skew testing.
base = "0.7"
// base is the release branch used for version skew testing. Empty if none.
base = ""
)

func baseSupportsKubernetes(ver version.Version) bool {
Expand Down Expand Up @@ -170,6 +170,9 @@ func (p *skewTestSuite) DefineTests(driver testsuites.TestDriver, pattern testpa
BeforeEach(func() {
ver, err := k8sutil.GetKubernetesVersion(f.ClientConfig())
framework.ExpectNoError(err, "get Kubernetes version")
if base == "" {
skipper.Skipf("version skew testing disabled")
}
if !baseSupportsKubernetes(*ver) {
skipper.Skipf("%s not supported by release-%s", ver, base)
}
Expand Down

0 comments on commit b73c4ce

Please sign in to comment.