https://github.com/jefking/uhackfest
Hacking on Azure Batch (mainly)
https://github.com/jefking/uhackfest
arm azure azure-batch batch cloud iaac template
Last synced: 2 months ago
JSON representation
Hacking on Azure Batch (mainly)
- Host: GitHub
- URL: https://github.com/jefking/uhackfest
- Owner: jefking
- License: mit
- Created: 2018-09-05T15:54:38.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-10-17T20:10:23.000Z (over 6 years ago)
- Last Synced: 2025-02-01T23:17:29.189Z (4 months ago)
- Topics: arm, azure, azure-batch, batch, cloud, iaac, template
- Language: Python
- Homepage:
- Size: 101 KB
- Stars: 0
- Watchers: 10
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Azure Upgrade Custom Hackfest
Major challenges facing Azure upgrade. Tackled in order; to help learning and remove technical blockers.## Helpful Commands
### Login to Azure via CLI
```
az login
```
### Set Default Subscription
```
az account set --subscription ""
```### Create Resource Group
```
az group create -g hackers --location "West US 2"
```### Create resource: example for subdirectories
```
az group deployment create \
--name deployment \
--resource-group hackers \
--template-file resources.json \
--parameters parameters.json
```