SlideShare a Scribd company logo
1 of 33
All contents © MuleSoft, LLC
DC MULESOFT MEETUP
Setting up a CI/CD Pipeline with
MuleSoft and Azure DevOps
Speaker:
CATHERINE WILLS
MuleSoft Consultant | Big Compass, An Argano
Company
All contents © MuleSoft, LLC
DC MULESOFT MEETUP
Meetup Admin Introductions
STEPHANIE LAWRENCE
BEN STONE
All contents © MuleSoft, LLC
Google Slides does not
have an image placeholder
option. Please place an
image over this box
manually
+ First person to call out the correct answer, wins!
+ One answer per person per question
+ If you answer more than 1x per question, you are
ineligible for that question
+ If you’ve already won during today’s Meetup, you
cannot win again
+ Meetup organizers make the final decision on the trivia
winners
DC MULESOFT MEETUP
Trivia Question Rules & Regulations
All contents © MuleSoft, LLC
DC MULESOFT MEETUP SPEAKER
Catherine Wills
+ Lives in New York, originally from
Georgia
+ ~ 2 years of MuleSoft experience
in development and architecture
+ Hobbies - Watching the Dawgs
and the Braves, history museums,
skiing, and golf
All contents © MuleSoft, LLC
CI/CD + DevOps
All contents © MuleSoft, LLC 6
CI/CD is a method designed to frequently deliver applications by automating stages
within the application development lifecycle.
Continuous Integration: Incremental code changes are constantly integrated into a
main branch which is verified by an automated build and automated unit testing.
Continuous Delivery/Deployment: Automates the release of the validated code to
Production.
What is CI/CD?
All contents © MuleSoft, LLC 7
DevOps integrates the work of software development (Dev) and operations (Ops) by
facilitating team collaboration, shared responsibility, and technology automation which
aid in a holistic style of Agile software development.
What is DevOps?
All contents © MuleSoft, LLC
Advantages
8
CI/CD
● Increased speed gives rapid deliveries
● Greater efficiencies, streamlined process
● Ensured reliability
● Shorter development cycles
● Decreased deployment failures and bugs
● Enhanced quality and security
● Improved communication and collaboration
● Faster innovation
DevOp
s
All contents © MuleSoft, LLC 9
Common Branching Strategies for DevOps
GitHub Flow
● Utilizes main and feature branches
● Simple workflow for smaller teams
● Easily integrate into CI/CD pipelines
Git Flow
● Uses main, develop, release, hotfix, and
feature branches
● Easier parallel collaboration for larger teams
● Supports multiple versions of production code
Trunk-Based
Development
● Integrates into main branch once a day
● Always in releasable state
● Excellent for CI/CD pipelines
All contents © MuleSoft, LLC
Google Slides does not
have an image placeholder
option. Please place an
image over this box
manually
A. Constantly Incrementing, Constantly Deploying
B. Continuous Integration, Continuous Delivery
C. Consistently Integrating, Consistently Building
D. Continuous Increments, Constant Deployment
TRIVIA QUESTION #1
What does CI/CD stand for?
All contents © MuleSoft, LLC
CloudHub 1.0, CloudHub 2.0, and Runtime Fabric
Deployment Targets
All contents © MuleSoft, LLC 12
Highlights
CloudHub 1.0 CloudHub 2.0 Runtime Fabric
● Primary execution container
is AWS EC3 instance
● Pre-determined worker
sizes only
● Global deployment options
● Usage measured in vCores
● Container-based application
deployment
● Can deploy to shared or
private spaces
● Ingress self-service logs
● More granular vCore
allocation options
● Primary execution is
Kubernetes pod
● Granular control over
application resource
allocation
● Subject to customer data
center footprint
● Usage measured in vCores
All contents © MuleSoft, LLC
Azure DevOps
All contents © MuleSoft, LLC 15
Boards helps teams plan, track, and discuss work
Repos is a set of version control tools used to manage code
Pipelines supports CI/CD to test, build, and deploy code
Pipelines: Used to automatically build and test code projects
Releases: Holds a versioned set of artifacts specified in the CI/CD pipeline
Library: A collection of build and release assets
■ Variable Groups can be used to store values and secrets, such as runtime
properties
■ Secure Files can be used to store secure files such as the settings.xml
Azure DevOps Components
All contents © MuleSoft, LLC
Branch Policies
● Can set policies for a specific branch
namespace (i.e. develop, main) that applies
for all repositories
● Protects a branch from having changes
directly pushed to it
● Requires a pull request for code review
16
All contents © MuleSoft, LLC
Build Pipelines
● Define pipelines using YAML syntax (Fig. A) or Classic Build interface (Fig. B)
● Customizable triggers, conditions, tasks, etc.
● Test coverage and results
● Viewable logs (Fig. C)
17
Fig. A
Fig. C
Fig. B
All contents © MuleSoft, LLC
Build Trigger Variabilities
Built-in functions and predefined variables can be used in expressions to
specify various condition combinations for the Pipelines’ Stages, Jobs, or Steps
18
Trigger Type CI (Continuous Integration) PR (Pull Request) Scheduled
YAML
Version
Uses pushed (target) branch Uses source branch Uses included branch
Triggers
● Branch is specified in trigger
and is pushed to, such as git-
push or completion PR
● Manually run pipeline
● Must have build validation
branch policy
● PR created and active, not
upon PR completion
● Uses cron syntax
Runs source branch when a PR into the main branch is created, if Build Validation branch policy is set on main branch, and is succeeding
Runs main branch on a CI trigger if commit message starts with ‘Merged PR’
*Default merge commit message starts with ‘Merged PR’
All contents © MuleSoft, LLC
Release Pipelines
● Classic-style interface (Fig. A)
● Can rollback by re-deploying a previous release
● Various deployment trigger routes
● Pre and post deployment condition options
● Viewable logs (Fig. B)
19
Fig. A
Fig. B
All contents © MuleSoft, LLC
Release Creation Trigger Options
20
● Continuous Deployment
○ Creates release after successful ‘Individual CI’
build
○ Can include/exclude branches
● Pull Request
○ Creates release upon PR creation after
successful build
○ Must set build validation branch policy
○ Must set target branch and specify in Stage(s)
● Scheduled
Set Release Triggers
● Pre-Deployment Condition Triggers:
○ After Release
○ After Stage
○ Manual Only
● Deployment approvals
● Gates
○ Automatically collects health signals
■ i.e. Invoke REST API
Set Pre/Post Deployment
Conditions per Stage
All contents © MuleSoft, LLC
Google Slides does not
have an image placeholder
option. Please place an
image over this box
manually
A. Deployment Approval
B. Continuous Integration Trigger
C. Gates
D. Branch Policy
TRIVIA QUESTION #2
What can be used to protect a branch from being
directly pushed to?
All contents © MuleSoft, LLC
CI/CD Pipeline Demo
All contents © MuleSoft, LLC 23
Tools
● Anypoint Studio v7.14.0
● Mule Runtime v4.4.0
● MUnit Tools v2.3.13
● Mule Maven Plugin v3.8.0
● Apache Maven v3.8.8 (Mule Maven Plugin is not compatible with latest Apache Maven version, v3.9.x)
● Anypoint Exchange v3
● Anypoint Platform: Runtime Manager
● Azure DevOps Free Tier
Utilities
Environments Used for Demo
● Development
● QA
● Production
Files
● azure-pipelines.yml
● nonprod-settings.xml
● prod-settings.xml
● pom.xml
● mule-artifact.json (CH 1.0 Only)
All contents © MuleSoft, LLC
The
Pipeline
Pathway
24
All contents © MuleSoft, LLC
7) Configure mule-
artifact.json (CH
1.0 only)
6) Configure
pom.xml
5) Add New
Release Pipeline
4) Add properties
to Library
3) Configure &
Install
settings.xml
2) Pull in azure-
pipelines.yml and
configure
1) Create a Build
Pipeline
25
Azure CICD Pipeline Set-Up
All contents © MuleSoft, LLC
Configure azure-pipelines.yml
27
CI trigger that allows main branch to run when updated via PR
1
Uses latest ubuntu, a Microsoft-hosted agent
2
Access to properties from default and dev variable groups from Library to use within Stage
3
Runs job if predefined variable, Build.Reason, is either ‘Individual CI’ or ‘Manual’, and has succeeded thus
far
4
Downloads settings.xml for lower environments from Secure Files in Library
5
Publishes Artifact to Exchange (CH 2.0 & RTF Only)
6
Runs MUnit tests, builds, and deploys to DEV environment
7
Gets <artifactId> from pom.xml and sets it as Pipeline variable, $(artifactId)
8
Publishes pipeline build artifact, pom.xml, to Container named ‘drop’
10
Publishes pipeline build artifact, JAR file, to Container named ‘drop’
9
All contents © MuleSoft, LLC
Configure and Install settings.xml
1. Install in Secure files of Library
2. Grant pipelines permission
*One settings.xml file is for the lower
environments, and one is for the Production
environment.
28
All contents © MuleSoft, LLC
1
Add properties in Mule
Maven Plugin Configuration
Configure pom.xml
35
Add MUnit executions
and configurations
2
3 Add Distribution Management (CH2.0, RTF)
All contents © MuleSoft, LLC
Property Differences in pom.xml
36
CloudHub 1.0 CloudHub 2.0
Runtime Fabric
All contents © MuleSoft, LLC
Configure mule-artifact.json (CH 1.0 Only)
37
Add names of secure properties to
the mule-artifact.json file to hide
them in Runtime Manager
Example of hidden properties in
Runtime Manager Settings →
All contents © MuleSoft, LLC 38
Deployment Target Setup Differences
CloudHub 1.0 CloudHub 2.0 Runtime Fabric
● Hide properties in mule-
artifact.json
● Protect properties in
pom.xml
● Must publish to Exchange
prior to deployment
● Must have Distribution
Management in pom.xml
● Protect properties in
pom.xml
● Must publish to Exchange
prior to deployment
● Must have Distribution
Management in pom.xml
● Uses Runtime Fabric agent
All contents © MuleSoft, LLC
Google Slides does not
have an image placeholder
option. Please place an
image over this box
manually
A. settings.xml
B. azure-pipelines.yml
C. pom.xml
D. mule-artifact.json
TRIVIA QUESTION #3
Which file can be used to protect secure property
values in Runtime Manager for CH 2.0 & RTF?
All contents © MuleSoft, LLC
Questions?
CONNECT ON LINKEDIN
CATHERINE WILLS
Consultant | Big Compass
All contents © MuleSoft, LLC
Google Slides does not
have an image placeholder
option. Please place an
image over this box
manually
Share on Social Meetup Feedback
+ Use the hashtags #MuleSoftMeetups &
#DCMuleSoftMeetup
+ Don’t forget to tag @BigCompass
+ Please fill out this 1 minute survey to
provide feedback and topic suggestions

More Related Content

What's hot

Kubernetes Concepts And Architecture Powerpoint Presentation Slides
Kubernetes Concepts And Architecture Powerpoint Presentation SlidesKubernetes Concepts And Architecture Powerpoint Presentation Slides
Kubernetes Concepts And Architecture Powerpoint Presentation SlidesSlideTeam
 
CI-CD Jenkins, GitHub Actions, Tekton
CI-CD Jenkins, GitHub Actions, Tekton CI-CD Jenkins, GitHub Actions, Tekton
CI-CD Jenkins, GitHub Actions, Tekton Araf Karsh Hamid
 
Mumbai MuleSoft Meetup:Batch Processing, Anypoint Messaging Queue and Custom ...
Mumbai MuleSoft Meetup:Batch Processing, Anypoint Messaging Queue and Custom ...Mumbai MuleSoft Meetup:Batch Processing, Anypoint Messaging Queue and Custom ...
Mumbai MuleSoft Meetup:Batch Processing, Anypoint Messaging Queue and Custom ...Manish Kumar Yadav
 
Getting Started on Amazon EKS
Getting Started on Amazon EKSGetting Started on Amazon EKS
Getting Started on Amazon EKSMatthew Barlocker
 
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)Prashanth Kurimella
 
Rtf v2 ingress muleSoft meetup self managed kubernetes
Rtf v2 ingress muleSoft meetup self managed kubernetesRtf v2 ingress muleSoft meetup self managed kubernetes
Rtf v2 ingress muleSoft meetup self managed kubernetesSandeep Deshmukh
 
Containerizing MuleSoft applications for hybrid deployment
Containerizing MuleSoft applications for hybrid deployment Containerizing MuleSoft applications for hybrid deployment
Containerizing MuleSoft applications for hybrid deployment JuliaDemidova3
 
Containers Anywhere with OpenShift by Red Hat
Containers Anywhere with OpenShift by Red HatContainers Anywhere with OpenShift by Red Hat
Containers Anywhere with OpenShift by Red HatAmazon Web Services
 
MuleSoft Architecture Presentation
MuleSoft Architecture PresentationMuleSoft Architecture Presentation
MuleSoft Architecture PresentationRupesh Sinha
 
Mule 4 migration + Common Integration Challenges : MuleSoft Virtual Muleys Me...
Mule 4 migration + Common Integration Challenges : MuleSoft Virtual Muleys Me...Mule 4 migration + Common Integration Challenges : MuleSoft Virtual Muleys Me...
Mule 4 migration + Common Integration Challenges : MuleSoft Virtual Muleys Me...Angel Alberici
 
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...Jitendra Bafna
 
Kubernetes Architecture | Understanding Kubernetes Components | Kubernetes Tu...
Kubernetes Architecture | Understanding Kubernetes Components | Kubernetes Tu...Kubernetes Architecture | Understanding Kubernetes Components | Kubernetes Tu...
Kubernetes Architecture | Understanding Kubernetes Components | Kubernetes Tu...Edureka!
 
Microservices architecture overview v3
Microservices architecture overview v3Microservices architecture overview v3
Microservices architecture overview v3Dmitry Skaredov
 

What's hot (20)

Kubernetes Concepts And Architecture Powerpoint Presentation Slides
Kubernetes Concepts And Architecture Powerpoint Presentation SlidesKubernetes Concepts And Architecture Powerpoint Presentation Slides
Kubernetes Concepts And Architecture Powerpoint Presentation Slides
 
CI-CD Jenkins, GitHub Actions, Tekton
CI-CD Jenkins, GitHub Actions, Tekton CI-CD Jenkins, GitHub Actions, Tekton
CI-CD Jenkins, GitHub Actions, Tekton
 
Mumbai MuleSoft Meetup:Batch Processing, Anypoint Messaging Queue and Custom ...
Mumbai MuleSoft Meetup:Batch Processing, Anypoint Messaging Queue and Custom ...Mumbai MuleSoft Meetup:Batch Processing, Anypoint Messaging Queue and Custom ...
Mumbai MuleSoft Meetup:Batch Processing, Anypoint Messaging Queue and Custom ...
 
Getting Started on Amazon EKS
Getting Started on Amazon EKSGetting Started on Amazon EKS
Getting Started on Amazon EKS
 
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)
MuleSoft Deployment Strategies (RTF vs Hybrid vs CloudHub)
 
Terraform
TerraformTerraform
Terraform
 
Rtf v2 ingress muleSoft meetup self managed kubernetes
Rtf v2 ingress muleSoft meetup self managed kubernetesRtf v2 ingress muleSoft meetup self managed kubernetes
Rtf v2 ingress muleSoft meetup self managed kubernetes
 
Containerizing MuleSoft applications for hybrid deployment
Containerizing MuleSoft applications for hybrid deployment Containerizing MuleSoft applications for hybrid deployment
Containerizing MuleSoft applications for hybrid deployment
 
Containers Anywhere with OpenShift by Red Hat
Containers Anywhere with OpenShift by Red HatContainers Anywhere with OpenShift by Red Hat
Containers Anywhere with OpenShift by Red Hat
 
Building APIs with Mule and Spring Boot
Building APIs with Mule and Spring BootBuilding APIs with Mule and Spring Boot
Building APIs with Mule and Spring Boot
 
MuleSoft Architecture Presentation
MuleSoft Architecture PresentationMuleSoft Architecture Presentation
MuleSoft Architecture Presentation
 
Mule 4 migration + Common Integration Challenges : MuleSoft Virtual Muleys Me...
Mule 4 migration + Common Integration Challenges : MuleSoft Virtual Muleys Me...Mule 4 migration + Common Integration Challenges : MuleSoft Virtual Muleys Me...
Mule 4 migration + Common Integration Challenges : MuleSoft Virtual Muleys Me...
 
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
MuleSoft Surat Meetup#48 - Anypoint API Governance (RAML, OAS and Async API) ...
 
Kubernetes Architecture | Understanding Kubernetes Components | Kubernetes Tu...
Kubernetes Architecture | Understanding Kubernetes Components | Kubernetes Tu...Kubernetes Architecture | Understanding Kubernetes Components | Kubernetes Tu...
Kubernetes Architecture | Understanding Kubernetes Components | Kubernetes Tu...
 
Cloudhub 2.0
Cloudhub 2.0Cloudhub 2.0
Cloudhub 2.0
 
AWS ECS vs EKS
AWS ECS vs EKSAWS ECS vs EKS
AWS ECS vs EKS
 
Service mesh
Service meshService mesh
Service mesh
 
Kubernetes
KubernetesKubernetes
Kubernetes
 
Docker Kubernetes Istio
Docker Kubernetes IstioDocker Kubernetes Istio
Docker Kubernetes Istio
 
Microservices architecture overview v3
Microservices architecture overview v3Microservices architecture overview v3
Microservices architecture overview v3
 

Similar to Washington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOps

Mulesoft Meetup Milano #9 - Batch Processing and CI/CD
Mulesoft Meetup Milano #9 - Batch Processing and CI/CDMulesoft Meetup Milano #9 - Batch Processing and CI/CD
Mulesoft Meetup Milano #9 - Batch Processing and CI/CDGonzalo Marcos Ansoain
 
Mulesoft Meetup Roma - Monitoring Framework & DevOps.pptx
Mulesoft Meetup Roma - Monitoring Framework & DevOps.pptxMulesoft Meetup Roma - Monitoring Framework & DevOps.pptx
Mulesoft Meetup Roma - Monitoring Framework & DevOps.pptxAlfonso Martino
 
Weave GitOps 2022.09 Release: A Fast & Reliable Path to Production with Progr...
Weave GitOps 2022.09 Release: A Fast & Reliable Path to Production with Progr...Weave GitOps 2022.09 Release: A Fast & Reliable Path to Production with Progr...
Weave GitOps 2022.09 Release: A Fast & Reliable Path to Production with Progr...Weaveworks
 
Mulesoft AnyyPoint Monitoring for Hybrid Deployment
Mulesoft AnyyPoint Monitoring for Hybrid DeploymentMulesoft AnyyPoint Monitoring for Hybrid Deployment
Mulesoft AnyyPoint Monitoring for Hybrid Deploymentpruthviraj krishnam
 
Webinar: End to End Security & Operations with Chainguard and Weave GitOps
Webinar: End to End Security & Operations with Chainguard and Weave GitOpsWebinar: End to End Security & Operations with Chainguard and Weave GitOps
Webinar: End to End Security & Operations with Chainguard and Weave GitOpsWeaveworks
 
Ahmadabad mule soft_meetup_6march2021_azure_CICD
Ahmadabad mule soft_meetup_6march2021_azure_CICDAhmadabad mule soft_meetup_6march2021_azure_CICD
Ahmadabad mule soft_meetup_6march2021_azure_CICDShekh Muenuddeen
 
Automate mule deployments with github actions and travis ci
Automate mule deployments with github actions  and  travis ciAutomate mule deployments with github actions  and  travis ci
Automate mule deployments with github actions and travis ciNeerajKumar1965
 
Hyd virtual meetupslides11jul
Hyd virtual meetupslides11julHyd virtual meetupslides11jul
Hyd virtual meetupslides11julSantosh Ojha
 
Building High Performance Apps with Altinity Stable Builds for ClickHouse | A...
Building High Performance Apps with Altinity Stable Builds for ClickHouse | A...Building High Performance Apps with Altinity Stable Builds for ClickHouse | A...
Building High Performance Apps with Altinity Stable Builds for ClickHouse | A...Altinity Ltd
 
Free GitOps Workshop
Free GitOps WorkshopFree GitOps Workshop
Free GitOps WorkshopWeaveworks
 
MuleSoft Nashik Virtual Meetup#4 - Implementing CI/CD pipeline for deploying ...
MuleSoft Nashik Virtual Meetup#4 - Implementing CI/CD pipeline for deploying ...MuleSoft Nashik Virtual Meetup#4 - Implementing CI/CD pipeline for deploying ...
MuleSoft Nashik Virtual Meetup#4 - Implementing CI/CD pipeline for deploying ...Jitendra Bafna
 
Robust Network Security and Observability with GitOps and Cilium
Robust Network Security and Observability with GitOps and CiliumRobust Network Security and Observability with GitOps and Cilium
Robust Network Security and Observability with GitOps and CiliumWeaveworks
 
Secure your Secrets and Settings in ColdFusion
Secure your Secrets and Settings in ColdFusionSecure your Secrets and Settings in ColdFusion
Secure your Secrets and Settings in ColdFusionOrtus Solutions, Corp
 
Sydney mule soft meetup 30 april 2020
Sydney mule soft meetup   30 april 2020Sydney mule soft meetup   30 april 2020
Sydney mule soft meetup 30 april 2020Royston Lobo
 
GeoServer Developers Workshop
GeoServer Developers WorkshopGeoServer Developers Workshop
GeoServer Developers WorkshopJody Garnett
 
Deploy 22 microservices from scratch in 30 mins with GitOps
Deploy 22 microservices from scratch in 30 mins with GitOpsDeploy 22 microservices from scratch in 30 mins with GitOps
Deploy 22 microservices from scratch in 30 mins with GitOpsOpsta
 
Webinar: Capabilities, Confidence and Community – What Flux GA Means for You
Webinar: Capabilities, Confidence and Community – What Flux GA Means for YouWebinar: Capabilities, Confidence and Community – What Flux GA Means for You
Webinar: Capabilities, Confidence and Community – What Flux GA Means for YouWeaveworks
 
Wellington MuleSoft Meetup 2021-02-18
Wellington MuleSoft Meetup 2021-02-18Wellington MuleSoft Meetup 2021-02-18
Wellington MuleSoft Meetup 2021-02-18Mary Joy Sabal
 
Introduction to CloudHub 2.0
Introduction to CloudHub 2.0Introduction to CloudHub 2.0
Introduction to CloudHub 2.0NeerajKumar1965
 

Similar to Washington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOps (20)

Mulesoft Meetup Milano #9 - Batch Processing and CI/CD
Mulesoft Meetup Milano #9 - Batch Processing and CI/CDMulesoft Meetup Milano #9 - Batch Processing and CI/CD
Mulesoft Meetup Milano #9 - Batch Processing and CI/CD
 
Mulesoft Meetup Roma - Monitoring Framework & DevOps.pptx
Mulesoft Meetup Roma - Monitoring Framework & DevOps.pptxMulesoft Meetup Roma - Monitoring Framework & DevOps.pptx
Mulesoft Meetup Roma - Monitoring Framework & DevOps.pptx
 
Weave GitOps 2022.09 Release: A Fast & Reliable Path to Production with Progr...
Weave GitOps 2022.09 Release: A Fast & Reliable Path to Production with Progr...Weave GitOps 2022.09 Release: A Fast & Reliable Path to Production with Progr...
Weave GitOps 2022.09 Release: A Fast & Reliable Path to Production with Progr...
 
Mulesoft AnyyPoint Monitoring for Hybrid Deployment
Mulesoft AnyyPoint Monitoring for Hybrid DeploymentMulesoft AnyyPoint Monitoring for Hybrid Deployment
Mulesoft AnyyPoint Monitoring for Hybrid Deployment
 
Webinar: End to End Security & Operations with Chainguard and Weave GitOps
Webinar: End to End Security & Operations with Chainguard and Weave GitOpsWebinar: End to End Security & Operations with Chainguard and Weave GitOps
Webinar: End to End Security & Operations with Chainguard and Weave GitOps
 
Ahmadabad mule soft_meetup_6march2021_azure_CICD
Ahmadabad mule soft_meetup_6march2021_azure_CICDAhmadabad mule soft_meetup_6march2021_azure_CICD
Ahmadabad mule soft_meetup_6march2021_azure_CICD
 
Automate mule deployments with github actions and travis ci
Automate mule deployments with github actions  and  travis ciAutomate mule deployments with github actions  and  travis ci
Automate mule deployments with github actions and travis ci
 
Hyd virtual meetupslides11jul
Hyd virtual meetupslides11julHyd virtual meetupslides11jul
Hyd virtual meetupslides11jul
 
Building High Performance Apps with Altinity Stable Builds for ClickHouse | A...
Building High Performance Apps with Altinity Stable Builds for ClickHouse | A...Building High Performance Apps with Altinity Stable Builds for ClickHouse | A...
Building High Performance Apps with Altinity Stable Builds for ClickHouse | A...
 
Free GitOps Workshop
Free GitOps WorkshopFree GitOps Workshop
Free GitOps Workshop
 
MuleSoft Nashik Virtual Meetup#4 - Implementing CI/CD pipeline for deploying ...
MuleSoft Nashik Virtual Meetup#4 - Implementing CI/CD pipeline for deploying ...MuleSoft Nashik Virtual Meetup#4 - Implementing CI/CD pipeline for deploying ...
MuleSoft Nashik Virtual Meetup#4 - Implementing CI/CD pipeline for deploying ...
 
Introduction to git & github
Introduction to git & githubIntroduction to git & github
Introduction to git & github
 
Robust Network Security and Observability with GitOps and Cilium
Robust Network Security and Observability with GitOps and CiliumRobust Network Security and Observability with GitOps and Cilium
Robust Network Security and Observability with GitOps and Cilium
 
Secure your Secrets and Settings in ColdFusion
Secure your Secrets and Settings in ColdFusionSecure your Secrets and Settings in ColdFusion
Secure your Secrets and Settings in ColdFusion
 
Sydney mule soft meetup 30 april 2020
Sydney mule soft meetup   30 april 2020Sydney mule soft meetup   30 april 2020
Sydney mule soft meetup 30 april 2020
 
GeoServer Developers Workshop
GeoServer Developers WorkshopGeoServer Developers Workshop
GeoServer Developers Workshop
 
Deploy 22 microservices from scratch in 30 mins with GitOps
Deploy 22 microservices from scratch in 30 mins with GitOpsDeploy 22 microservices from scratch in 30 mins with GitOps
Deploy 22 microservices from scratch in 30 mins with GitOps
 
Webinar: Capabilities, Confidence and Community – What Flux GA Means for You
Webinar: Capabilities, Confidence and Community – What Flux GA Means for YouWebinar: Capabilities, Confidence and Community – What Flux GA Means for You
Webinar: Capabilities, Confidence and Community – What Flux GA Means for You
 
Wellington MuleSoft Meetup 2021-02-18
Wellington MuleSoft Meetup 2021-02-18Wellington MuleSoft Meetup 2021-02-18
Wellington MuleSoft Meetup 2021-02-18
 
Introduction to CloudHub 2.0
Introduction to CloudHub 2.0Introduction to CloudHub 2.0
Introduction to CloudHub 2.0
 

More from Big Compass

Denver MuleSoft Meetup: TDX Talk - Automatically Secure and Manage any API at...
Denver MuleSoft Meetup: TDX Talk - Automatically Secure and Manage any API at...Denver MuleSoft Meetup: TDX Talk - Automatically Secure and Manage any API at...
Denver MuleSoft Meetup: TDX Talk - Automatically Secure and Manage any API at...Big Compass
 
DC MuleSoft Meetup: TDX Talk: API Security The 3 Keys To Protect Your Digital...
DC MuleSoft Meetup: TDX Talk: API Security The 3 Keys To Protect Your Digital...DC MuleSoft Meetup: TDX Talk: API Security The 3 Keys To Protect Your Digital...
DC MuleSoft Meetup: TDX Talk: API Security The 3 Keys To Protect Your Digital...Big Compass
 
Denver MuleSoft Meetup: Greatest MuleSoft Hits of 2022
Denver MuleSoft Meetup: Greatest MuleSoft Hits of 2022Denver MuleSoft Meetup: Greatest MuleSoft Hits of 2022
Denver MuleSoft Meetup: Greatest MuleSoft Hits of 2022Big Compass
 
At Last, MuleSoft RPA Revealed - A Quick Guide To Automating Your Business | ...
At Last, MuleSoft RPA Revealed - A Quick Guide To Automating Your Business | ...At Last, MuleSoft RPA Revealed - A Quick Guide To Automating Your Business | ...
At Last, MuleSoft RPA Revealed - A Quick Guide To Automating Your Business | ...Big Compass
 
Denver MuleSoft Meetup: Approve this! (or reject this!) with MuleSoft and Slack
Denver MuleSoft Meetup: Approve this! (or reject this!) with MuleSoft and SlackDenver MuleSoft Meetup: Approve this! (or reject this!) with MuleSoft and Slack
Denver MuleSoft Meetup: Approve this! (or reject this!) with MuleSoft and SlackBig Compass
 
Denver MuleSoft Meetup: How To Best Use Anypoint Monitoring In Your Anypoint ...
Denver MuleSoft Meetup: How To Best Use Anypoint Monitoring In Your Anypoint ...Denver MuleSoft Meetup: How To Best Use Anypoint Monitoring In Your Anypoint ...
Denver MuleSoft Meetup: How To Best Use Anypoint Monitoring In Your Anypoint ...Big Compass
 
Denver MuleSoft Meetup: Cool Features in DataWeave 2.3 and 2.4
Denver MuleSoft Meetup: Cool Features in DataWeave 2.3 and 2.4Denver MuleSoft Meetup: Cool Features in DataWeave 2.3 and 2.4
Denver MuleSoft Meetup: Cool Features in DataWeave 2.3 and 2.4Big Compass
 

More from Big Compass (7)

Denver MuleSoft Meetup: TDX Talk - Automatically Secure and Manage any API at...
Denver MuleSoft Meetup: TDX Talk - Automatically Secure and Manage any API at...Denver MuleSoft Meetup: TDX Talk - Automatically Secure and Manage any API at...
Denver MuleSoft Meetup: TDX Talk - Automatically Secure and Manage any API at...
 
DC MuleSoft Meetup: TDX Talk: API Security The 3 Keys To Protect Your Digital...
DC MuleSoft Meetup: TDX Talk: API Security The 3 Keys To Protect Your Digital...DC MuleSoft Meetup: TDX Talk: API Security The 3 Keys To Protect Your Digital...
DC MuleSoft Meetup: TDX Talk: API Security The 3 Keys To Protect Your Digital...
 
Denver MuleSoft Meetup: Greatest MuleSoft Hits of 2022
Denver MuleSoft Meetup: Greatest MuleSoft Hits of 2022Denver MuleSoft Meetup: Greatest MuleSoft Hits of 2022
Denver MuleSoft Meetup: Greatest MuleSoft Hits of 2022
 
At Last, MuleSoft RPA Revealed - A Quick Guide To Automating Your Business | ...
At Last, MuleSoft RPA Revealed - A Quick Guide To Automating Your Business | ...At Last, MuleSoft RPA Revealed - A Quick Guide To Automating Your Business | ...
At Last, MuleSoft RPA Revealed - A Quick Guide To Automating Your Business | ...
 
Denver MuleSoft Meetup: Approve this! (or reject this!) with MuleSoft and Slack
Denver MuleSoft Meetup: Approve this! (or reject this!) with MuleSoft and SlackDenver MuleSoft Meetup: Approve this! (or reject this!) with MuleSoft and Slack
Denver MuleSoft Meetup: Approve this! (or reject this!) with MuleSoft and Slack
 
Denver MuleSoft Meetup: How To Best Use Anypoint Monitoring In Your Anypoint ...
Denver MuleSoft Meetup: How To Best Use Anypoint Monitoring In Your Anypoint ...Denver MuleSoft Meetup: How To Best Use Anypoint Monitoring In Your Anypoint ...
Denver MuleSoft Meetup: How To Best Use Anypoint Monitoring In Your Anypoint ...
 
Denver MuleSoft Meetup: Cool Features in DataWeave 2.3 and 2.4
Denver MuleSoft Meetup: Cool Features in DataWeave 2.3 and 2.4Denver MuleSoft Meetup: Cool Features in DataWeave 2.3 and 2.4
Denver MuleSoft Meetup: Cool Features in DataWeave 2.3 and 2.4
 

Recently uploaded

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
Quantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation ComputingQuantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation ComputingWSO2
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoffsammart93
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingEdi Saputra
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businesspanagenda
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Orbitshub
 
Modernizing Legacy Systems Using Ballerina
Modernizing Legacy Systems Using BallerinaModernizing Legacy Systems Using Ballerina
Modernizing Legacy Systems Using BallerinaWSO2
 
Stronger Together: Developing an Organizational Strategy for Accessible Desig...
Stronger Together: Developing an Organizational Strategy for Accessible Desig...Stronger Together: Developing an Organizational Strategy for Accessible Desig...
Stronger Together: Developing an Organizational Strategy for Accessible Desig...caitlingebhard1
 
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....rightmanforbloodline
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfOrbitshub
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Jeffrey Haguewood
 
API Governance and Monetization - The evolution of API governance
API Governance and Monetization -  The evolution of API governanceAPI Governance and Monetization -  The evolution of API governance
API Governance and Monetization - The evolution of API governanceWSO2
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusZilliz
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 

Recently uploaded (20)

Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Quantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation ComputingQuantum Leap in Next-Generation Computing
Quantum Leap in Next-Generation Computing
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot TakeoffStrategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
Strategize a Smooth Tenant-to-tenant Migration and Copilot Takeoff
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
Navigating the Deluge_ Dubai Floods and the Resilience of Dubai International...
 
Modernizing Legacy Systems Using Ballerina
Modernizing Legacy Systems Using BallerinaModernizing Legacy Systems Using Ballerina
Modernizing Legacy Systems Using Ballerina
 
Stronger Together: Developing an Organizational Strategy for Accessible Desig...
Stronger Together: Developing an Organizational Strategy for Accessible Desig...Stronger Together: Developing an Organizational Strategy for Accessible Desig...
Stronger Together: Developing an Organizational Strategy for Accessible Desig...
 
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
TEST BANK For Principles of Anatomy and Physiology, 16th Edition by Gerard J....
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdfRising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
Rising Above_ Dubai Floods and the Fortitude of Dubai International Airport.pdf
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
+971581248768>> SAFE AND ORIGINAL ABORTION PILLS FOR SALE IN DUBAI AND ABUDHA...
 
API Governance and Monetization - The evolution of API governance
API Governance and Monetization -  The evolution of API governanceAPI Governance and Monetization -  The evolution of API governance
API Governance and Monetization - The evolution of API governance
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 

Washington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOps

  • 1. All contents © MuleSoft, LLC DC MULESOFT MEETUP Setting up a CI/CD Pipeline with MuleSoft and Azure DevOps Speaker: CATHERINE WILLS MuleSoft Consultant | Big Compass, An Argano Company
  • 2. All contents © MuleSoft, LLC DC MULESOFT MEETUP Meetup Admin Introductions STEPHANIE LAWRENCE BEN STONE
  • 3. All contents © MuleSoft, LLC Google Slides does not have an image placeholder option. Please place an image over this box manually + First person to call out the correct answer, wins! + One answer per person per question + If you answer more than 1x per question, you are ineligible for that question + If you’ve already won during today’s Meetup, you cannot win again + Meetup organizers make the final decision on the trivia winners DC MULESOFT MEETUP Trivia Question Rules & Regulations
  • 4. All contents © MuleSoft, LLC DC MULESOFT MEETUP SPEAKER Catherine Wills + Lives in New York, originally from Georgia + ~ 2 years of MuleSoft experience in development and architecture + Hobbies - Watching the Dawgs and the Braves, history museums, skiing, and golf
  • 5. All contents © MuleSoft, LLC CI/CD + DevOps
  • 6. All contents © MuleSoft, LLC 6 CI/CD is a method designed to frequently deliver applications by automating stages within the application development lifecycle. Continuous Integration: Incremental code changes are constantly integrated into a main branch which is verified by an automated build and automated unit testing. Continuous Delivery/Deployment: Automates the release of the validated code to Production. What is CI/CD?
  • 7. All contents © MuleSoft, LLC 7 DevOps integrates the work of software development (Dev) and operations (Ops) by facilitating team collaboration, shared responsibility, and technology automation which aid in a holistic style of Agile software development. What is DevOps?
  • 8. All contents © MuleSoft, LLC Advantages 8 CI/CD ● Increased speed gives rapid deliveries ● Greater efficiencies, streamlined process ● Ensured reliability ● Shorter development cycles ● Decreased deployment failures and bugs ● Enhanced quality and security ● Improved communication and collaboration ● Faster innovation DevOp s
  • 9. All contents © MuleSoft, LLC 9 Common Branching Strategies for DevOps GitHub Flow ● Utilizes main and feature branches ● Simple workflow for smaller teams ● Easily integrate into CI/CD pipelines Git Flow ● Uses main, develop, release, hotfix, and feature branches ● Easier parallel collaboration for larger teams ● Supports multiple versions of production code Trunk-Based Development ● Integrates into main branch once a day ● Always in releasable state ● Excellent for CI/CD pipelines
  • 10. All contents © MuleSoft, LLC Google Slides does not have an image placeholder option. Please place an image over this box manually A. Constantly Incrementing, Constantly Deploying B. Continuous Integration, Continuous Delivery C. Consistently Integrating, Consistently Building D. Continuous Increments, Constant Deployment TRIVIA QUESTION #1 What does CI/CD stand for?
  • 11. All contents © MuleSoft, LLC CloudHub 1.0, CloudHub 2.0, and Runtime Fabric Deployment Targets
  • 12. All contents © MuleSoft, LLC 12 Highlights CloudHub 1.0 CloudHub 2.0 Runtime Fabric ● Primary execution container is AWS EC3 instance ● Pre-determined worker sizes only ● Global deployment options ● Usage measured in vCores ● Container-based application deployment ● Can deploy to shared or private spaces ● Ingress self-service logs ● More granular vCore allocation options ● Primary execution is Kubernetes pod ● Granular control over application resource allocation ● Subject to customer data center footprint ● Usage measured in vCores
  • 13. All contents © MuleSoft, LLC Azure DevOps
  • 14. All contents © MuleSoft, LLC 15 Boards helps teams plan, track, and discuss work Repos is a set of version control tools used to manage code Pipelines supports CI/CD to test, build, and deploy code Pipelines: Used to automatically build and test code projects Releases: Holds a versioned set of artifacts specified in the CI/CD pipeline Library: A collection of build and release assets ■ Variable Groups can be used to store values and secrets, such as runtime properties ■ Secure Files can be used to store secure files such as the settings.xml Azure DevOps Components
  • 15. All contents © MuleSoft, LLC Branch Policies ● Can set policies for a specific branch namespace (i.e. develop, main) that applies for all repositories ● Protects a branch from having changes directly pushed to it ● Requires a pull request for code review 16
  • 16. All contents © MuleSoft, LLC Build Pipelines ● Define pipelines using YAML syntax (Fig. A) or Classic Build interface (Fig. B) ● Customizable triggers, conditions, tasks, etc. ● Test coverage and results ● Viewable logs (Fig. C) 17 Fig. A Fig. C Fig. B
  • 17. All contents © MuleSoft, LLC Build Trigger Variabilities Built-in functions and predefined variables can be used in expressions to specify various condition combinations for the Pipelines’ Stages, Jobs, or Steps 18 Trigger Type CI (Continuous Integration) PR (Pull Request) Scheduled YAML Version Uses pushed (target) branch Uses source branch Uses included branch Triggers ● Branch is specified in trigger and is pushed to, such as git- push or completion PR ● Manually run pipeline ● Must have build validation branch policy ● PR created and active, not upon PR completion ● Uses cron syntax Runs source branch when a PR into the main branch is created, if Build Validation branch policy is set on main branch, and is succeeding Runs main branch on a CI trigger if commit message starts with ‘Merged PR’ *Default merge commit message starts with ‘Merged PR’
  • 18. All contents © MuleSoft, LLC Release Pipelines ● Classic-style interface (Fig. A) ● Can rollback by re-deploying a previous release ● Various deployment trigger routes ● Pre and post deployment condition options ● Viewable logs (Fig. B) 19 Fig. A Fig. B
  • 19. All contents © MuleSoft, LLC Release Creation Trigger Options 20 ● Continuous Deployment ○ Creates release after successful ‘Individual CI’ build ○ Can include/exclude branches ● Pull Request ○ Creates release upon PR creation after successful build ○ Must set build validation branch policy ○ Must set target branch and specify in Stage(s) ● Scheduled Set Release Triggers ● Pre-Deployment Condition Triggers: ○ After Release ○ After Stage ○ Manual Only ● Deployment approvals ● Gates ○ Automatically collects health signals ■ i.e. Invoke REST API Set Pre/Post Deployment Conditions per Stage
  • 20. All contents © MuleSoft, LLC Google Slides does not have an image placeholder option. Please place an image over this box manually A. Deployment Approval B. Continuous Integration Trigger C. Gates D. Branch Policy TRIVIA QUESTION #2 What can be used to protect a branch from being directly pushed to?
  • 21. All contents © MuleSoft, LLC CI/CD Pipeline Demo
  • 22. All contents © MuleSoft, LLC 23 Tools ● Anypoint Studio v7.14.0 ● Mule Runtime v4.4.0 ● MUnit Tools v2.3.13 ● Mule Maven Plugin v3.8.0 ● Apache Maven v3.8.8 (Mule Maven Plugin is not compatible with latest Apache Maven version, v3.9.x) ● Anypoint Exchange v3 ● Anypoint Platform: Runtime Manager ● Azure DevOps Free Tier Utilities Environments Used for Demo ● Development ● QA ● Production Files ● azure-pipelines.yml ● nonprod-settings.xml ● prod-settings.xml ● pom.xml ● mule-artifact.json (CH 1.0 Only)
  • 23. All contents © MuleSoft, LLC The Pipeline Pathway 24
  • 24. All contents © MuleSoft, LLC 7) Configure mule- artifact.json (CH 1.0 only) 6) Configure pom.xml 5) Add New Release Pipeline 4) Add properties to Library 3) Configure & Install settings.xml 2) Pull in azure- pipelines.yml and configure 1) Create a Build Pipeline 25 Azure CICD Pipeline Set-Up
  • 25. All contents © MuleSoft, LLC Configure azure-pipelines.yml 27 CI trigger that allows main branch to run when updated via PR 1 Uses latest ubuntu, a Microsoft-hosted agent 2 Access to properties from default and dev variable groups from Library to use within Stage 3 Runs job if predefined variable, Build.Reason, is either ‘Individual CI’ or ‘Manual’, and has succeeded thus far 4 Downloads settings.xml for lower environments from Secure Files in Library 5 Publishes Artifact to Exchange (CH 2.0 & RTF Only) 6 Runs MUnit tests, builds, and deploys to DEV environment 7 Gets <artifactId> from pom.xml and sets it as Pipeline variable, $(artifactId) 8 Publishes pipeline build artifact, pom.xml, to Container named ‘drop’ 10 Publishes pipeline build artifact, JAR file, to Container named ‘drop’ 9
  • 26. All contents © MuleSoft, LLC Configure and Install settings.xml 1. Install in Secure files of Library 2. Grant pipelines permission *One settings.xml file is for the lower environments, and one is for the Production environment. 28
  • 27. All contents © MuleSoft, LLC 1 Add properties in Mule Maven Plugin Configuration Configure pom.xml 35 Add MUnit executions and configurations 2 3 Add Distribution Management (CH2.0, RTF)
  • 28. All contents © MuleSoft, LLC Property Differences in pom.xml 36 CloudHub 1.0 CloudHub 2.0 Runtime Fabric
  • 29. All contents © MuleSoft, LLC Configure mule-artifact.json (CH 1.0 Only) 37 Add names of secure properties to the mule-artifact.json file to hide them in Runtime Manager Example of hidden properties in Runtime Manager Settings →
  • 30. All contents © MuleSoft, LLC 38 Deployment Target Setup Differences CloudHub 1.0 CloudHub 2.0 Runtime Fabric ● Hide properties in mule- artifact.json ● Protect properties in pom.xml ● Must publish to Exchange prior to deployment ● Must have Distribution Management in pom.xml ● Protect properties in pom.xml ● Must publish to Exchange prior to deployment ● Must have Distribution Management in pom.xml ● Uses Runtime Fabric agent
  • 31. All contents © MuleSoft, LLC Google Slides does not have an image placeholder option. Please place an image over this box manually A. settings.xml B. azure-pipelines.yml C. pom.xml D. mule-artifact.json TRIVIA QUESTION #3 Which file can be used to protect secure property values in Runtime Manager for CH 2.0 & RTF?
  • 32. All contents © MuleSoft, LLC Questions? CONNECT ON LINKEDIN CATHERINE WILLS Consultant | Big Compass
  • 33. All contents © MuleSoft, LLC Google Slides does not have an image placeholder option. Please place an image over this box manually Share on Social Meetup Feedback + Use the hashtags #MuleSoftMeetups & #DCMuleSoftMeetup + Don’t forget to tag @BigCompass + Please fill out this 1 minute survey to provide feedback and topic suggestions