AzureStack-Tools/README.md

82 строки
2.8 KiB
Markdown
Исходник Обычный вид История

# Tools for using Azure and Azure Stack
2016-08-26 22:50:44 +03:00
2016-09-21 20:40:36 +03:00
To use these tools, obtain Azure Stack compatible Azure PowerShell module and CLI. Unless you've installed from other sources, one way to do it is to obtain from public package repositories as follows. Note that both of these could still be used to operate against Azure as well as Azure Stack, but may lack some of the latest Azure features.
2016-09-21 20:38:50 +03:00
```powershell
Install-Module -Name AzureRm -RequiredVersion 1.2.6 -Scope CurrentUser
```
```
npm install azure-cli@0.9.18
```
2016-09-29 20:37:50 +03:00
Obtain the tools by cloning the git repo.
```
git clone https://github.com/Azure/AzureStack-Tools.git --recursive
cd AzureStack-Tools
```
Otherwise download the tools as follows
2016-09-28 22:02:03 +03:00
```powershell
invoke-webrequest https://github.com/Azure/AzureStack-Tools/archive/master.zip -OutFile master.zip
expand-archive master.zip -DestinationPath . -Force
cd AzureStack-Tools-master
```
2016-09-29 20:37:50 +03:00
Instructions below are relative to the root of the repo.
2016-09-28 22:02:03 +03:00
2016-09-29 23:01:40 +03:00
## [Azure Resource Manager policy for Azure Stack](Policy)
2016-08-26 22:50:44 +03:00
2016-09-29 23:01:40 +03:00
Constrains Azure subscription to the capabilities available in the Azure Stack.
2016-09-30 21:59:05 +03:00
- Apply Azure Stack policy to Azure subscriptions and resource groups
2016-08-26 22:50:44 +03:00
2016-09-29 23:01:40 +03:00
## [Deployment of Azure Stack](Deployment)
2016-09-22 20:00:28 +03:00
2016-11-14 20:45:36 +03:00
Helps prepare for Azure Stack deployment.
2016-09-30 21:59:05 +03:00
- Prepare to Deploy (boot from VHD)
- Prepare to Redeploy (boot back to original/base OS)
2016-09-25 23:55:40 +03:00
2016-09-29 23:01:40 +03:00
## [Connecting to Azure Stack](Connect)
2016-09-25 23:55:40 +03:00
2016-09-29 23:01:40 +03:00
Connect to an Azure Stack instance from your personal computer/laptop.
2016-09-30 21:59:05 +03:00
- Connect via VPN to an Azure Stack installation
- Configure Azure Stack PowerShell environment
- Prepare new subscriptions for use in PowerShell and CLI
2016-09-24 01:09:43 +03:00
2016-09-29 23:01:40 +03:00
## [Azure Stack Service Administration](ServiceAdmin)
2016-09-24 01:09:43 +03:00
2016-09-29 23:01:40 +03:00
Manage plans and subscriptions in Azure Stack.
2016-09-30 21:59:05 +03:00
- Add default (unlimited) plans and quotas so that tenants can create new subscriptions
2016-09-24 01:09:43 +03:00
2016-09-29 23:01:40 +03:00
## [Azure Stack Compute Administration](ComputeAdmin)
2016-09-24 01:02:22 +03:00
2016-09-29 23:01:40 +03:00
Manage compute (VM) service in Azure Stack.
2016-09-30 21:59:05 +03:00
- Add VM Image to the Azure Stack Marketplace
2016-09-24 01:02:22 +03:00
2016-10-04 01:30:04 +03:00
## [Azure Stack Infrastructure Administration](Infrastructure)
Manage Azure Stack Infrastructure
- Get Infrastructure resolve
- Get Infrastructure Virtual machines
- Get Storage Capacity
- Get Storage Shares
- Get Scale Unit
- Get Node
- Get Logical network
- Get Alert
- Close Alert
- Get Update Region Summary
- Get Update
- Apply Update
- Get Update run
## [AzureRM Template Validator](AzureRMTemplateValidator)
Validate Azure ARM Template Capabilities
- resources - Types, Location, Apiversion
- Compute Capabilities - extensions, images, sizes
2016-10-04 01:30:04 +03:00
2016-09-24 01:50:03 +03:00
---
2016-09-24 01:53:49 +03:00
_This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments._