-
Notifications
You must be signed in to change notification settings - Fork 210
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
test driver config #143
test driver config #143
Commits on Dec 4, 2019
-
Configuration menu - View commit details
-
Copy full SHA for 53888ae - Browse repository at this point
Copy the full SHA 53888aeView commit details
Commits on Dec 6, 2019
-
Merge pull request kubernetes-csi#52 from msau42/update-readme
Improve README by adding an explicit Kubernetes dependency section
Configuration menu - View commit details
-
Copy full SHA for 9ace020 - Browse repository at this point
Copy the full SHA 9ace020View commit details
Commits on Dec 17, 2019
-
Enable snapshot tests in 1.17 to be run in non-alpha jobs.
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.
Configuration menu - View commit details
-
Copy full SHA for b98b2ae - Browse repository at this point
Copy the full SHA b98b2aeView commit details
Commits on Dec 18, 2019
-
Merge pull request kubernetes-csi#56 from msau42/enable-snapshots
Enable snapshot tests in 1.17 to be run in non-alpha jobs.
Configuration menu - View commit details
-
Copy full SHA for 9f1f3dd - Browse repository at this point
Copy the full SHA 9f1f3ddView commit details
Commits on Dec 21, 2019
-
Fix version_gt to work with kubernetes prefix
Signed-off-by: Grant Griffiths <grant@portworx.com>
Configuration menu - View commit details
-
Copy full SHA for fc80975 - Browse repository at this point
Copy the full SHA fc80975View commit details
Commits on Dec 23, 2019
-
Merge pull request kubernetes-csi#57 from ggriffiths/version_gt_kuber…
…netes_fix Fix version_gt to work with Kubernetes prefix
Configuration menu - View commit details
-
Copy full SHA for f6c74b3 - Browse repository at this point
Copy the full SHA f6c74b3View commit details
Commits on Jan 2, 2020
-
Configuration menu - View commit details
-
Copy full SHA for af9549b - Browse repository at this point
Copy the full SHA af9549bView commit details -
Merge pull request kubernetes-csi#60 from saad-ali/updateHostpathVersion
Update prow hostpath driver version to 1.3.0-rc2
Configuration menu - View commit details
-
Copy full SHA for 5f444b8 - Browse repository at this point
Copy the full SHA 5f444b8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 8b0316c - Browse repository at this point
Copy the full SHA 8b0316cView commit details -
Merge pull request kubernetes-csi#61 from msau42/enable-snapshots
Fix overriding of junit results
Configuration menu - View commit details
-
Copy full SHA for 3c463fb - Browse repository at this point
Copy the full SHA 3c463fbView commit details
Commits on Jan 8, 2020
-
Update snapshotter to version v2.0.0
Signed-off-by: Grant Griffiths <grant@portworx.com>
Configuration menu - View commit details
-
Copy full SHA for 8191eab - Browse repository at this point
Copy the full SHA 8191eabView commit details -
Merge pull request kubernetes-csi#64 from ggriffiths/snapshotter_2_ve…
…rsion_update Update snapshotter to version v2.0.0
Configuration menu - View commit details
-
Copy full SHA for 4cc9174 - Browse repository at this point
Copy the full SHA 4cc9174View commit details
Commits on Jan 10, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 6582f2f - Browse repository at this point
Copy the full SHA 6582f2fView commit details -
Merge pull request kubernetes-csi#65 from msau42/update-hostpath
Update hostpath driver version to get fix for connection-timeout
Configuration menu - View commit details
-
Copy full SHA for 23be652 - Browse repository at this point
Copy the full SHA 23be652View commit details
Commits on Jan 11, 2020
-
Configuration menu - View commit details
-
Copy full SHA for ac8a021 - Browse repository at this point
Copy the full SHA ac8a021View commit details
Commits on Jan 13, 2020
-
Merge pull request kubernetes-csi#54 from msau42/add-release-process
Document the process for releasing a new sidecar
Configuration menu - View commit details
-
Copy full SHA for ff3cc3f - Browse repository at this point
Copy the full SHA ff3cc3fView commit details
Commits on Jan 19, 2020
-
Configuration menu - View commit details
-
Copy full SHA for fa90abd - Browse repository at this point
Copy the full SHA fa90abdView commit details
Commits on Jan 24, 2020
-
Merge pull request kubernetes-csi#67 from windayski/fix-link
fix incorrect link
Configuration menu - View commit details
-
Copy full SHA for 3c34b4f - Browse repository at this point
Copy the full SHA 3c34b4fView commit details
Commits on Feb 10, 2020
-
prow.sh: generic driver installation
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.
Configuration menu - View commit details
-
Copy full SHA for 84f78b1 - Browse repository at this point
Copy the full SHA 84f78b1View commit details -
prow.sh: also configure feature gates for kubelet
That this hasn't been done before is an oversight. Apparently it hasn't been a problem because there never have been feature gates that mattered?
Configuration menu - View commit details
-
Copy full SHA for 5f74333 - Browse repository at this point
Copy the full SHA 5f74333View commit details -
Merge pull request kubernetes-csi#70 from pohly/kubelet-feature-gates
prow.sh: also configure feature gates for kubelet
Configuration menu - View commit details
-
Copy full SHA for a1432bc - Browse repository at this point
Copy the full SHA a1432bcView commit details -
Merge pull request kubernetes-csi#69 from pohly/test-driver-config
prow.sh: generic driver installation
Configuration menu - View commit details
-
Copy full SHA for d717c8c - Browse repository at this point
Copy the full SHA d717c8cView commit details
Commits on Feb 11, 2020
-
release-tools: update to d717c8c
This pulls in the prow.sh which uses the revised deploy script.
Configuration menu - View commit details
-
Copy full SHA for 66005a9 - Browse repository at this point
Copy the full SHA 66005a9View commit details -
deploy: move test driver definition into driver repo
This will enable the removal of hostpath specific code from csi-release-tools. The deploy script (now using the name "deploy.sh" because that can be the same for all CSI drivers) is asked to create a test driver configuration in addition to installing the driver. The script could do that dynamically. But in the CSI driver hostpath repo we simply keep one test-driver.yaml per deployment, which works based on the assumption that the E2E test suite that corresponds to the Kubernetes version is used for testing, which is the case nowadays. These three test-driver.yaml are indeed different because the name of capabilities changed over time. prow.sh used to have a union of all those names. Now each file really only uses the name that is applicable. "topology" support hadn't been enabled in prow.sh. This looks like an oversight, so it gets added now.
Configuration menu - View commit details
-
Copy full SHA for 9abf63f - Browse repository at this point
Copy the full SHA 9abf63fView commit details