TeamCity and Windows Azure Blob Storage - azure

I have setup a TeamCity server on my machine and the build is running quite well, for your information, I am building a Unity application with Plastic SCM as VCS.
I would like to know if it's possible to send the result of the build to a Windows Azure Blob Storage easily ?

The solution that I can think of, mentioned in comments above: use the TeamCity plugin, then use Powershell to back up the VM to Blob Storage.
This blog by the Scripting Guy explains the PowerShell process http://blogs.technet.com/b/heyscriptingguy/archive/2014/01/24/create-backups-of-virtual-machines-in-windows-azure-by-using-powershell.aspx but in a nutshell,
Get-AzureOSDisk and Get-AzureDataDisk commands to get your disks, create a container using New-AzureStorageContainer.
Start-AzureStorageBlobCopy backs up VHD to blob storage on your new container.

Related

Upload to blob tfs 2017

We are trying to upload the artifact to blob storage from TFS build server. AzCopy task needs the azure subscription details, which is not available to us. We need to upload the artifacts to azure blob storage using azure blob storage connection string. Is there a way to upload files to blob storage using connection string only.
Anything you can do from PowerShell you can do from build and release. There is a task named "PowerShell" and one named "Azure PowerShell". If you don't have the Azure subscription details I doubt you will be able to use the "Azure PowerShell" task. However, if you have a PowerShell script you run locally that works you might be able to simply run it as part of your build with the "PowerShell" task.
Option two is have someone that knows the details to create an Azure Service Endpoint for you. They never have to share the details with you to make the connection. Once the connection is created you can use it without having to ever know the details.

How to deploy an Azure VM with Custom Data and an 'attached' VHD in ARM?

How would I deploy a linux VM to azure with custom data, in addition to using a VHD in my storage account as the OS disk?
In Azure Classic, I can add a custom data parameter to my deployment. See
https://learn.microsoft.com/en-us/azure/virtual-machines/virtual-machines-windows-classic-inject-custom-data.
So, my goal is to do the same in Azure Resource Manager. In addition, I'm just trying to provide custom data -- I'm not trying to run script through the Script Extension (which is Windows only..).
A series of PowerShell commands or an Azure Template are what I'm looking for.
This still works with ARM! (I'm using it in a Windows environment, from the Python SDK). A sample Azure Template for Linux is available here:
https://github.com/Azure/azure-quickstart-templates/tree/master/101-vm-customdata

Download vhd of Windows Azure Cloud Service

Is it possible to download a vhd (or vhdx) image of Windows Azure Cloud Service and run it locally on my computer in Hyper-V?
How to do that?
Thanks
For Cloud Services (web/worker roles), you cannot download a vhd. Remember that the running Windows image is created with a baseline image, then your deployment package is attached and your code is executed. If you spin up another instance, it results in the same starting point. There's no way to take the running machine and capture a vhd. VHD-based operation is all part of Virtual Machines. And with those, you can download the vhd.

Sync folders on all Azure Cloud Instances

Just deployed my App to Azure. Everything works fine.
I'm currently running some legacy code on my app that I cannot upgrade right now, and it makes use of some files on the local VM Storage.
I need to find a way to keep all the cloud instances folder synced. Someone wrote a plugin that seems to do this using the Microsoft Sync Framework, but it runs on Azure SDK 1.5:
https://github.com/Interop-Bridges/Windows-Azure-File-System-Durability-Plugin
Does anyone know of a similar implementation for the current version of the SDK? or a better solution for this scenario?
You could use the CloudDrive feature of Windows Azure. You can put a .VHD file into the blob storage and mount it as a drive in your compute service.
But keep in mind that if you have multiple instance in your computing service, only one instance has read/write access to the VHD. You should share the VHD Drive among all your instances using standard network share technology.

Client-Side: Accessing Windows Azure Drive?

I am developing an Azure application, part of which involves users browsing an online filesystem. TO do this, I am trying to use the Windows Azure drive, but I can't figure out how to access it from client side, or how to make it accessible on the server side.
At the moment, I only know how to make the drive:
CloudStorageAccount devStorage = CloudStorageAccount.DevelopmentStorageAccount;
CloudBlobClient client = devStorage.CreateCloudBlobClient();
CloudBlobContainer container = new CloudBlobContainer("teacher", client);
CloudDrive.InitializeCache(localCache.RootPath,
localCache.MaximumSizeInMegabytes);
CloudDrive drive = new CloudDrive(container.GetPageBlobReference("drive1").Uri, devStorage.Credentials);
drive.Create(50);
I am using C# as my development language.
All help is greatly appreciated!
There are couple of things you need to understand with Windows Azure Cloud Drive:
Cloud drives are actual Page Blobs which are stored on Windows Azure Blob storage and mount as a drive (you will get a drive letter depend on your machine drive statistics) in a machine where you can provide Windows Azure Run time environment.
Programmatic it is very easy to mount a cloud drive in your code as you showed in your example however one thing is missed that is to be sure to have Windows Azure RunTime environment where this code can run.
I have written a utility to mount azure drive within Windows Azure VM (Web, Worker or VM Role) located here:
http://mountvhdazurevm.codeplex.com/
You can run above tool directly in Windows Azure VM and can also this the exact same code in your Compute Emulator (Windows Azure Development Fabric) so the bottom line is as long as you can provide Windows Azure Runtime environment, you can mount a Page blob VHD drive.
I have seen several cases where someone asked me to mount a Windows Azure Page Blob as drive in local machine (client and server, anywhere) and the actual hurdle was to bring Windows Azure Run time in local environment because it is not available. In some cases a few person went ahead and tries to use Windows Azure SDK to have Windows Azure runtime made
available in their desktop, created a dummy web role and then mount the VHD which was mounted in local machine and a drive letter was made available as well. I am not sure about such kind of solution because this is not Windows Azure compute emulator is designed.
Hope this description provide you some guideline.
I'm not sure I understand your question properly, but it sounds like you want multiple client applications - presumably on machines that are not on Azure - to access your Azure drive?
Unfortunately, Azure drives can only be accessed from Azure web/worker or VM role instances.
I've written a WebDAV Server which runs on an Azure Website which will allow clients, including Windows Explorer and Office to connect to Azure Storage. It uses a combination of Table and Blob Storage to store the file structure and files. I've tested it with Windows Explorer and Word 2013. Although this isn't a clouddrive solution it's still using Azure Storage as a backend and it's accessible from WebDAV clients. You might find it useful..
https://github.com/ichivers/AzureDAV
One additional point to the existing answers. You can always download the blob backing your Cloud Drive and mount it on a local system. The blob is really just a VHD. However, the download time isn't going to trivial unless the drive is small.
Erick

Resources