Skip to content

hctv19/azure-api-management-devops-example

 
 

Repository files navigation

Build Status

Azure API Management DevOps Example

This repository contains examples and tools to help you achieve API DevOps with Azure API Management.

Background

Organizations today often have multiple deployment environments (e.g., development, QA, production) and use separate API Management (APIM) instances for each environment. In some cases, those APIM instances are shared by a number of API development teams, each responsible for one or more APIs. It becomes a challenge for organizations to automate deployment of APIs into a shared environment without interference between the teams and/or impact on API consumers.

In this repository, we propose an approach for the problem along with examples and tools to implement the solution.

API DevOps with API Management

The proposed approach is shown in the below picture.

alt

In this example, there are two deployment environments: Development and Production, each environment has its own APIM instance. API developers have access to the Development instance and can use it for developing and testing their APIs. The Production instance is managed by a designated team called the API publishers.

The key in this proposed solution is to keep all your APIM configurations in Azure Resource Manager (ARM) templates under your SCM systems. In this example, we use GIT. There is a Publisher repository that contains all the configurations of the Production instance. API developers can fork and clone the Publisher repository and then start working on their APIs in their own repository.

There are three types of ARM templates: the Service template contains all the configurations related to the APIM instance (e.g., sku type, custom URL). The Shared templates contain shared resources (e.g., groups, products). For each API, there is an API template that contains all the configurations related to the API and its sub-resources (e.g., API definition, operations, policies).

Finally, The Master template ties everything together by linking to all templates and deploy them in order. Therefore, if you want to deploy everything to an APIM instance, you can simply deploy the Master template. A beautiful thing is that each template can also be deployed individually. For example, if you just want to deploy a single API.

API developers normally work with Open API (aka., Swagger) files for defining their APIs. One challenge for them is authoring the API templates, which might be an error-prone task for people not familiar with ARM template formats. Therefore, we will create and open source an ARM template generator to help you generate API templates based on Open API (aka., Swagger) files and policy files. Basically, the generator will extract your API and operation definitions from an Open API file and insert them into an ARM template in the proper format. It will also extract policies from an XML file and inline the policies into the template. With this tool, API developers can continue focusing on the formats they are familiar with.

If you already have APIs published by APIM, or if you prefer using the Admin UX for configuring your APIs, we will also provide a second ARM template generator to help you generate API templates by extracting configurations from an existing APIM instance. Likewise, this generator will also be open sourced.

When API developers finish develop and test an API, and have generated the API template for it, they can submit a pull request to merge the changes back to the Publisher repository. API publishers can validate the pull request to make sure the changes are safe and compliant to the corporate standards. Most of the validations can be automated as part of the CI/CD pipeline.

Once the changes are merged successfully, then API publishers can deploy them to the Production instance either on schedule or on request.

With this approach, it is easy to migrate changes from one environment to another. Also, since different API development teams will be working on different sets of API templates and files, it also prevents them from colliding with each other.

We have provided an example on how to use this approach and deploy using the Azure CLI.

We realize our customers bring a wide range of engineering cultures and existing automation solutions. The approach proposed here is not meant to be a one-size-fits-all solution. That's the reason we created this repository and open sourced everything, so that you can extend and custom the solution.

If you have any questions or feedback, please raise issues in the repository or email us at apimgmt at microsoft dotcom. We also started an FAQ page to answer most common questions.

License

This project is licensed under the MIT License

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Contributing

This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.

When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

About

Azure API Management DevOps example

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%