SlideShare a Scribd company logo
Saturday, 16 July,2022
Faridabad MuleSoft Meetup Group
Deploying Mule Applications with Jenkins,
Azure and BitBucket
2
1. Introduction
2. Continuous Integration/Continuous Delivery
3. Jenkins Pipeline
4. CI/CD Deployment with Demo
● Jenkins with Git
● Azure
● BitBucket
1. Q & A
2. Kahoot Quiz
Agenda
3
●About the organizer:
○ Amit Singh
○ Pankaj Goyal
Introductions
A SHOW OF HANDS:
Who is new to this Meetup?
4
Speakers for the session
A SHOW OF HANDS:
Who is new to this Meetup?
Mitali Chaudhary Rohit Singh Mayank Sharma
Safe Harbor Statement
● Both Speaker and Organizers are here with their own capacity and not representing any
organization/company.
● Speaker is only sharing his/her knowledge and is not responsible if the same product does not
work for your company.
● Please make all the design decision by understanding what is available in current
product(MuleSoft).
● We all are here to learn together “The moto is to learn together”
5
A recording of this meetup will be uploaded to events page within 24 hours.
Questions can be submitted/asked at any time in the Chat/Questions & Answers Tab.
Make it more Interactive!!!
Give us feedback! Rate this meetup session by filling feedback form at the end of the day.
We Love Feedbacks!!! Its Bread & Butter for Meetup.
Housekeeping
6
What is Software Deployment ?
Deployment is the mechanism through which applications, modules, updates, and patches
are delivered from developers to end users.
The methods used by developers to build, test and deploy new code will impact how fast a
product can respond to changes in customer preferences or requirements and the quality of
each change.
7
What is CI/CD ?
CI and CD stand for continuous integration and continuous delivery/continuous
deployment. In very simple terms, CI is a modern software development practice in which
incremental code changes are made frequently and reliably.
CD stands for continuous delivery/deployment ,which is a software development practice
that works in conjunction with continuous integration to automate the infrastructure
provisioning the release of application.
8
Continuous Delivery vs Deployment
What is the CD in CI/CD? Does it stand for deployment or delivery?
Well, the answer is both. Depending on the existing workflow and requirements, your team would
pick the practice that best fits them and their product.
Continuous delivery is the best choice for companies that want to take control and be the last filter
before new releases are deployed to the end-users.
9
Why is CI/CD Important ?
10
CI/CD allows organizations to ship software quickly and efficiently. CI/CD facilitates an
effective process for getting products to market faster than ever before, continuously
delivering code into production, and ensuring an ongoing flow of new features and bug
fixes via the most efficient delivery method.
What is Jenkins ?
Jenkins is an open-source automation tool written in Java with plugins built for
Continuous Integration purposes. Jenkins is used to build and test your software projects
continuously making it easier for developers to integrate changes to the project, and
making it easier for users to obtain a fresh build.
Advantages of using Jenkins:
● It is an open-source tool with great community support.
● It is built with Java and hence, it is supported by all the major platforms.
● It has 1000+ plugins to ease your work with different technologies
What is Jenkins Pipeline ?
Jenkins Pipeline is a suite of plugins which supports implementing and integrating
continuous delivery pipelines into Jenkins.It provides an extensible set of tools for
modeling simple-to-complex delivery pipelines "as code". The Pipeline Script is written
into a text file (called a Jenkinsfile) which is checked into a project’s source control
repository.
Declarative Script
pipeline {
agent any
stages {
stage('Build') {
steps {
bat 'mvn clean install'
}
}
stage('Test') {
steps {
bat 'mvn test'
}
}
stage('Deploy') {
steps {
bat 'mvn package deploy -DmuleDeploy'
}
}
}
}
Execute this Pipeline on any available agent.
Defines the "Build" stage.
Executes the Defined maven command.
CI/CD Deployment with GIT
Tools Required for the Implementation:
1. Jenkins
2. GIT
3. Maven
4. Java
CI/CD Deployment with GIT
Initial Configuration of Tools Required for the Implementation:
1. Setting the paths for
● JAVA_HOME
● MAVEN_HOME
● GIT
Inside system variables in the Environment Variables tab ,While having a setup in a
local system.
CI/CD Deployment with GIT
Steps to deploy application:
1. Create a basic Mule Application in Anypoint Studio
2. Setting the Mule application
● Open the project explorer and go to the pom.xml file.
● Add the deployment configuration in the Mule-Maven-Plugin.
CI/CD Deployment with GIT
Steps to deploy application:
3. Setting Up the Git and pushing the project jar file to GitHub repository
CI/CD Deployment with GIT
Steps to deploy application:
4. Configure Jenkins with required credentials
● Build Triggers
● Repository URL
● Branches to Build
● Script Path
5. According to the triggers when Git Repository will receive a new commit the pipeline
with execute automatically
CI/CD Deployment with GIT
Steps to deploy application:
6. Jenkins Pipeline Stage View After Completion
CI/CD Deployment with GIT
Steps to deploy application:
7. Anypoint Platform Runtime manager view
DEMONSTRATION
What is Azure DevOps?
Azure Pipelines is a service that caters the need for creating pipelines on Azure Cloud
Platform. It supports continuous integration (CI) and continuous delivery (CD), hence
constantly and consistently tests and builds your code and deploys it to any target by
defining a pipeline.
CI/CD Deployment with Azure
● Setting the Mule application
○ Open the project explorer and go to the pom.xml file.
○ Add the deployment configuration in the Mule-Maven-Plugin.
● Push the project files to the Azure repository
CI/CD Deployment with Azure
● Click on Pipelines from the left side menu and then Click on the “Create Pipeline”
button.
CI/CD Deployment with Azure
● Use the classic editor to create a pipeline without YAML.
● Start with an Empty Job
● Add a task( Maven and Download Secure file) to agent job.
CI/CD Deployment with Azure
● Configure the maven plugin with the required fields
CI/CD Deployment with Azure
● Add your secure file (settings.xml) and give reference variable name
CI/CD Deployment with Azure
● Setting the variable that we have passed dynamically in earlier maven plugin
CI/CD Deployment with Azure
● Run the created pipeline
CI/CD Deployment with Azure
● Pipeline is successfully completed and it is notified
CI/CD Deployment with Azure
● Application deployed successfully on cloudhub
DEMONSTRATION
CI/CD Deployment with Bitbucket
Steps to deploy application:
1. Create a basic Mule Application in Anypoint Studio
2. Setting the Mule application
● Open the project explorer and go to the pom.xml file.
● Add the deployment configuration in the Mule-Maven-Plugin.
CI/CD Deployment with Bitbucket
Steps to deploy application:
3. Create a project in Bitbucket Up and push the project files in Bitbucket repository
CI/CD Deployment with Bitbucket
Steps to deploy application:
4. Create Variable References in Bitbucket:
● By adding variables inside the Workspace Variables
CI/CD Deployment with Bitbucket
Steps to deploy application:
6. Under Variables section for the environments, create MULESOFT_ENVIRONMENT
variable with value Sandbox
CI/CD Deployment with Bitbucket
Steps to deploy application:
6. Create bitbucket-pipelines.yml as described below
pipelines:
default:
- step:
name: Git Security Scan
caches:
- maven
script:
- pipe: atlassian/git-secrets-scan:0.5.1
- step:
name: Validate & Compile
caches:
- maven
script:
- mvn -B clean -DskipTests compile
- step:
name: Deploy to Dev CloudHub
caches:
- maven
deployment: Sandbox
#trigger: manual
script:
- mvn -B clean -DskipTests deploy -DmuleDeploy
CI/CD Deployment with Bitbucket
Steps to deploy application:
7. Execute the pipeline
CI/CD Deployment with Bitbucket
Steps to deploy application:
8. Anypoint Platform Runtime manager view
DEMONSTRATION
41
● Be a Helping Hand
○ Contact the Meetup Organizers if you want to be Speaker in upcoming events
○ Use https://meetups.mulesoft.com/faridabad/ link to contact to Organizers
● Share:
○ Tweet using the hashtag #MuleSoftMeetups #FaridabadMeetup #MuleSoft
#MuleMeetup
○ Invite your network to join: https://meetups.mulesoft.com/faridabad/
● Feedback:
○ Fill out the survey feedback and suggest topics for upcoming events
○ Contact MuleSoft at meetups@mulesoft.com for ways to improve the program
What’s next?
Introduce yourself to your neighbor
Networking time
Thank you

More Related Content

PDF
Distributed Locking in Kubernetes
PPTX
A brief introduction to IaC with Terraform by Kenton Robbins (codeHarbour May...
ODP
Ansible get started
PPTX
Introduction to Java Cloud Service
PDF
Aws concepts-power-point-slides
PDF
Transactions and Concurrency Control Patterns
PDF
Building infrastructure as code using Terraform - DevOps Krakow
PDF
How AWS is reinventing the cloud
Distributed Locking in Kubernetes
A brief introduction to IaC with Terraform by Kenton Robbins (codeHarbour May...
Ansible get started
Introduction to Java Cloud Service
Aws concepts-power-point-slides
Transactions and Concurrency Control Patterns
Building infrastructure as code using Terraform - DevOps Krakow
How AWS is reinventing the cloud

What's hot (20)

PPTX
Sangfor HCI - Product Presentation for cloud
PDF
락플레이스 OpenShift Q&A 토크쇼 발표자료
PPTX
Cloud computing and utility computing
PDF
DevJam 2019 - Introduction to Kubernetes
PDF
GRID COMPUTING PRESENTATION
PDF
Event-driven autoscaling through KEDA and Knative Integration | DevNation Tec...
PDF
Terraform modules and best-practices - September 2018
PDF
Secrets in Kubernetes
PDF
Aws Architecture Fundamentals
PDF
CloudAnalyst: A CloudSim-based Tool for Modelling and Analysis of Large Scale...
PDF
Serverless computing with AWS Lambda
PDF
Terraform Best Practices - DevOps Unicorns 2019
PDF
Secure Infrastructure Provisioning with Terraform Cloud, Vault + GitLab CI
PDF
Intro to GitOps & Flux.pdf
PDF
IBM MQ - better application performance
PDF
[발표자료] 오픈소스 기반 클라우드 네이티브 애플리케이션 구축 방안 (feat. Kubernetes)
PDF
Cloud governance - theory and tools
PPTX
Containerization tutorial Containerization Explained
PPTX
How to Manage Your Time Series Data Pipeline at the Edge with InfluxDB
PDF
An AWS DMS Replication Journey from Oracle to Aurora MySQL
Sangfor HCI - Product Presentation for cloud
락플레이스 OpenShift Q&A 토크쇼 발표자료
Cloud computing and utility computing
DevJam 2019 - Introduction to Kubernetes
GRID COMPUTING PRESENTATION
Event-driven autoscaling through KEDA and Knative Integration | DevNation Tec...
Terraform modules and best-practices - September 2018
Secrets in Kubernetes
Aws Architecture Fundamentals
CloudAnalyst: A CloudSim-based Tool for Modelling and Analysis of Large Scale...
Serverless computing with AWS Lambda
Terraform Best Practices - DevOps Unicorns 2019
Secure Infrastructure Provisioning with Terraform Cloud, Vault + GitLab CI
Intro to GitOps & Flux.pdf
IBM MQ - better application performance
[발표자료] 오픈소스 기반 클라우드 네이티브 애플리케이션 구축 방안 (feat. Kubernetes)
Cloud governance - theory and tools
Containerization tutorial Containerization Explained
How to Manage Your Time Series Data Pipeline at the Edge with InfluxDB
An AWS DMS Replication Journey from Oracle to Aurora MySQL
Ad

Similar to Deploying Mule Applications with Jenkins, Azure and BitBucket (1).pptx (20)

PPTX
Nagpur Mulesoft Meetup on CICD using Jenkins
PPTX
Ahmadabad mule soft_meetup_6march2021_azure_CICD
PPTX
AWS-CICD_MULESOFT
PPTX
Indianapolis_meetup_April-1st-2022.pptx
PPTX
Washington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOps
PPTX
CI CD Daridabad MuleSoft meetup
PPTX
51723dcmulesoftmeetupcicdpipelinewithmulesoftandazure-230612153252-83a189b4.pptx
PPTX
Meetup en español #5 - Continuous Integration and Continuous Delivery (CI/CD)...
PDF
MuleSoft Nashik Virtual Meetup#4 - Implementing CI/CD pipeline for deploying ...
PPTX
Azure DevOps Pipeline setup for Mule APIs #36
PDF
Hyd virtual meetupslides11jul
PPTX
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
PDF
CI/CD pipelines for CloudHub 2.0 - Wroclaw MuleSoft Meetup #2
PPTX
Github Actions for CI/CD Setup | MuleSoft Mysore Meetup #5
PPTX
Vancouver mulesoft meetup_september_2020
PPTX
Warsaw MuleSoft Meetup #6 - CI/CD
PPTX
Mulesoft Meetup Roma - Monitoring Framework & DevOps.pptx
PPTX
Automate mule deployments with github actions and travis ci
PDF
MuleSoft Surat Virtual Meetup#15 - Caching Scope, Caching Strategy and Jenkin...
PPTX
varun JENKINS.pptx
Nagpur Mulesoft Meetup on CICD using Jenkins
Ahmadabad mule soft_meetup_6march2021_azure_CICD
AWS-CICD_MULESOFT
Indianapolis_meetup_April-1st-2022.pptx
Washington DC MuleSoft Meetup: CI/CD Pipeline with MuleSoft and Azure DevOps
CI CD Daridabad MuleSoft meetup
51723dcmulesoftmeetupcicdpipelinewithmulesoftandazure-230612153252-83a189b4.pptx
Meetup en español #5 - Continuous Integration and Continuous Delivery (CI/CD)...
MuleSoft Nashik Virtual Meetup#4 - Implementing CI/CD pipeline for deploying ...
Azure DevOps Pipeline setup for Mule APIs #36
Hyd virtual meetupslides11jul
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
CI/CD pipelines for CloudHub 2.0 - Wroclaw MuleSoft Meetup #2
Github Actions for CI/CD Setup | MuleSoft Mysore Meetup #5
Vancouver mulesoft meetup_september_2020
Warsaw MuleSoft Meetup #6 - CI/CD
Mulesoft Meetup Roma - Monitoring Framework & DevOps.pptx
Automate mule deployments with github actions and travis ci
MuleSoft Surat Virtual Meetup#15 - Caching Scope, Caching Strategy and Jenkin...
varun JENKINS.pptx
Ad

Recently uploaded (20)

PPT
Project quality management in manufacturing
PPTX
web development for engineering and engineering
PPTX
MET 305 MODULE 1 KTU 2019 SCHEME 25.pptx
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PDF
Structs to JSON How Go Powers REST APIs.pdf
PPTX
CH1 Production IntroductoryConcepts.pptx
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
Fluid Mechanics, Module 3: Basics of Fluid Mechanics
PPT
Drone Technology Electronics components_1
PPTX
bas. eng. economics group 4 presentation 1.pptx
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
Strings in CPP - Strings in C++ are sequences of characters used to store and...
PDF
Well-logging-methods_new................
PDF
Arduino robotics embedded978-1-4302-3184-4.pdf
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
OOP with Java - Java Introduction (Basics)
Project quality management in manufacturing
web development for engineering and engineering
MET 305 MODULE 1 KTU 2019 SCHEME 25.pptx
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
Structs to JSON How Go Powers REST APIs.pdf
CH1 Production IntroductoryConcepts.pptx
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
Operating System & Kernel Study Guide-1 - converted.pdf
Fluid Mechanics, Module 3: Basics of Fluid Mechanics
Drone Technology Electronics components_1
bas. eng. economics group 4 presentation 1.pptx
Model Code of Practice - Construction Work - 21102022 .pdf
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
Strings in CPP - Strings in C++ are sequences of characters used to store and...
Well-logging-methods_new................
Arduino robotics embedded978-1-4302-3184-4.pdf
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
Internet of Things (IOT) - A guide to understanding
OOP with Java - Java Introduction (Basics)

Deploying Mule Applications with Jenkins, Azure and BitBucket (1).pptx

  • 1. Saturday, 16 July,2022 Faridabad MuleSoft Meetup Group Deploying Mule Applications with Jenkins, Azure and BitBucket
  • 2. 2 1. Introduction 2. Continuous Integration/Continuous Delivery 3. Jenkins Pipeline 4. CI/CD Deployment with Demo ● Jenkins with Git ● Azure ● BitBucket 1. Q & A 2. Kahoot Quiz Agenda
  • 3. 3 ●About the organizer: ○ Amit Singh ○ Pankaj Goyal Introductions A SHOW OF HANDS: Who is new to this Meetup?
  • 4. 4 Speakers for the session A SHOW OF HANDS: Who is new to this Meetup? Mitali Chaudhary Rohit Singh Mayank Sharma
  • 5. Safe Harbor Statement ● Both Speaker and Organizers are here with their own capacity and not representing any organization/company. ● Speaker is only sharing his/her knowledge and is not responsible if the same product does not work for your company. ● Please make all the design decision by understanding what is available in current product(MuleSoft). ● We all are here to learn together “The moto is to learn together” 5
  • 6. A recording of this meetup will be uploaded to events page within 24 hours. Questions can be submitted/asked at any time in the Chat/Questions & Answers Tab. Make it more Interactive!!! Give us feedback! Rate this meetup session by filling feedback form at the end of the day. We Love Feedbacks!!! Its Bread & Butter for Meetup. Housekeeping 6
  • 7. What is Software Deployment ? Deployment is the mechanism through which applications, modules, updates, and patches are delivered from developers to end users. The methods used by developers to build, test and deploy new code will impact how fast a product can respond to changes in customer preferences or requirements and the quality of each change. 7
  • 8. What is CI/CD ? CI and CD stand for continuous integration and continuous delivery/continuous deployment. In very simple terms, CI is a modern software development practice in which incremental code changes are made frequently and reliably. CD stands for continuous delivery/deployment ,which is a software development practice that works in conjunction with continuous integration to automate the infrastructure provisioning the release of application. 8
  • 9. Continuous Delivery vs Deployment What is the CD in CI/CD? Does it stand for deployment or delivery? Well, the answer is both. Depending on the existing workflow and requirements, your team would pick the practice that best fits them and their product. Continuous delivery is the best choice for companies that want to take control and be the last filter before new releases are deployed to the end-users. 9
  • 10. Why is CI/CD Important ? 10 CI/CD allows organizations to ship software quickly and efficiently. CI/CD facilitates an effective process for getting products to market faster than ever before, continuously delivering code into production, and ensuring an ongoing flow of new features and bug fixes via the most efficient delivery method.
  • 11. What is Jenkins ? Jenkins is an open-source automation tool written in Java with plugins built for Continuous Integration purposes. Jenkins is used to build and test your software projects continuously making it easier for developers to integrate changes to the project, and making it easier for users to obtain a fresh build. Advantages of using Jenkins: ● It is an open-source tool with great community support. ● It is built with Java and hence, it is supported by all the major platforms. ● It has 1000+ plugins to ease your work with different technologies
  • 12. What is Jenkins Pipeline ? Jenkins Pipeline is a suite of plugins which supports implementing and integrating continuous delivery pipelines into Jenkins.It provides an extensible set of tools for modeling simple-to-complex delivery pipelines "as code". The Pipeline Script is written into a text file (called a Jenkinsfile) which is checked into a project’s source control repository.
  • 13. Declarative Script pipeline { agent any stages { stage('Build') { steps { bat 'mvn clean install' } } stage('Test') { steps { bat 'mvn test' } } stage('Deploy') { steps { bat 'mvn package deploy -DmuleDeploy' } } } } Execute this Pipeline on any available agent. Defines the "Build" stage. Executes the Defined maven command.
  • 14. CI/CD Deployment with GIT Tools Required for the Implementation: 1. Jenkins 2. GIT 3. Maven 4. Java
  • 15. CI/CD Deployment with GIT Initial Configuration of Tools Required for the Implementation: 1. Setting the paths for ● JAVA_HOME ● MAVEN_HOME ● GIT Inside system variables in the Environment Variables tab ,While having a setup in a local system.
  • 16. CI/CD Deployment with GIT Steps to deploy application: 1. Create a basic Mule Application in Anypoint Studio 2. Setting the Mule application ● Open the project explorer and go to the pom.xml file. ● Add the deployment configuration in the Mule-Maven-Plugin.
  • 17. CI/CD Deployment with GIT Steps to deploy application: 3. Setting Up the Git and pushing the project jar file to GitHub repository
  • 18. CI/CD Deployment with GIT Steps to deploy application: 4. Configure Jenkins with required credentials ● Build Triggers ● Repository URL ● Branches to Build ● Script Path 5. According to the triggers when Git Repository will receive a new commit the pipeline with execute automatically
  • 19. CI/CD Deployment with GIT Steps to deploy application: 6. Jenkins Pipeline Stage View After Completion
  • 20. CI/CD Deployment with GIT Steps to deploy application: 7. Anypoint Platform Runtime manager view
  • 22. What is Azure DevOps? Azure Pipelines is a service that caters the need for creating pipelines on Azure Cloud Platform. It supports continuous integration (CI) and continuous delivery (CD), hence constantly and consistently tests and builds your code and deploys it to any target by defining a pipeline.
  • 23. CI/CD Deployment with Azure ● Setting the Mule application ○ Open the project explorer and go to the pom.xml file. ○ Add the deployment configuration in the Mule-Maven-Plugin.
  • 24. ● Push the project files to the Azure repository CI/CD Deployment with Azure
  • 25. ● Click on Pipelines from the left side menu and then Click on the “Create Pipeline” button. CI/CD Deployment with Azure
  • 26. ● Use the classic editor to create a pipeline without YAML. ● Start with an Empty Job ● Add a task( Maven and Download Secure file) to agent job. CI/CD Deployment with Azure
  • 27. ● Configure the maven plugin with the required fields CI/CD Deployment with Azure
  • 28. ● Add your secure file (settings.xml) and give reference variable name CI/CD Deployment with Azure
  • 29. ● Setting the variable that we have passed dynamically in earlier maven plugin CI/CD Deployment with Azure
  • 30. ● Run the created pipeline CI/CD Deployment with Azure
  • 31. ● Pipeline is successfully completed and it is notified CI/CD Deployment with Azure ● Application deployed successfully on cloudhub
  • 33. CI/CD Deployment with Bitbucket Steps to deploy application: 1. Create a basic Mule Application in Anypoint Studio 2. Setting the Mule application ● Open the project explorer and go to the pom.xml file. ● Add the deployment configuration in the Mule-Maven-Plugin.
  • 34. CI/CD Deployment with Bitbucket Steps to deploy application: 3. Create a project in Bitbucket Up and push the project files in Bitbucket repository
  • 35. CI/CD Deployment with Bitbucket Steps to deploy application: 4. Create Variable References in Bitbucket: ● By adding variables inside the Workspace Variables
  • 36. CI/CD Deployment with Bitbucket Steps to deploy application: 6. Under Variables section for the environments, create MULESOFT_ENVIRONMENT variable with value Sandbox
  • 37. CI/CD Deployment with Bitbucket Steps to deploy application: 6. Create bitbucket-pipelines.yml as described below pipelines: default: - step: name: Git Security Scan caches: - maven script: - pipe: atlassian/git-secrets-scan:0.5.1 - step: name: Validate & Compile caches: - maven script: - mvn -B clean -DskipTests compile - step: name: Deploy to Dev CloudHub caches: - maven deployment: Sandbox #trigger: manual script: - mvn -B clean -DskipTests deploy -DmuleDeploy
  • 38. CI/CD Deployment with Bitbucket Steps to deploy application: 7. Execute the pipeline
  • 39. CI/CD Deployment with Bitbucket Steps to deploy application: 8. Anypoint Platform Runtime manager view
  • 41. 41 ● Be a Helping Hand ○ Contact the Meetup Organizers if you want to be Speaker in upcoming events ○ Use https://meetups.mulesoft.com/faridabad/ link to contact to Organizers ● Share: ○ Tweet using the hashtag #MuleSoftMeetups #FaridabadMeetup #MuleSoft #MuleMeetup ○ Invite your network to join: https://meetups.mulesoft.com/faridabad/ ● Feedback: ○ Fill out the survey feedback and suggest topics for upcoming events ○ Contact MuleSoft at meetups@mulesoft.com for ways to improve the program What’s next?
  • 42. Introduce yourself to your neighbor Networking time