-
Notifications
You must be signed in to change notification settings - Fork 192
Add AWS EBS and AzureDisk CSI Drivers #2875
Add AWS EBS and AzureDisk CSI Drivers #2875
Conversation
Cluster Generation A/B Results: |
4612cc6
to
9de3f61
Compare
Cluster Generation A/B Results: |
Codecov Report
@@ Coverage Diff @@
## main #2875 +/- ##
==========================================
+ Coverage 43.72% 43.77% +0.05%
==========================================
Files 415 415
Lines 41444 41479 +35
==========================================
+ Hits 18120 18158 +38
+ Misses 21620 21617 -3
Partials 1704 1704
Continue to review full report at Codecov.
|
9de3f61
to
94d165c
Compare
Cluster Generation A/B Results: |
94d165c
to
e8e963b
Compare
Cluster Generation A/B Results: |
e8e963b
to
30f31b6
Compare
Cluster Generation A/B Results: |
30f31b6
to
d640249
Compare
Cluster Generation A/B Results: |
LGTM for the permissions added for EBS CSI as a workaround to upcoming fix. |
pkg/v1/providers/ytt/02_addons/public-cloud-csi/disk/azuredisk-csi-driver_data.lib.yaml
Show resolved
Hide resolved
pkg/v1/providers/ytt/02_addons/public-cloud-csi/disk/azuredisk-csi-driver_data.lib.yaml
Show resolved
Hide resolved
pkg/v1/providers/ytt/02_addons/public-cloud-csi/ebs/aws-ebs-csi-driver_data.lib.yaml
Show resolved
Hide resolved
cc @vijaykatam for reviewing overlays. |
d640249
to
074d84c
Compare
Cluster Generation A/B Results: |
if compare_semver_versions(tkrVersion, "v1.23.0") >= 0: | ||
return True | ||
end | ||
return False |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: Could this be rewritten as the following?
if compare_semver_versions(tkrVersion, "v1.23.0") >= 0: | |
return True | |
end | |
return False | |
return compare_semver_versions(tkrVersion, "v1.23.0") >= 0 |
(not nitpicking, just curious)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks and Yes !
(as FC is soon, allow me to refactor it along with coming bug fix)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good!
Add AWS EBS CSI Driver and AzureDisk CSI Driver
What this PR does / why we need it
Add AWS EBS CSI Driver and AzureDisk CSI Driver for coming k8s 1.23.x release
Which issue(s) this PR fixes
Fixes #2889
Describe testing done for PR
Release note
PR Checklist
Additional information
Special notes for your reviewer