Introduction to azure CLI 2.0

Slides:



Advertisements
Similar presentations
Start with a VM. Stuff our application into a single, bloated image.
Advertisements

New to Chef and Puppet ? Overview of Chef and Puppet and how they can automate infrastructure and application deployment on Azure. Existing Chef/Puppet.
Monitoring Microsoft Azure with Nagios
GreenSQL Yuli Stremovsky /MSN/Gtalk:
Build a SharePoint App with Microsoft Access. About me.
Esri International User Conference | San Diego, CA Technical Workshops | ArcGIS for Server Road Ahead Ismael Chivite, Anne Reuland.
Getting Started with GIT. Basic Navigation cd means change directory cd.. moves you up a level cd dir_name moves you to the folder named dir_name A dot.
Windows Azure Conference 2014 Windows Azure Mobile Services from ground up.
OM. Brad Gall Senior Consultant
POS/420 Introduction to Unix Philip Robbins – March 12, 2013 (Week 1)
Windows Azure Conference 2014 LAMP on Windows Azure.
Breaking Barriers Exploding with Possibility Breaking Barriers Exploding with Possibility The Cloud Era Unveiled.
© 2008 by Shawn Spiars; made available under the EPL v1.0 | March 17, 2008 Case Study – Phurnace Software and RCP Shawn Spiars Lead UI Developer Phurnace.
Intro to Datazen.
Intro to Git presented by Brian K. Vagnini Hosted by.
#msitconf. Damien Caro Technical Evangelist Manager, Что будет, если приложение поместить в контейнер? What happens if the application.
Installing git In Linux: sudo apt-get install git In Windows: download it from run the setuphttp://git-scm.com/download/win.
Getting Started as an EdgeX Developer
Top ways to deliver your Java code to the cloud
Mile Hi Power BI User Group
Microsoft Build /9/2017 5:00 AM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
Getting & Running EdgeX Docker Containers
Building ARM IaaS Application Environment
4/24/ :07 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Fundamentals Sunny Sharma Microsoft
L – Modeling and Simulating Social Systems with MATLAB
Docker and Azure Container Service
CS/COE 1520 Recitation Week 2
Docker Birthday #3.
L – Modeling and Simulating Social Systems with MATLAB
In-Depth Introduction to Docker
Getting Started as an EdgeX Developer
Deploying Dockerized Apps to the Azure Container Service
Cloud Data platform (Cloud Application Development & Deployment)
Kyung-Chan Ko Dept. of CSE, POSTECH
Azure CLI Deep Dive Neil Peterson Content Developer Microsoft.
Andrew Pruski SQL Server & Containers
Using Shiny to Build Web Applications
DevOps Deep Dive DevOps Deep Dive What you will learn
Enhancing Cloud Foundry with CLI Plugins
9/20/ :55 PM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
Azhagappan Arunachalam
Microservices in Dyalog APL Morten Kromberg – 11th January 2018
Git Version Control for Everyone
Microsoft Ignite NZ October 2016 SKYCITY, Auckland.
This presentation will begin shortly.
Open Source Toolkit for Turn-Key AI Cluster (Introduction)
Microsoft Connect /17/ :34 AM
Intro to Docker Containers and Orchestration in the Cloud
Microsoft Virtual Academy
Microsoft Ignite NZ October 2016 SKYCITY, Auckland.
Run Bash scripts from Windows 10
Single Container Workloads in Azure
Using Shiny to Build Web Applications
12/5/ :36 AM © Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN.
ACS Deployment Scenarios
Introduction to Git and GitHub
Microsoft Azure Managing Users & Resources with Azure Resource Manager
Microsoft Build /4/ :50 AM © 2016 Microsoft Corporation. All rights reserved. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY,
Rich Benner SQL Server Performance Richbenner.com.
Azure Container Service
Download the PPT and code from github as below
Azure App Service Web App for Containers
Ready Pre-day Azure Monitoring Workshop
Building, Debugging & Deploying Containerized
Extend Azure DevOps with a Custom PowerShell-based Pipeline Task
The Future of Database Development (with containers)
.NET Core and Kubernetes
Thanks to our Sponsors Platinum Sponsor: Gold Sponsors:
Presentation transcript:

Introduction to azure CLI 2.0 Mohit Chhabra Senior Software Engineer Harman International AzureGuy.in

Introduction Installation Account and RGs AGENDA Outputs & Query WebApp with Github VMs

Architecture for MAC and Linux Users Introduction Architecture for MAC and Linux Users Works Well with GREP,Cut,jq etc Swagger Pipeline Built for ARM Templates

Installation pip install --user azure-cli Windows pip install --user azure-cli MacOs curl -L https://aka.ms/InstallAzureCli | bash Linux exec -l $SHELL Docker docker run azuresdk/azure-cli-python:<version>

Account and RGs Account Resource Group az login az account list az account set az account show Resource Group az group list Az group Create-n MyResourceGroup -l westus2 az group show –name MyResourceGroup

Output Query Outputs & Query --Output -o tsv,json,jsonc,table Az group list --query “[].Propertyname” az vm list --output table --query "[?contains(resourceGroup,'MY')]" Query

WebApp with Github # Create a resource group. az group create --location westeurope --name myResourceGroup # Create an App Service plan in `FREE` tier. az appservice plan create --name $webappname --resource-group myResourceGroup --sku FREE # Create a web app. az appservice web create --name $webappname --resource-group myResourceGroup --plan $webappname # Deploy code from a public GitHub repository. az appservice web source-control config --name mywebapp --resource-group myResourceGroup --repo-url $gitrepo --branch master # Browse to the web app. az appservice web browse --name $webappname --resource-group myResourceGroup

VMs List all Image List all VMs Create VM az vm image list az vm list –output table Create VM az vm create --image debian --name vmname -g MyResourceGroup --admin-username username

THANK YOU @mohit_techy