My first Azure build & deploy pipelines for an Azure Function V2
Intro
For those who think I am breaking rank and suddenly move away from HoloLens and Mixed Reality to Microsoft Azure (like some *cough* these days) - don't worry. I am still Windows Development MVP with every intention to stay within the Mixed Reality area. But every Mixed Reality app - like basically every app these days that's more than a simple toy needs a backend - mobile apps in general, but Mixed Reality apps just as well. Walk the World uses an Azure V1 function and a Redis cache to validate and cache request, and AMS HoloATC uses an app service to do a lot of calculations in the cloud and share selected airplanes. The new version, almost finished, uses two V2 functions. So basically, there's always an Azure component. And I used AMS HoloATC's new backend as a guinea pig for the pipelines because it's better to try something new on private projects first than to experimentally blow a customer's deployment smithereens, right?
RIGHT?
Caveat emptor
Anyway, in this post I wrote down my experiences - simply 'how I did it', how I used Azure pipelines. This may not be the best way to do it. I don't doubt some real DevOps heroes will have better ideas. But potentially making a fool out of myself never stopped me blogging.
Function first
To be able to build an deploy a function, we of course first need one. So I made this little demo project "MyFunctionV2"
I created a simple HTTP trigger with anonymous access rights, which I think in any serious scenario you should never do, but this a demo, so here goes:
And then I simplified the already simple code in it even more so that resulted in this:
using System.Threading.Tasks; using Microsoft.AspNetCore.Mvc; using Microsoft.Azure.WebJobs; using Microsoft.Azure.WebJobs.Extensions.Http; using Microsoft.AspNetCore.Http; using Microsoft.Extensions.Logging; namespace MyFunctionV2 { public static class HelloWorld { [FunctionName("HelloWorld")] public static async Task<IActionResult> Run( [HttpTrigger(AuthorizationLevel.Anonymous, "get", "post", Route = null)] HttpRequest req, ILogger log) { log.LogInformation("C# HTTP trigger function processed a request."); return new OkObjectResult("Hello, world"); } } }
I stuck the sources in GitHub. Now we are ready to publish.
First publish
Publish? Weren't you going to use the Azure pipelines? Yes - but only to deploy. And since I am a lazy ******* I do the first publish just like in the old days (that is, up to last week) from Visual Studio. Although things have improved considerably - I used to make a function in the portal first, delete everything and then start to publish, because that was the only way to get it into a consumption plan. This way is quick and easy But I digress.
I publish a new "App Service", still apparently
Visual Studio selects all kinds of defaults that are not quite desirable:
I want at least a new consumption based plan, and while I am at it, a separate storage account as well - although I am not going to use that in this sample (my AMS HoloATC functions does, for sure).
When you have set everything to your liking, it should look like this:
Notice the Export button. This allows you to export the whole created configuration in the form of a JSON document. This you can use to completely automate the creation of this as well in a release pipeline, as this 'script' contains a number of variables you can set (like names for the service, storage, the plan, etc.). This is a bit more complicated and I haven't gotten to that part yet, but I know it's possible.
And if you click create, you might possible get this:
Click yes, and we are done with this part.
Create a Build pipeline
This requires a project to be present in . If you have opted to store the source in Azure DevOps (or Visualstudio.com) there's already a project of course, but since I put the source in GitHub I need to create it myself. I took "TestProject" (I am not very gifted in the creative naming department, I know).
The following screenshots are made with the preview settings for Azure DevOps, so things may look a bit different still if your UI settings are still for the 'old' VisualStudio.com settings. You can force the move forward to click your profile picture right top and select "Preview features" and go from there. You might as well get used to it as the new look & feel is rolling out as I type.
Okay, so let's click Pipelines/Builds and continue
If this is your first pipeline, it will show the picture on the left, by the second and following pipelines you will see a list of pipelines with this on top, but chances are as you are reading this, it will be your first pipeline ;)
After that, it's just following the steps:
I am not a XAML typist nor very versed in YAML, so I click "Use the visual designer"
Since we are using GitHub, you might need to make a connection first.
I will call mine "LocalJoost" - click "Authorize using oAuth". That will show a GitHub popup authorizing Azure Pipelines. Then select your repository:
Hit select
And then continue. You will then need to select a template, and need to scroll down quite a bit
Select C# function and hit apply
Now let's be bold and hit "Save & queue". This will save nor queue, but give you a three-option drop-down in which "Save & queue" is one of the options. Click that option, and it will still not save, nor queue, but you will get yet another popup:
Hit "Save & queue" - third time's a charm, you will see
on top of your screen. If you click the build number, it will take you to a page where you can follow the sausage being made, and when it's done you should see about this:
So far so good. We have a build and it's working! And you should get an e-mail for confirmation as well.
Defining a build trigger
You might want to have a look at when and how a build is kicked off, because we don't want to do this manually every time something changes. A good developer is still a lazy developer. So click Edit in the screen above
And then click "Triggers"
We select the continuous trigger checkbox and select the proper values, although the defaults will probably be ok right away:
Hit "Save and queue" once again, but this time only select "Save" from the pop-out menu.
So, for fun, let's change the Readme.md, push a commit to the master and have a look at the builds again. And sure enough, a built is started immediately by the CI trigger.
And this, my friends, is all it takes to set up a build pipeline for a V2 function with sources hosted in GitHub. Now for the final part - I want automated deploy as well.
Create a Release pipeline
Starts easy again:
This time it does a better suggestion:
Hit apply. That gives you this screen which I find a wee bit confusing:
Let's click "Add an artifact". That creates a kind of pop-over on the right side:
Select "Build" for source type, then set the Source Build pipeline to be the build pipeline we just created, and the Default Version to "Latest". Then we hit add. Then click the red exclamation mark on "Stage 1", to view the build tasks:
You will have to select the Azure subscription used (I have two) plus the App Service where you want to deployment to happen. To be able to use the subscription you will have to click the Authorize button first:
And you might want to disable your popup blocker for this site to expedite that process:)
Once this is done, you can select "Function App" (don't let it sit at "Web App") and select the actual function app you want to deploy to
And then you click "Save".
Uhm, yeah, click OK I guess ;) .This will give you this screen
So let's create a release, manually, to see if things are working
Click "Create" (don't change anything). You will go back to this screen, but you will see a yellow-greenish banner indicating a release has been started indeed:
Click the release name in that banner, that will take you to this progress screen:
If you click "In progress" you will once again see the sausage being made in more detail:
And it should finish with the "Deploy Azure App Services - succeeded".
For some final automation
We want this of course to kick off automatically. To that extent, we have to click "Edit pipeline" again. If find this screen not very intuitive, but it's not rocket science to find out what's the idea with some clicking around
We seem to have to click the lightning bolt icon - the left one - to set the "Continuous deployment trigger".
Flip the toggle to to Enabled, hit save, and then the final test.
So does it work?
I have published to app MyFunctionV2, so the URL to the site should be https://myfunctionv2.azurewebsites.net and to the specific function https://myfunctionv2.azurewebsites.net/api/HelloWorld
Hitting that link gives, as expected, "Hello World". Now let's change the HttpTrigger function we made all the way at the beginning to return the text "Hello again, World". We then commit and push the code to GitHub, and now we wait...
We are off to a promising start.
And then we see a release being triggered automatically
And when that's done, we hit the URL again and sure enough:
Mission accomplished.
Conclusion
So even an complete n00b like me can create a fully featured continuous build-and-deploy pipeline, in a manner of a few minutes. I can tell you that retracing my steps and actually writing it down actually took a lot more time than the actual creation of the pipeline itself. I think Azure pipelines makes DevOps a lot easier, and the new UI is a lot more intuitive that the old VisualStudio.com. There are still a few places where there's room for improvement, but this is very usable.
Anyone wanting to have a look at the completely uninteresting test function can do so here. I would not bother, to be honest ;)