Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions src/command_modules/azure-cli-acs/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Release History
++++++
* Updated options of `az aks use-dev-spaces` command. Added `--update` support.
* `az aks get-credentials --admin` won't replace the user context in $HOME/.kube/config
* expose read-only "nodeResourceGroup" property on managed clusters
* fix `az acs browse` command error

2.1.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ def test_aks_create_default_service(self, resource_group, resource_group_locatio
'--service-principal={service_principal} --client-secret={client_secret}'
self.cmd(create_cmd, checks=[
self.exists('fqdn'),
self.exists('nodeResourceGroup'),
self.check('provisioningState', 'Succeeded')
])

Expand All @@ -58,6 +59,7 @@ def test_aks_create_default_service(self, resource_group, resource_group_locatio
self.cmd('aks show -g {resource_group} -n {name}', checks=[
self.check('type', '{resource_type}'),
self.check('name', '{name}'),
self.exists('nodeResourceGroup'),
self.check('resourceGroup', '{resource_group}'),
self.check('agentPoolProfiles[0].count', 1),
self.check('agentPoolProfiles[0].osType', 'Linux'),
Expand Down
2 changes: 1 addition & 1 deletion src/command_modules/azure-cli-acs/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
DEPENDENCIES = [
'azure-mgmt-authorization==0.40.0',
'azure-mgmt-compute==4.0.0rc2',
'azure-mgmt-containerservice==4.0.0',
'azure-mgmt-containerservice==4.1.0',
'azure-graphrbac==0.40.0',
'azure-cli-core',
'paramiko',
Expand Down