1. 10 Feb, 2020 1 commit
    • prow.sh: generic driver installation · 84f78b12
      Patrick Ohly authored
      This relies on a slightly different deployment script: a "deploy.sh"
      must exist which knows that it has to dump a test driver configurion
      into the file pointed to with CSI_PROW_TEST_DRIVER, if that env
      variable is set.
      
      That way, we no longer need to know what capabilities the installed
      driver has.
  2. 24 Jan, 2020 1 commit
  3. 19 Jan, 2020 1 commit
  4. 13 Jan, 2020 1 commit
  5. 11 Jan, 2020 1 commit
  6. 10 Jan, 2020 2 commits
  7. 08 Jan, 2020 2 commits
  8. 02 Jan, 2020 4 commits
  9. 23 Dec, 2019 1 commit
  10. 21 Dec, 2019 1 commit
  11. 18 Dec, 2019 1 commit
  12. 17 Dec, 2019 1 commit
    • Enable snapshot tests in 1.17 to be run in non-alpha jobs. · b98b2aed
      Michelle Au authored
      This requires adding one more parallel e2e test run with
      a special focus flag because snapshot tests are still guarded
      with a "[Feature:VolumeSnapshotDataSource]" tag. The setting that
      skips all tests with "[Feature:.*]" has to be removed because it
      overrides the focus.
      
      We don't have serial snapshot tests yet. This needs to be modified
      again if we add any in the future.
  13. 06 Dec, 2019 1 commit
  14. 04 Dec, 2019 6 commits
  15. 03 Dec, 2019 1 commit
  16. 02 Dec, 2019 1 commit
  17. 29 Nov, 2019 1 commit
    • Use kind v0.6.0 · 80bba1fe
      Sunny authored
      kind v0.6.0 appends the kubeconfig with the default config at
      ~/.kube/config.
  18. 26 Nov, 2019 1 commit
  19. 25 Nov, 2019 1 commit
  20. 24 Nov, 2019 1 commit
  21. 21 Nov, 2019 2 commits
  22. 19 Nov, 2019 1 commit
  23. 06 Nov, 2019 1 commit
  24. 05 Nov, 2019 1 commit
  25. 04 Nov, 2019 3 commits
  26. 31 Oct, 2019 2 commits
    • Merge pull request #41 from pohly/go-version · a53bd4c4
      Kubernetes Prow Robot authored
      Go version 1.13, helper scripts
    • better handling of Go version · c8a1c4af
      Patrick Ohly authored
      Some operations are sensitive to the version of Go that is used. In
      the past, formatting of source differed depending on the
      version. Right now it is the content of the vendor directory which
      changes when switch back and forth between 1.12 and 1.13.
      
      We don't want to impose a certain workflow on developers, like forcing
      all invocations of Go to run inside a container. If developers want
      that, they can set up their development environment accordingly.
      
      But we should warn about this aspect to raise awareness. "make"
      invocations which involve Go now compare against the projects Go
      version (specified in travis.yml) once at the beginning. This is only
      a warning because we don't know which future version will be
      compatible with the project.
      
      Vendor directory handling gets updated, too: verification is now a
      separate script (became too complex for make) and there is a
      corresponding "update-vendor.sh". In contrast to verification,
      updating vendor is not integrated into make and thus itself invokes
      the go version check.