Cloud Services
31 TopicsGetting Started with Ansible on Azure
Cloud Advocate Jay Gordon discusses how to get started with Ansible on the Azure Cloud. You'll get the easy first steps to use Ansible on the Cloud Shell and create a Linux VM! General purpose virtual machine sizes Install Ansible on Azure virtual machines
2.4KViews2likes0CommentsUsing PowerShell in Azure to assign a new virtual machine to an existing virtual network!
Hi Azure friends, I used the PowerShell ISE for this configuration. But you are also very welcome to use Visual Studio Code, just as you wish. Please start with the following steps to begin the deployment (the Hashtags are comments): #The first two lines have nothing to do with the configuration, but make some space below in the blue part of the ISE Set-Location C:\Temp Clear-Host #So that you can carry out the configuration, you need the necessary cmdlets, these are contained in the module Az (is the higher-level module from a number of submodules) Install-Module -Name Az -Force -AllowClobber -Verbose #Log into Azure Connect-AzAccount #Search for the resource groups Get-AzResourceGroup | Format-Table #Whats in a specific resource group Get-AzResource -ResourceGroupName tw-azuredemo-rg | Format-Table #Some variables $RGName = "tw-azuredemo-rg" $VnetName = "tw-vnet-workload" $Location = "westeurope" $VMName = "twsrv2021" $credential = Get-Credential #We need all infos about the virtual network $VirtualNetwork = (Get-AzVirtualNetwork -Name $VnetName -ResourceGroupName $RGName) #Let's have a look at the variable $VirtualNetwork #Create a network interface $nic = New-AzNetworkInterface ` -ResourceGroupName $RGName ` -Name "twsrv2021-nic" ` -Location $Location ` -SubnetId $VirtualNetwork.Subnets[0].Id #Define your VM $vmConfig = New-AzVMConfig -VMName $VMName -VMSize "Standard_D2s_v4" #Create the rest of your VM configuration $vmConfig = Set-AzVMOperatingSystem -VM $vmConfig ` -Windows ` -ComputerName $VMName ` -Credential $credential ` -ProvisionVMAgent ` -EnableAutoUpdate $vmConfig = Set-AzVMSourceImage -VM $vmConfig ` -PublisherName "MicrosoftWindowsServer" ` -Offer "WindowsServer" ` -Skus "2016-Datacenter" ` -Version "latest" #Attach the network interface that you previously created $vmConfig = Add-AzVMNetworkInterface -VM $vmConfig -Id $nic.Id #Create your VM New-AzVM -VM $vmConfig -ResourceGroupName $RGName -Location $Location Now you have used the PowerShell to create a new virtual machine and added to an existing virtual network! Congratulations! I hope this article was useful. Best regards, Tom Wechsler P.S. All scripts (#PowerShell, Azure CLI, #Terraform, #ARM) that I use can be found on github! https://github.com/tomwechsler4.7KViews2likes0CommentsOn-Call Nightmares Podcast Episode 12 - Baron Schwartz - VividCortex
EPISODE DESCRIPTION Content Warning: This episode does contain some graphic description of the work done by an EMT - if you find this troubling you may want to check out another episode! On this episode, I speak with the CTO and founder of VividCortex on his life down on the farm and as an EMT. Baron gives us some insight into how that prepared him for his time on-call in different roles to ensure databases are fast and reliable. Baron is the CTO and founder of VividCortex, the best way to see what your production database servers are doing. Baron has written a lot of open source software, and several books including High Performance MySQL. He’s focused his career on learning and teaching about scalability, performance, and observability of systems generally (including the view that teams are systems and culture influences their performance), and databases specifically. Twitter: @xaprb Website: xaprb.com1.8KViews1like0CommentsGet Started With Core SQL and Node.js for Azure Cosmos DB
In this video, Microsoft Cloud Ops Advocate Jay Gordon helps you get started with Core SQL API for Azure Cosmos DB You'll learn how to launch your DB, access it via a Node.js application and see some of the easy features that makes Cosmos so great for developers. Welcome to Azure Cosmos DB - Azure Cosmos DB: Build a Node.js app using JavaScript SDK to manage Azure Cosmos DB SQL API data - Request units in Azure Cosmos DB
1.3KViews1like0CommentsHow to Launch a Dockerized Node.js App Using the Azure Web App for Containers Service
How to Launch a Dockerized Node.js App Using the Azure Web App for Containers Service To provide you with a quick preview of the experience, I wrote a tiny version of the demo for you to use and get started with at any time. In this tutorial now I’ll quickly show you how to launch a Dockerized Node.js app that shares “Hello World!” Click here!1.2KViews1like0CommentsRunning your First Docker Container in Azure - Video Tutorial
https://channel9.msdn.com/Shows/DevOps-Lab/Running-your-First-Docker-Container-in-Azure Description Damian catches up with fellow Cloud Advocate Jay Gordon at Microsoft Ignite | The Tour in Berlin. Containers are still new for a lot of people and with the huge list of buzzwords, it's hard to know where to get started. Jay shows how easy it is to get started running your first container in Azure, right from scratch. Follow Jay on Twitter: @jaydestro Follow Damian on Twitter: @damovisa Resources: Demo App: https://github.com/jaydestro/demo-app Azure Container Registry: https://azure.microsoft.com/en-au/services/container-registry Azure Web App for Containers: https://docs.microsoft.com/en-us/azure/app-service/containers Create a Free Azure Account: https://aka.ms/c9-azurefree tags:
1.5KViews1like0Comments
