Skip to content
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

{AKS} Integrate azuredisk csi driver version to cli #4865

Merged
merged 22 commits into from
May 30, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
e48fa39
Initial changes for adding azuredis-csi-version and related test case…
mukhoakash May 20, 2022
b27a42c
Review comment resolved
mukhoakash May 20, 2022
9dfedd6
Some more changes to the logic and test cases
mukhoakash May 20, 2022
8519d83
Fixes in the test cases
mukhoakash May 21, 2022
60b332a
Renaming azuredisk_csi_version to disk_driver_version
mukhoakash May 23, 2022
29d6e18
Not setting default value of disk_driver_version
mukhoakash May 25, 2022
72d4430
Fixes to the test cases
mukhoakash May 25, 2022
9b47e3e
Added new aks command test
mukhoakash May 25, 2022
25f1068
Merge branch 'main' of github.com:Azure/azure-cli-extensions into muk…
mukhoakash May 25, 2022
3fa67ef
Some test case fix
mukhoakash May 25, 2022
062179b
Added a new version in setup and updated the history
mukhoakash May 25, 2022
782f1f5
Fixing a typo test failure
mukhoakash May 25, 2022
badb55f
Some fixes to the test aks command
mukhoakash May 25, 2022
fc3f8ff
Fixing a testcase
mukhoakash May 26, 2022
236b566
Adding the test cases fixes
mukhoakash May 26, 2022
0d05116
Bypassing one test case for now before its fixed in the AKS RP
mukhoakash May 26, 2022
2ec5b39
Fixed a typo
mukhoakash May 26, 2022
706be46
Removing one failing test case which depends on fixes in the AKS RP
mukhoakash May 26, 2022
8087425
Referencing consts for default driver version
mukhoakash May 27, 2022
9e71847
Preseving default location for test case to run on eastus2euap
mukhoakash May 30, 2022
2080625
Merge branch 'main' into mukhoakash/driverversion
mukhoakash May 30, 2022
6838779
updated version in setup.py
mukhoakash May 30, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing a testcase
  • Loading branch information
mukhoakash committed May 26, 2022
commit fc3f8ffc06851696a7879496636a830892627f7b
Original file line number Diff line number Diff line change
Expand Up @@ -4161,7 +4161,7 @@ def test_aks_create_with_standard_csi_drivers(self, resource_group, resource_gro
])

@AllowLargeResponse()
@AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westcentralus')
@AKSCustomResourceGroupPreparer(random_name_length=17, name_prefix='clitest', location='westus2')
def test_aks_create_with_csi_driver_v2(self, resource_group, resource_group_location):
aks_name = self.create_random_name('cliakstest', 16)
self.kwargs.update({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -960,6 +960,12 @@ def test_get_disk_driver_update(self):
enabled = True,
version = "v2",
),
file_csi_driver = self.models.ManagedClusterStorageProfileFileCSIDriver(
enabled = False,
),
snapshot_controller = self.models.ManagedClusterStorageProfileSnapshotController(
enabled = False,
),
)
)
mc = self.models.ManagedCluster(
Expand Down