ServiceNow with Azure DevOps


Posted By : Subramani Sundaram

Added :

4 Comments


ServiceNow with Azure DevOps

ServiceNow with Azure DevOps brings integration of Azure Pipelines with ServiceNow Change Management to enhance collaboration between development and IT teams.

Image for post

By including change management in CI/CD pipelines, teams can reduce the risks associated with changes and follow service management methodologies such as ITIL, while gaining all DevOps benefits from Azure Pipelines.

ServiceNow is a software-as-a-service (SaaS) provider of IT service management (ITSM) software, including change management. Specific change management subprocesses include change risk assessment, change scheduling, change approvals and oversight. With change management, your organization can reduce the risks associated with change, while speeding up the deployments with Azure Pipelines.

Image for post

Configure the ServiceNow instance :

  1. Install the Azure Pipelines application on your ServiceNow instance, we require credentials to complete the installation.
  2. Create a new user in ServiceNow and grant themx_mioms_azpipeline.pipelinesExecution role.
Image for post

Set up the Azure DevOps organization

  1. Install the ServiceNow Change Management extension on your Azure DevOps organization.
  2. This extension enables integration of ServiceNow Change Management with Azure Pipelines.Follow the instructions to “Get it Free”

3. Create a new ServiceNow service connection in the Azure DevOps project used for managing your releases. Enter the user name and password for the service account created in ServiceNow.

Image for post
Image for post

Basic authentication

This needs a service account (user) to be created in ServiceNow. Provide username and password for the service account configured for basic auth.

Use Verify connection before using it in the gate or task.

OAuth2 authentication

In addition to granting role to a user in ServiceNow, Azure DevOps should be registered in ServiceNow as an OAuth app.

Register your OAuth configuration in Azure DevOps Services

  1. Sign into Azure DevOps Services.
  2. Add OAuth configuration from Organization settings>Oauth configurations
Image for post

Create an OAuth configuration using the OAuth application details obtained while registering Azure DevOps as an OAuth app in ServiceNow.

Image for post

Create OAuth service connection for ServiceNow

Use the OAuth configuration created above and provide the ServiceNow instance Url.

Configure a release pipeline

  1. In your release pipeline, add a pre-deployment gate for ServiceNow Change Management.
Image for post

2. Select the ServiceNow service connection you created earlier and enter the values for the properties of the change request.

Image for post

Gate can be configured to create a new change request for every run of the pipeline or use an existing request. Inputs provided in the gate are used as properties for the new change request in ServiceNow, if applicable.

Inputs for Gate:

  • ServiceNow connection: Connection to the ServiceNow instance used for change management.
  • Action: Gate on status of new change request or an existing change request.
  • Change type: Type of the change request.
  • Standard change template: Change template name for the change request.
  • Short description: A summary of the change.
  • Change query criteria: Criteria for querying change request. Must uniquely identify the change request. Gate would fail if multiple matching change requests are found.
  • Query string/Change request number: Change request to use.

Additional properties can be set in the created change request using the following inputs. Note: Available inputs change based on the selected change type.

  • Description: A detailed description of the change.
  • Category: The category of the change eg. Hardware, Network, Software.
  • Priority: Priority of the change.
  • Risk: The risk level for the change.
  • Impact: The effect that the change has on business.
  • Configuration Item: Configuration item (CI) that the change applies to.
  • Assignment group: The group that the change is assigned to.
  • Schedule of change request: Schedule of the change as honored by the ServiceNow workflow. Date and time should be in UTC and format should be yyyy-MM-ddTHH:mm:ssZ. eg. 2018-01-31T07:56:59Z.
  • Additional change request parameters: Additional properties of the change request to set. Name must be field name (not label) prefixed with ‘u_’ eg. u_backout_plan. Value must be a valid, accepted value in ServiceNow. Invalid entries are ignored.

Gate Success Criteria :

  • Desired state of change request: The gate would succeed and the pipeline continues when the change request status is same as the provided value.
  • Advanced: Specifies an expression that controls when this gate should succeed. The change request is captured as root['result'] in the response from ServiceNow. Example – and(eq(root['result'].state, 'New'),eq(root['result'].risk, 'Low'))Learn more.

Gate Output Variables :
ServiceNow gate produces output variables. You must specify reference name to be able to use these output variables in the deployment workflow. Gate variables can be accessed by using "PREDEPLOYGATE" as a prefix in an agentless job in the workflow. For eg. when reference name is set to ‘gate1’, then the change number can be obtained as $(PREDEPLOYGATE.gate1.CHANGE_REQUEST_NUMBER).

  • CHANGE_REQUEST_NUMBER : Number of the change request.
  • CHANGE_SYSTEM_ID : Sys Id of the change request.

Add a task to update the change request

Image for post

Inputs for Update change request task:

  • ServiceNow connection: Connection to the ServiceNow instance used for change management.
  • Change request number: Number of the change request to update.
  • Update status: Select this option to update status of the change request.
  • Updated status of change request : Status to set for the change request. This input is available if Update status is selected.
  • Close code and notes: Closure information for the change request.
  • Work notes: Work notes for the change request.
  • Additional change request parameters: Additional properties of the change request to set.

The update task would fail if none of the fields in the change request are updated during the execution of the task. ServiceNow ignores invalid fields and values passed to the task.

Image for post

Running a Azure release

  1. Create a new release from the configured release pipeline in Azure DevOps
  2. After completing the Dev stage, the pipeline creates a new change request in ServiceNow for the release and waits for it to reach the desired state.
Image for post

3. The values defined as gate parameters will be used. You can get the change number that was created from the logs.

Image for post

4. The ServiceNow change owner will see the release in the queue as a new change.

Image for post

5. The release that caused the change to be requested can be tracked from the Azure DevOps Pipeline metadata section of the change.

Image for post

6. The change goes through its normal life cycle: Approval, Scheduled, and more until it is ready for implementation.

7. When the change is ready for implementation (it is in the Implement state), the release in Azure DevOps proceeds. The gates status will be as shown here:

Image for post

After the deployment, the change request is closed automatically.

VILT & Self-Paced

AZ-204 Developing Solutions for Microsoft Azure

This self-paced course will help you prepare for the Azure Developer certification exam AZ-204: Developing Solutions for Microsoft Azure.

Self-Paced

AZ-900: Microsoft Azure Fundamentals Tutorial

AZ-900: Microsoft Azure Fundamentals Tutorial provides foundational level knowledge on cloud concepts; core Azure services; security, privacy, compliance, and trust; and Azure pricing and support.

Self-Paced

AZ-400 Designing and Implementing Microsoft DevOps Solutions

This self-paced course will help you prepare for the Azure DevOps certification exam AZ-400: Designing and Implementing Microsoft DevOps Solutions.

0 0 votes
Article Rating
Subscribe
Notify of
guest

4 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
New York Global Consultants
New York Global Consultants
3 years ago

I just added this web page to my bookmarks. I really like reading your posts. Thank you!

John Young
John Young
3 years ago

Hello, what entice you to post an article. This article was extremely interesting, especially since I was searching for thoughts on this subject last Thursday.
TY, nice post! This was the stuff I had to have