SlideShare ist ein Scribd-Unternehmen logo
1 von 22
Downloaden Sie, um offline zu lesen
Contract Driven Development
The Death of Integration Hell 👿
Naresh Jain (@nashjain)
https://xnsio.com
Release under CC by Naresh Jain @ Xnsio 1
Micro-Frontends Micro-Services
Logical E-Com Application Architecture
External Dependencies
Payment Service
Payment Gateways
Authentication
Payment
Elastic
Search
DB
Inventory & Warehouse
Management Systems
Product Catalog
Service
Product Listing
Order Management
Service
Cart
DB
APIGateway
Release under CC by Naresh Jain @ Xnsio 2
Common SITCommon SIT
Current State of Testing in Competitor’s Org
PCS
OMS
PS
CS
IS
SS
External Services
1 2 3
Pre-Prod
PCS
OMS
PS
CS
IS
SS
1 2 3
API Testing
Workflow Testing
E2E Functional Testing Business Acceptance
E-Com Store Dev
Services
PCS OMS PS
Warehouse MS Dev
Services
CS IS SS 1 2 3
Legend
Unstable / Down
Integration Issue
Blocked
UnitTesting–Local
Prod
Release under CC by Naresh Jain @ Xnsio 3
Integration Hell
4
Project B EATWarehouse MS EATWarehouse MS Dev
Services
E-Com Store Dev
Services
Early Feedback in a Controlled Env
Common SIT
PCS OMS PS
CS IS SS
PCS
OMS
PS
CS
IS
SS
1 2 3
External Services
1 2 3
E-Com Store EAT
PCS OMS PS
CS IS SS
Stubbed Dependencies
Stubbed Dependencies
API Testing Workflow Testing E2E Functional Testing
Shift Left
Legend
Unstable / Down
Integration Issue
Blocked
To Pre-Prod
Workflow Testing
Release under CC by Naresh Jain @ Xnsio 19
OMS PCSConnections Tested –
1. Between Internal and
External Services
2. Between internal
services
3. Between internal units /
modules within each
service
PaymentCart
Product
ListingSystem
Tests
Orders
Controller
Order
Repository
Product
Repository
Products
Controller
SIT
PaymentCartOMS
Orders
Controller
Order
Repository
PCS
Product
Repository
Products
Controller
Eg: Mockito Eg: Moq Eg: Jest
Unit Tests
1. Units / Modules Tested in Isolation
2. System Under Test – Modules 1, 2, 3 and 4
3. Dependencies stubbed with Mock Objects like Mockito, etc.
Connections
Tested –
None
Product
Listing
Local
Application Test Pyramid
Contractual Stubs
PGPCS
OMS
Orders
Controller
Order
Repository
Contractual Stubs
DB
PCS
PCS
Product
Repository
Products
Controller
Contractual Stubs
OMS
Elastic
Search
Component / Service Tests
1. Each Microservice (OMS & PCS) and
Micro-frontend (Cart & Payment) tested
in Isolation
2. Dependencies (External and Internal)
stubbed
3. Negative Path Testing by simulating
internal and external dependency errors
Connections Tested
–
Between internal
units / modules
within each
service/component
PaymentCart
Product
Listing
Dev
Auth
OMS PCS
Application Tests
Only External
Dependencies are
Stubbed
Connections Tested –
1. Between internal
services
2. Between internal
units / modules
within each service
Contractual Stubs
PG
PaymentCart
Product
Listing
Orders
Controller
Order
Repository
Product
Repository
Products
Controller
EAT
Auth
Payment
Gateway
Payment
Gateway
(PG)
Authentication
External Dependencies
Contract Testing - Turn your contracts into executable specifications
Micro FrontendsMicro Services
OMS – Order Management Service | PCS – Product Catalogue ServiceRelease under CC by Naresh Jain @ Xnsio 20
Production
Shadow Mode
Tests
Product Test Pyramid
SIT
EAT
Dev
Local
Application
Tests
Component /
Service Test
Unit Tests
System
Tests
Application 2
Application
Tests
Component /
Service Test
Unit Tests
System
Tests
Application 1
Pre-Prod User Acceptance Testing
Performance Testing
Product
Release under CC by Naresh Jain @ Xnsio 21
Are you sure,
this will solve
Integration Hell?
2
2
What’s the main problem you’ve faced
with these Mocking Framework?
Release under CC by Naresh Jain @ Xnsio
23
24
OMS PCSConnections Tested –
1. Between Internal and
External Services
2. Between internal
services
3. Between internal units /
modules within each
service
PaymentCart
Product
ListingSystem
Tests
Orders
Controller
Order
Repository
Product
Repository
Products
Controller
SIT
PaymentCartOMS
Orders
Controller
Order
Repository
PCS
Product
Repository
Products
Controller
Eg: Mockito Eg: Moq Eg: Jest
Unit Tests
1. Units / Modules Tested in Isolation
2. System Under Test – Modules 1, 2, 3 and 4
3. Dependencies stubbed with Mock Objects like Mockito, etc.
Connections
Tested –
None
Product
Listing
Local
Application Test Pyramid
Contractual Stubs
PGPCS
OMS
Orders
Controller
Order
Repository
Contractual Stubs
DB
PCS
PCS
Product
Repository
Products
Controller
Contractual Stubs
OMS
Elastic
Search
Component / Service Tests
1. Each Microservice (OMS & PCS) and
Micro-frontend (Cart & Payment) tested
in Isolation
2. Dependencies (External and Internal)
stubbed
3. Negative Path Testing by simulating
internal and external dependency errors
Connections Tested
–
Between internal
units / modules
within each
service/component
PaymentCart
Product
Listing
Dev
Auth
OMS PCS
Application Tests
Only External
Dependencies are
Stubbed
Connections Tested –
1. Between internal
services
2. Between internal
units / modules
within each service
Contractual Stubs
PG
PaymentCart
Product
Listing
Orders
Controller
Order
Repository
Product
Repository
Products
Controller
EAT
Auth
Payment
Gateway
Payment
Gateway
(PG)
Authentication
External Dependencies
Contract Testing - Turn your contracts into executable specifications
Micro FrontendsMicro Services
OMS – Order Management Service | PCS – Product Catalogue ServiceRelease under CC by Naresh Jain @ Xnsio 25
Contract Driven Development
Collaboratively Design and Independently Deploy MicroServices & MicroFrontends
Release under CC by Naresh Jain @ Xnsio 26
Contract Testing - Turn your contracts into executable specifications
Collaborative Contract Authoring
Release under CC by Naresh Jain @ Xnsio 27
Contract in central Repo
Contracts are executable specs which are
version controlled just like code
Release under CC by Naresh Jain @ Xnsio 28
Contract as Test
Providers runs these specs as
contract tests against their service
Release under CC by Naresh Jain @ Xnsio 29
Contract for Intelligent
Service Virtualisation
Consumers runs these specs as stubs
which validate their expectations
Release under CC by Naresh Jain @ Xnsio 30
Wrapping up
3 Key Takeaways…
Release under CC by Naresh Jain @ Xnsio 31
Takeaway 1: Hyper Collaborate
Architect
Consumer
Dev
Provider
Dev
QA
• Collaboratively design the API over a contract
• Communicate with a common language
Release under CC by Naresh Jain @ Xnsio 32
Takeaway 2: Shift Left
Consumer Provider
Stub Test
• Identify integration issues early
• local development environment
• CI
• Develop with ease
CI Pipeline Environment
Release under CC by Naresh Jain @ Xnsio 33
Contract
Takeaway 3: Deploy With Confidence
• Deploy independently, with confidence
• Bye-bye, Integration Hell!
Higher Environment
Release under CC by Naresh Jain @ Xnsio 34
Release under CC by Naresh Jain @ Xnsio 35
https://qontract.run
Thank you!
Naresh Jain (@nashjain)
https://qontract.run
Release under CC by Naresh Jain @ Xnsio 36

Weitere ähnliche Inhalte

Mehr von Naresh Jain

MVP Design Hacks
MVP Design HacksMVP Design Hacks
MVP Design Hacks
Naresh Jain
 
Oh Oh To Functional
Oh Oh To FunctionalOh Oh To Functional
Oh Oh To Functional
Naresh Jain
 
Techniques for Effectively Slicing User Stories by Naresh Jain
Techniques for Effectively Slicing User Stories by Naresh JainTechniques for Effectively Slicing User Stories by Naresh Jain
Techniques for Effectively Slicing User Stories by Naresh Jain
Naresh Jain
 

Mehr von Naresh Jain (20)

Pilgrim's Progress to the Promised Land by Robert Virding
Pilgrim's Progress to the Promised Land by Robert VirdingPilgrim's Progress to the Promised Land by Robert Virding
Pilgrim's Progress to the Promised Land by Robert Virding
 
Concurrent languages are Functional by Francesco Cesarini
Concurrent languages are Functional by Francesco CesariniConcurrent languages are Functional by Francesco Cesarini
Concurrent languages are Functional by Francesco Cesarini
 
Erlang from behing the trenches by Francesco Cesarini
Erlang from behing the trenches by Francesco CesariniErlang from behing the trenches by Francesco Cesarini
Erlang from behing the trenches by Francesco Cesarini
 
Anatomy of an eCommerce Search Engine by Mayur Datar
Anatomy of an eCommerce Search Engine by Mayur DatarAnatomy of an eCommerce Search Engine by Mayur Datar
Anatomy of an eCommerce Search Engine by Mayur Datar
 
Setting up Continuous Delivery Culture for a Large Scale Mobile App
Setting up Continuous Delivery Culture for a Large Scale Mobile AppSetting up Continuous Delivery Culture for a Large Scale Mobile App
Setting up Continuous Delivery Culture for a Large Scale Mobile App
 
Towards FutureOps: Stable, Repeatable environments from Dev to Prod
Towards FutureOps: Stable, Repeatable environments from Dev to ProdTowards FutureOps: Stable, Repeatable environments from Dev to Prod
Towards FutureOps: Stable, Repeatable environments from Dev to Prod
 
Value Driven Development by Dave Thomas
Value Driven Development by Dave Thomas Value Driven Development by Dave Thomas
Value Driven Development by Dave Thomas
 
No Silver Bullets in Functional Programming by Brian McKenna
No Silver Bullets in Functional Programming by Brian McKennaNo Silver Bullets in Functional Programming by Brian McKenna
No Silver Bullets in Functional Programming by Brian McKenna
 
Functional Programming Conference 2016
Functional Programming Conference 2016Functional Programming Conference 2016
Functional Programming Conference 2016
 
Agile India 2017 Conference
Agile India 2017 ConferenceAgile India 2017 Conference
Agile India 2017 Conference
 
The Eclipse Way
The Eclipse WayThe Eclipse Way
The Eclipse Way
 
Unleashing the Power of Automated Refactoring with JDT
Unleashing the Power of Automated Refactoring with JDTUnleashing the Power of Automated Refactoring with JDT
Unleashing the Power of Automated Refactoring with JDT
 
Getting2Alpha: Turbo-charge your product with Game Thinking by Amy Jo Kim
Getting2Alpha: Turbo-charge your product with Game Thinking by Amy Jo KimGetting2Alpha: Turbo-charge your product with Game Thinking by Amy Jo Kim
Getting2Alpha: Turbo-charge your product with Game Thinking by Amy Jo Kim
 
MVP Design Hacks
MVP Design HacksMVP Design Hacks
MVP Design Hacks
 
Functional Conf 2015
Functional Conf 2015Functional Conf 2015
Functional Conf 2015
 
Agile India 2016 Conference
Agile India 2016 ConferenceAgile India 2016 Conference
Agile India 2016 Conference
 
Test Driving a jQuery Plugin
Test Driving a jQuery PluginTest Driving a jQuery Plugin
Test Driving a jQuery Plugin
 
Making Sense Through Action by Dave Snowden
Making Sense Through Action by Dave SnowdenMaking Sense Through Action by Dave Snowden
Making Sense Through Action by Dave Snowden
 
Oh Oh To Functional
Oh Oh To FunctionalOh Oh To Functional
Oh Oh To Functional
 
Techniques for Effectively Slicing User Stories by Naresh Jain
Techniques for Effectively Slicing User Stories by Naresh JainTechniques for Effectively Slicing User Stories by Naresh Jain
Techniques for Effectively Slicing User Stories by Naresh Jain
 

Kürzlich hochgeladen

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Safe Software
 

Kürzlich hochgeladen (20)

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu SubbuApidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
Apidays Singapore 2024 - Modernizing Securities Finance by Madhu Subbu
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law DevelopmentsTrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
TrustArc Webinar - Stay Ahead of US State Data Privacy Law Developments
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
Apidays Singapore 2024 - Scalable LLM APIs for AI and Generative AI Applicati...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
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...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...Apidays New York 2024 - The value of a flexible API Management solution for O...
Apidays New York 2024 - The value of a flexible API Management solution for O...
 
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Real Time Object Detection Using Open CV
Real Time Object Detection Using Open CVReal Time Object Detection Using Open CV
Real Time Object Detection Using Open CV
 
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
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 

Contract Driven Development: The Death of Integration Hell

  • 1. Contract Driven Development The Death of Integration Hell 👿 Naresh Jain (@nashjain) https://xnsio.com Release under CC by Naresh Jain @ Xnsio 1
  • 2. Micro-Frontends Micro-Services Logical E-Com Application Architecture External Dependencies Payment Service Payment Gateways Authentication Payment Elastic Search DB Inventory & Warehouse Management Systems Product Catalog Service Product Listing Order Management Service Cart DB APIGateway Release under CC by Naresh Jain @ Xnsio 2
  • 3. Common SITCommon SIT Current State of Testing in Competitor’s Org PCS OMS PS CS IS SS External Services 1 2 3 Pre-Prod PCS OMS PS CS IS SS 1 2 3 API Testing Workflow Testing E2E Functional Testing Business Acceptance E-Com Store Dev Services PCS OMS PS Warehouse MS Dev Services CS IS SS 1 2 3 Legend Unstable / Down Integration Issue Blocked UnitTesting–Local Prod Release under CC by Naresh Jain @ Xnsio 3
  • 5. Project B EATWarehouse MS EATWarehouse MS Dev Services E-Com Store Dev Services Early Feedback in a Controlled Env Common SIT PCS OMS PS CS IS SS PCS OMS PS CS IS SS 1 2 3 External Services 1 2 3 E-Com Store EAT PCS OMS PS CS IS SS Stubbed Dependencies Stubbed Dependencies API Testing Workflow Testing E2E Functional Testing Shift Left Legend Unstable / Down Integration Issue Blocked To Pre-Prod Workflow Testing Release under CC by Naresh Jain @ Xnsio 19
  • 6. OMS PCSConnections Tested – 1. Between Internal and External Services 2. Between internal services 3. Between internal units / modules within each service PaymentCart Product ListingSystem Tests Orders Controller Order Repository Product Repository Products Controller SIT PaymentCartOMS Orders Controller Order Repository PCS Product Repository Products Controller Eg: Mockito Eg: Moq Eg: Jest Unit Tests 1. Units / Modules Tested in Isolation 2. System Under Test – Modules 1, 2, 3 and 4 3. Dependencies stubbed with Mock Objects like Mockito, etc. Connections Tested – None Product Listing Local Application Test Pyramid Contractual Stubs PGPCS OMS Orders Controller Order Repository Contractual Stubs DB PCS PCS Product Repository Products Controller Contractual Stubs OMS Elastic Search Component / Service Tests 1. Each Microservice (OMS & PCS) and Micro-frontend (Cart & Payment) tested in Isolation 2. Dependencies (External and Internal) stubbed 3. Negative Path Testing by simulating internal and external dependency errors Connections Tested – Between internal units / modules within each service/component PaymentCart Product Listing Dev Auth OMS PCS Application Tests Only External Dependencies are Stubbed Connections Tested – 1. Between internal services 2. Between internal units / modules within each service Contractual Stubs PG PaymentCart Product Listing Orders Controller Order Repository Product Repository Products Controller EAT Auth Payment Gateway Payment Gateway (PG) Authentication External Dependencies Contract Testing - Turn your contracts into executable specifications Micro FrontendsMicro Services OMS – Order Management Service | PCS – Product Catalogue ServiceRelease under CC by Naresh Jain @ Xnsio 20
  • 7. Production Shadow Mode Tests Product Test Pyramid SIT EAT Dev Local Application Tests Component / Service Test Unit Tests System Tests Application 2 Application Tests Component / Service Test Unit Tests System Tests Application 1 Pre-Prod User Acceptance Testing Performance Testing Product Release under CC by Naresh Jain @ Xnsio 21
  • 8. Are you sure, this will solve Integration Hell? 2 2
  • 9. What’s the main problem you’ve faced with these Mocking Framework? Release under CC by Naresh Jain @ Xnsio 23
  • 10. 24
  • 11. OMS PCSConnections Tested – 1. Between Internal and External Services 2. Between internal services 3. Between internal units / modules within each service PaymentCart Product ListingSystem Tests Orders Controller Order Repository Product Repository Products Controller SIT PaymentCartOMS Orders Controller Order Repository PCS Product Repository Products Controller Eg: Mockito Eg: Moq Eg: Jest Unit Tests 1. Units / Modules Tested in Isolation 2. System Under Test – Modules 1, 2, 3 and 4 3. Dependencies stubbed with Mock Objects like Mockito, etc. Connections Tested – None Product Listing Local Application Test Pyramid Contractual Stubs PGPCS OMS Orders Controller Order Repository Contractual Stubs DB PCS PCS Product Repository Products Controller Contractual Stubs OMS Elastic Search Component / Service Tests 1. Each Microservice (OMS & PCS) and Micro-frontend (Cart & Payment) tested in Isolation 2. Dependencies (External and Internal) stubbed 3. Negative Path Testing by simulating internal and external dependency errors Connections Tested – Between internal units / modules within each service/component PaymentCart Product Listing Dev Auth OMS PCS Application Tests Only External Dependencies are Stubbed Connections Tested – 1. Between internal services 2. Between internal units / modules within each service Contractual Stubs PG PaymentCart Product Listing Orders Controller Order Repository Product Repository Products Controller EAT Auth Payment Gateway Payment Gateway (PG) Authentication External Dependencies Contract Testing - Turn your contracts into executable specifications Micro FrontendsMicro Services OMS – Order Management Service | PCS – Product Catalogue ServiceRelease under CC by Naresh Jain @ Xnsio 25
  • 12. Contract Driven Development Collaboratively Design and Independently Deploy MicroServices & MicroFrontends Release under CC by Naresh Jain @ Xnsio 26 Contract Testing - Turn your contracts into executable specifications
  • 13. Collaborative Contract Authoring Release under CC by Naresh Jain @ Xnsio 27
  • 14. Contract in central Repo Contracts are executable specs which are version controlled just like code Release under CC by Naresh Jain @ Xnsio 28
  • 15. Contract as Test Providers runs these specs as contract tests against their service Release under CC by Naresh Jain @ Xnsio 29
  • 16. Contract for Intelligent Service Virtualisation Consumers runs these specs as stubs which validate their expectations Release under CC by Naresh Jain @ Xnsio 30
  • 17. Wrapping up 3 Key Takeaways… Release under CC by Naresh Jain @ Xnsio 31
  • 18. Takeaway 1: Hyper Collaborate Architect Consumer Dev Provider Dev QA • Collaboratively design the API over a contract • Communicate with a common language Release under CC by Naresh Jain @ Xnsio 32
  • 19. Takeaway 2: Shift Left Consumer Provider Stub Test • Identify integration issues early • local development environment • CI • Develop with ease CI Pipeline Environment Release under CC by Naresh Jain @ Xnsio 33 Contract
  • 20. Takeaway 3: Deploy With Confidence • Deploy independently, with confidence • Bye-bye, Integration Hell! Higher Environment Release under CC by Naresh Jain @ Xnsio 34
  • 21. Release under CC by Naresh Jain @ Xnsio 35 https://qontract.run
  • 22. Thank you! Naresh Jain (@nashjain) https://qontract.run Release under CC by Naresh Jain @ Xnsio 36