Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
8f5ef2b
Initial support for VM and single zone VMSS (#14)
yugangw-msft Aug 4, 2017
7436a62
use a private copy of network sdk with zone support (#15)
yugangw-msft Aug 4, 2017
9e79e60
Support for zoned public IP. Make global zone_type and zones_type. (#16)
tjprescott Aug 7, 2017
9f071df
apply api version range on vm zone test (#19)
yugangw-msft Aug 8, 2017
1b2bcc2
show zone in the table output (#20)
yugangw-msft Aug 8, 2017
1db07c3
install: support to build out a msi installer from local sources (#17)
yugangw-msft Aug 8, 2017
4ec859c
doc:add command examples using availability zones (#21)
yugangw-msft Aug 9, 2017
9757370
resolve conflicts with master
yugangw-msft Aug 10, 2017
cebafe6
Merge branch 'master' into az
yugangw-msft Aug 11, 2017
157ca06
Installer: build debian bundle from a local clone (#28)
yugangw-msft Aug 14, 2017
6d751d3
resolve conflicts caused by zone support
yugangw-msft Sep 7, 2017
e505c66
skip a few expeneive travis builds
yugangw-msft Sep 7, 2017
881353c
test: update tests to work with new azure-mgmt-compute with zone support
yugangw-msft Sep 8, 2017
1bb2ef0
network: support zone in network lb create (#37)
yugangw-msft Sep 13, 2017
64afaa3
resolve conflicts from public master branch
yugangw-msft Sep 14, 2017
7458d24
VNet peering examples. (#51)
tjprescott Sep 18, 2017
e82f1d0
Add BrazilUS and Dogfood cloud config files. (#50)
tjprescott Sep 18, 2017
0baf2c1
resolve conflicts with public master
yugangw-msft Sep 18, 2017
2aa24b8
merge conflicts with public master
yugangw-msft Sep 19, 2017
ceb0d44
resolve conflicts with public master
yugangw-msft Sep 20, 2017
6577c45
Merge branch 'master' into az
yugangw-msft Sep 21, 2017
493d42a
Merge branch 'master' into az
yugangw-msft Sep 21, 2017
d205eb1
undo all changes specifically for private repository
yugangw-msft Sep 22, 2017
b0d81f8
fix help per review feedback
yugangw-msft Sep 22, 2017
c396c1c
fix lint error
yugangw-msft Sep 22, 2017
d7586ad
use newer nrp sdk version
yugangw-msft Sep 22, 2017
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
Add BrazilUS and Dogfood cloud config files. (#50)
  • Loading branch information
tjprescott authored and yugangw-msft committed Sep 18, 2017
commit e82f1d09e5de6b9f2a54d06f2ac0d6de38d3a3eb
10 changes: 10 additions & 0 deletions test_clouds/brazilus.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"Name": "ARMTest",
"EndpointActiveDirectoryResourceId": "https://management.core.windows.net/",
"EndpointGallery": "https://gallery.azure.com/",
"EndpointManagement": "https://brazilus.management.azure.com/",
"EndpointResourceManager": "https://brazilus.management.azure.com/",
"EndpointActiveDirectory": "https://login.windows.net/",
"EndpointActiveDirectoryGraphWindowsId": "https://graph.windows.net/",
"EndpointVmImageAliasDoc": "https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json"
}
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Still keep this in public? @tjprescott?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No no. This should only be in the private repo.

11 changes: 11 additions & 0 deletions test_clouds/dogfood.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"EndpointActiveDirectory": "https://login.windows-ppe.net/",
"EndpointActiveDirectoryGraphResourceId": "https://graph.ppe.windows.net/",
"EndpointActiveDirectoryGraphWindowsId": "https://graph.ppe.windows.net/",
"EndpointActiveDirectoryResourceId": "https://management.core.windows.net/",
"EndpointGallery": "https://df.gallery.azure-test.net/",
"EndpointManagement": "https://windows.azure-test.net/",
"EndpointResourceManager": "https://api-dogfood.resources.windows-int.net/",
"SuffixKeyvaultDns": ".vault-int.azure-int.net",
"vmImageAliasDoc": "https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json"
}
1 change: 1 addition & 0 deletions tools/automation/tests/verify_packages.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@ def verify_packages(built_packages_dir):
p = multiprocessing.Pool(multiprocessing.cpu_count())
for i, res in enumerate(p.imap_unordered(run_help_on_command_without_err, all_commands, 10), 1):
sys.stderr.write('{}/{}'.format(i, len(all_commands)))
sys.stderr.flush()
command_results.append(res)

p.close()
Expand Down