SlideShare ist ein Scribd-Unternehmen logo
1 von 12
Downloaden Sie, um offline zu lesen
Continuous Delivery using Automated Release Management
                                    Contents

 Introduction


 Forrester Study


 Release Management (RM) Lifecycle


 RM Maturity Model

 RM Best Practices


 Application Lifecycle Management (ALM) Lifecycle
Introduction



    “Continuous Integration” and “Continuous Delivery” are no alien terms to an


    experienced IT professional. CI & CD define broad principles to ‘Lean SDLC’ focusing


    on Lower TCO & Faster TTM. Over a period of time a host of FOSS & COTS tools were


    born to deliver the promise. You might be thinking “there are tools and hence the


    problem should be solved at least to a major extent…” Not yet, proceed to the next


    page to see the Forrester study and its results.
From the Forrester Report “Five Ways To Streamline Release Management” February 7, 2011
So why is there a lag between the Science & Practicality? There is no one answer to
that   question,   but   the    following    are   some   of   the   important   ones…


  Process Anti-Patterns
  Complete automation not possible due to Missing Release Management Cycle states
  Less focus on Deployment compared to Build & Version Control Systems
  Less Traceability & Operational Transparency



The following article is based on a “One Click Release Management Automation” we
delivered for a Global Banking giant’s Core Banking system. Based on the success the
system is being rolled out to the other 700 projects in the bank…


Note: The article covers the ‘Big Picture’, Gaps & Best Practices and doesn’t cover the
solution specifics which are confidential.
RM Lifecycle
                                              Change
                                            Management

                                                                Version
                          Deployment
                                                                Control
                          Framework
                                                              Management




               Configuration             RELEASE MANAGEMENT               Build
                Repository                     LIFECYCLE               Management




                          Environment                           Binary
                          Provisioning                        Repository


                                            Deployment
                                            Management
RM Lifecycle

       1. Change Management                         5. Deployment Management
               •   Bug Fixes                            •   Deployment Request Portal
               •   New Enhancements                     •   Environment Management
               •   Project Tracking                     •   Notifications
       2. Version Control Management                6. Environment Provisioning
               •   Branching & Merging                  •   Bare Metal Provisioning
               •   Labeling/Tagging                     •   System Configuration
               •   Versioning                           •   Application Sanity Checks
       3. Build Management                          7. Configuration Repository
               •   Build Request Portal                 •   Repository Structure
               •   Continuous Integration               •   Environment specific data
               •   Dependency Management            8. Deployment Framework
       4. Binary Repository                             •   Remote Deployments
               •   Repository Structure                 •   Orchestration
               •   External Libraries Integration       •   Error Handling
               •   High Availability                    •   Reusable Deployment Scripts
RM Maturity Model
                                                                            RM Landscape
                                                           •   RM fully integrated with ALM Framework
                 RM Automation                             •   ALM Framework integrates with all tools/processes of the ALM umbrella
    •   RM fully integrated with ALM                       •   Provides single dashboard view of Project with Full Traceability and
                                                               Reports & Analytics
                                                                                                                                Level 4

                  RM Automation                                                       RM Landscape
    •   Versioned Build Outputs                                     •       Well defined light weight Release Management Process
    •   Binary Repository                                           •       Automated RM Framework using FOSS & Custom Components
    •   Configuration Repository, Build Once Deploy Anywhere        •       Provides Transparency, Reliability, Predictability, Repeatability
R   •   Portal for Build & Deployment Management                            & Faster Release Cycles
                                                                                                                                Level 3
O
                  RM Automation                                                         RM Landscape
I
    •   Fully Automated VCS interactions                                •    Org Level Processes & Tool Stack / Home grown Automation
    •   Fully Templatized Build Automation                              •    Lacks RM concepts like Configuration/Binary Repository, …
    •   Remote Deployment Framework                                     •    Somewhat Reliable, lacks transparency to scale for
    •   Error handling & rollbacks in Build & Deployment                     Continuous Integration/Delivery
                                                                                                                                Level 2

                 RM Automation                                                                           RM Landscape
    •   Hard wired Build Scripts                                                         •    No defined Organization Level RM process
    •   Single machine Deployment Scripts                                                •     Less usage of tools & Ad-hoc Automation
                                                                                         •    Low Repeatability, Predictability & Reliability
                                                                                                                                Level 1
                                                                 Investment
RM Best Practices

     Version Control Best Practices

     •    Check-In
           –   Define a periodic check-in (logical chunks) and refresh policy for your project. Check-in can be as frequent as hourly to
               daily or completely left to developers as in distributed VCS. Project complexity, quantum of integration effort, team
               co-location are some critical factors to be considered while taking decision.

           –   Do not check-in binaries files into VCS. VCS should be used for files which get updated, strictly speaking an update to a
               binary results in a new version (i.e. binaries should be treated read only)

     •    Branching & Merging
           –   Branch only if unavoidable and branch late

           –   Do not create separate branches for individual developers. VCS is not a backup server.

           –   Do not create separate branches for SDLC phases (DEV, ST, SIT, UAT, …). A change to an application results in a new
               version and a version should be deployable to any environment. A change should not be made for a particular
               environment.

           –   Define policies for syncing branches. Changes from mainline/trunk to other branches should flow continually, branch
               to mainline for production releases and child branches to parent branches based on situation. Project complexity,
               quantum of integration effort, team co-location are some critical factors to be considered while taking decision.

     •    Tagging & Versioning
           –   Label/Tag logical points from which builds are taken for releases

           –   Use a common project structure and naming convention
RM Best Practices


     Build Management Best Practices

     •    General
           –   A build should always produce a versioned binary package

           –   Check in build scripts into version control system

           –   An output of a build run should be automatically placed in the binary repository as per the structure

           –   Build Requests should be captured for audit and other uses. Use a web portal as a build management tool.

           –   Schedule periodic automated builds with the help of CI tools



     •    Modularize
           –   Break down your project into components and build only changed components & their dependencies

           –   In the J2ee world, use Maven/Ivy to manage component dependencies

           –   Break down your build script into reusable templatized components. Do not hard code.
RM Best Practices


     Binary Repository Best Practices

     •    Should have a defined structure & naming convention

     •    High Availability (e.g. SAN clusters with redundancy)

     •    One Binary Repository for a company/unit, can be geographically clustered with replication for performance

     •    Should support promotion of binaries to SDLC environments (DEV/ST/UAT/…)

     •    Should have automatic redundancy detection and avoidance

     •    Can be realized using products like Archiva, Artifactory or a custom solution on top of the file system

     •    Should only be accessible to the deployment frameworks based on right ACL

     •    Should only support file creation, update/delete should not be provided


     Configuration Repository Best Practices

     •    Should have a defined structure & naming convention and match that of a binary repository

     •    Should be realized on top of a version control system

     •    One Configuration Repository for a company/unit, can be geographically clustered with replication for
          performance

     •    Should only be accessible to the deployment frameworks based on right ACL
RM Best Practices


     Deployment Management & Deployment Framework Best Practices

     •    Deployment Management
           –   Deployment Requests should be captured for audit and other uses. Use a web portal as a build management tool.

           –   Capture the revision/version number of the configuration repository at the time of deployment request

           –   Deployment portal should present the deployment options after linking the Binary & Configuration Repository



     •    Deployment Framework
ALM Lifecycle



                           Testing                           Requirements




                                         APPLICATION LIFECYCLE
                                         MANAGEMENT (ALM)

                                      • Traceability
                                      • Process Automation
                                      • Reporting & Analytics
                Release                                                Modeling




                                        Development

                          RM is a part of Application Lifecycle Management

Weitere ähnliche Inhalte

Was ist angesagt?

Software Testing Life Cycle
Software Testing Life CycleSoftware Testing Life Cycle
Software Testing Life Cyclegueste730d5
 
Azure DevOps Presentation
Azure DevOps PresentationAzure DevOps Presentation
Azure DevOps PresentationInCycleSoftware
 
The DevOps Journey
The DevOps JourneyThe DevOps Journey
The DevOps JourneyMicro Focus
 
Tracking and improving software quality with SonarQube
Tracking and improving software quality with SonarQubeTracking and improving software quality with SonarQube
Tracking and improving software quality with SonarQubePatroklos Papapetrou (Pat)
 
Azure Pipeline Tutorial | Azure DevOps Tutorial | Edureka
Azure Pipeline Tutorial | Azure DevOps Tutorial | EdurekaAzure Pipeline Tutorial | Azure DevOps Tutorial | Edureka
Azure Pipeline Tutorial | Azure DevOps Tutorial | EdurekaEdureka!
 
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...Edureka!
 
[UC4] Version and Automate Everything
[UC4] Version and Automate Everything[UC4] Version and Automate Everything
[UC4] Version and Automate EverythingPerforce
 
Introduction to CICD
Introduction to CICDIntroduction to CICD
Introduction to CICDKnoldus Inc.
 
Quality strategies in Agile Transformation
Quality strategies in Agile TransformationQuality strategies in Agile Transformation
Quality strategies in Agile TransformationKaali Dass PMP, PhD.
 
Source Code Management systems
Source Code Management systemsSource Code Management systems
Source Code Management systemsxSawyer
 
Reasons To Automate API Testing Process
Reasons To Automate API Testing ProcessReasons To Automate API Testing Process
Reasons To Automate API Testing ProcessQASource
 
DevOps with Azure, Kubernetes, and Helm Webinar
DevOps with Azure, Kubernetes, and Helm WebinarDevOps with Azure, Kubernetes, and Helm Webinar
DevOps with Azure, Kubernetes, and Helm WebinarCodefresh
 
Automated Deployments with Ansible
Automated Deployments with AnsibleAutomated Deployments with Ansible
Automated Deployments with AnsibleMartin Etmajer
 
Continuous integration
Continuous integrationContinuous integration
Continuous integrationamscanne
 

Was ist angesagt? (20)

DevOps introduction
DevOps introductionDevOps introduction
DevOps introduction
 
Software Testing Life Cycle
Software Testing Life CycleSoftware Testing Life Cycle
Software Testing Life Cycle
 
Azure DevOps Presentation
Azure DevOps PresentationAzure DevOps Presentation
Azure DevOps Presentation
 
The DevOps Journey
The DevOps JourneyThe DevOps Journey
The DevOps Journey
 
Tracking and improving software quality with SonarQube
Tracking and improving software quality with SonarQubeTracking and improving software quality with SonarQube
Tracking and improving software quality with SonarQube
 
Sonarqube
SonarqubeSonarqube
Sonarqube
 
Azure Pipeline Tutorial | Azure DevOps Tutorial | Edureka
Azure Pipeline Tutorial | Azure DevOps Tutorial | EdurekaAzure Pipeline Tutorial | Azure DevOps Tutorial | Edureka
Azure Pipeline Tutorial | Azure DevOps Tutorial | Edureka
 
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
Introduction to DevOps Tools | DevOps Training | DevOps Tutorial for Beginner...
 
Power of Azure Devops
Power of Azure DevopsPower of Azure Devops
Power of Azure Devops
 
Jenkins with SonarQube
Jenkins with SonarQubeJenkins with SonarQube
Jenkins with SonarQube
 
[UC4] Version and Automate Everything
[UC4] Version and Automate Everything[UC4] Version and Automate Everything
[UC4] Version and Automate Everything
 
API Management in Azure
API Management in AzureAPI Management in Azure
API Management in Azure
 
Azure devops
Azure devopsAzure devops
Azure devops
 
Introduction to CICD
Introduction to CICDIntroduction to CICD
Introduction to CICD
 
Quality strategies in Agile Transformation
Quality strategies in Agile TransformationQuality strategies in Agile Transformation
Quality strategies in Agile Transformation
 
Source Code Management systems
Source Code Management systemsSource Code Management systems
Source Code Management systems
 
Reasons To Automate API Testing Process
Reasons To Automate API Testing ProcessReasons To Automate API Testing Process
Reasons To Automate API Testing Process
 
DevOps with Azure, Kubernetes, and Helm Webinar
DevOps with Azure, Kubernetes, and Helm WebinarDevOps with Azure, Kubernetes, and Helm Webinar
DevOps with Azure, Kubernetes, and Helm Webinar
 
Automated Deployments with Ansible
Automated Deployments with AnsibleAutomated Deployments with Ansible
Automated Deployments with Ansible
 
Continuous integration
Continuous integrationContinuous integration
Continuous integration
 

Ähnlich wie Continuous Delivery using Automated Release Management

Oracle tech fmw-02-soa-suite-11g-neum-15.04.2010
Oracle tech fmw-02-soa-suite-11g-neum-15.04.2010Oracle tech fmw-02-soa-suite-11g-neum-15.04.2010
Oracle tech fmw-02-soa-suite-11g-neum-15.04.2010Oracle BH
 
Patterns for Building High Performance Applications in Cloud - CloudConnect2012
Patterns for Building High Performance Applications in Cloud - CloudConnect2012Patterns for Building High Performance Applications in Cloud - CloudConnect2012
Patterns for Building High Performance Applications in Cloud - CloudConnect2012Munish Gupta
 
21st Century SOA
21st Century SOA21st Century SOA
21st Century SOABob Rhubart
 
21st Century SOA
21st Century SOA21st Century SOA
21st Century SOABob Rhubart
 
VMware - Snapshot sessions - Deploy and manage tomorrow's applications today
VMware - Snapshot sessions  - Deploy and manage tomorrow's applications todayVMware - Snapshot sessions  - Deploy and manage tomorrow's applications today
VMware - Snapshot sessions - Deploy and manage tomorrow's applications todayAnnSteyaert_vmware
 
OOW 09 EBS Application Change Management Pack
OOW 09 EBS Application Change Management PackOOW 09 EBS Application Change Management Pack
OOW 09 EBS Application Change Management Packjucaab
 
Centralized test automation framework implementation
Centralized test automation framework implementationCentralized test automation framework implementation
Centralized test automation framework implementationBharathi Krishnamurthi
 
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo Ramasso
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo RamassoServer Day 2009: Oracle/Bea Fusion Middleware by Paolo Ramasso
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo RamassoJUG Genova
 
Banking Software Simulated proposal
Banking Software Simulated proposalBanking Software Simulated proposal
Banking Software Simulated proposalImran Fayyaz
 
XebiaLabs, CloudBees, Puppet Labs Webinar Slides - IT Automation for the Mode...
XebiaLabs, CloudBees, Puppet Labs Webinar Slides - IT Automation for the Mode...XebiaLabs, CloudBees, Puppet Labs Webinar Slides - IT Automation for the Mode...
XebiaLabs, CloudBees, Puppet Labs Webinar Slides - IT Automation for the Mode...XebiaLabs
 
10 - Architetture Software - More architectural styles
10 - Architetture Software - More architectural styles10 - Architetture Software - More architectural styles
10 - Architetture Software - More architectural stylesMajong DevJfu
 
21st Century Service Oriented Architecture
21st Century Service Oriented Architecture21st Century Service Oriented Architecture
21st Century Service Oriented ArchitectureBob Rhubart
 
Cloud Hosting for Government Agencies: Drupal Platform as a Service
Cloud Hosting for Government Agencies: Drupal Platform as a ServiceCloud Hosting for Government Agencies: Drupal Platform as a Service
Cloud Hosting for Government Agencies: Drupal Platform as a ServiceAcquia
 
Using a private cloud to automate and govern enterprise development
Using a private cloud to automate and govern enterprise developmentUsing a private cloud to automate and govern enterprise development
Using a private cloud to automate and govern enterprise developmentWSO2
 
Think BIG, Spend Small A Look at how WSO2 Can Help Scale Up with Less Cost
Think BIG, Spend Small A Look at how WSO2 Can Help Scale Up with Less Cost Think BIG, Spend Small A Look at how WSO2 Can Help Scale Up with Less Cost
Think BIG, Spend Small A Look at how WSO2 Can Help Scale Up with Less Cost WSO2
 
Architecting a Private Cloud - Cloud Expo
Architecting a Private Cloud - Cloud ExpoArchitecting a Private Cloud - Cloud Expo
Architecting a Private Cloud - Cloud Exposmw355
 
PCTY 2012, Overvågning af forretningssystemer i et virtuelt miljø v. Hans Ped...
PCTY 2012, Overvågning af forretningssystemer i et virtuelt miljø v. Hans Ped...PCTY 2012, Overvågning af forretningssystemer i et virtuelt miljø v. Hans Ped...
PCTY 2012, Overvågning af forretningssystemer i et virtuelt miljø v. Hans Ped...IBM Danmark
 
RES Software Online Seminar 10 mei 2011
RES Software Online Seminar 10 mei 2011RES Software Online Seminar 10 mei 2011
RES Software Online Seminar 10 mei 2011RES Software Nederland
 

Ähnlich wie Continuous Delivery using Automated Release Management (20)

Oracle tech fmw-02-soa-suite-11g-neum-15.04.2010
Oracle tech fmw-02-soa-suite-11g-neum-15.04.2010Oracle tech fmw-02-soa-suite-11g-neum-15.04.2010
Oracle tech fmw-02-soa-suite-11g-neum-15.04.2010
 
Was liberty
Was libertyWas liberty
Was liberty
 
Patterns for Building High Performance Applications in Cloud - CloudConnect2012
Patterns for Building High Performance Applications in Cloud - CloudConnect2012Patterns for Building High Performance Applications in Cloud - CloudConnect2012
Patterns for Building High Performance Applications in Cloud - CloudConnect2012
 
21st Century SOA
21st Century SOA21st Century SOA
21st Century SOA
 
21st Century SOA
21st Century SOA21st Century SOA
21st Century SOA
 
VMware - Snapshot sessions - Deploy and manage tomorrow's applications today
VMware - Snapshot sessions  - Deploy and manage tomorrow's applications todayVMware - Snapshot sessions  - Deploy and manage tomorrow's applications today
VMware - Snapshot sessions - Deploy and manage tomorrow's applications today
 
OOW 09 EBS Application Change Management Pack
OOW 09 EBS Application Change Management PackOOW 09 EBS Application Change Management Pack
OOW 09 EBS Application Change Management Pack
 
Centralized test automation framework implementation
Centralized test automation framework implementationCentralized test automation framework implementation
Centralized test automation framework implementation
 
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo Ramasso
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo RamassoServer Day 2009: Oracle/Bea Fusion Middleware by Paolo Ramasso
Server Day 2009: Oracle/Bea Fusion Middleware by Paolo Ramasso
 
Banking Software Simulated proposal
Banking Software Simulated proposalBanking Software Simulated proposal
Banking Software Simulated proposal
 
XebiaLabs, CloudBees, Puppet Labs Webinar Slides - IT Automation for the Mode...
XebiaLabs, CloudBees, Puppet Labs Webinar Slides - IT Automation for the Mode...XebiaLabs, CloudBees, Puppet Labs Webinar Slides - IT Automation for the Mode...
XebiaLabs, CloudBees, Puppet Labs Webinar Slides - IT Automation for the Mode...
 
10 - Architetture Software - More architectural styles
10 - Architetture Software - More architectural styles10 - Architetture Software - More architectural styles
10 - Architetture Software - More architectural styles
 
21st Century Service Oriented Architecture
21st Century Service Oriented Architecture21st Century Service Oriented Architecture
21st Century Service Oriented Architecture
 
2018 jk
2018 jk2018 jk
2018 jk
 
Cloud Hosting for Government Agencies: Drupal Platform as a Service
Cloud Hosting for Government Agencies: Drupal Platform as a ServiceCloud Hosting for Government Agencies: Drupal Platform as a Service
Cloud Hosting for Government Agencies: Drupal Platform as a Service
 
Using a private cloud to automate and govern enterprise development
Using a private cloud to automate and govern enterprise developmentUsing a private cloud to automate and govern enterprise development
Using a private cloud to automate and govern enterprise development
 
Think BIG, Spend Small A Look at how WSO2 Can Help Scale Up with Less Cost
Think BIG, Spend Small A Look at how WSO2 Can Help Scale Up with Less Cost Think BIG, Spend Small A Look at how WSO2 Can Help Scale Up with Less Cost
Think BIG, Spend Small A Look at how WSO2 Can Help Scale Up with Less Cost
 
Architecting a Private Cloud - Cloud Expo
Architecting a Private Cloud - Cloud ExpoArchitecting a Private Cloud - Cloud Expo
Architecting a Private Cloud - Cloud Expo
 
PCTY 2012, Overvågning af forretningssystemer i et virtuelt miljø v. Hans Ped...
PCTY 2012, Overvågning af forretningssystemer i et virtuelt miljø v. Hans Ped...PCTY 2012, Overvågning af forretningssystemer i et virtuelt miljø v. Hans Ped...
PCTY 2012, Overvågning af forretningssystemer i et virtuelt miljø v. Hans Ped...
 
RES Software Online Seminar 10 mei 2011
RES Software Online Seminar 10 mei 2011RES Software Online Seminar 10 mei 2011
RES Software Online Seminar 10 mei 2011
 

Kürzlich hochgeladen

Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsMark Billinghurst
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostZilliz
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionDilum Bandara
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):comworks
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfRankYa
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...Fwdays
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupFlorian Wilhelm
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.Curtis Poe
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .Alan Dix
 

Kürzlich hochgeladen (20)

Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Human Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR SystemsHuman Factors of XR: Using Human Factors to Design XR Systems
Human Factors of XR: Using Human Factors to Design XR Systems
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage CostLeverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
Leverage Zilliz Serverless - Up to 50X Saving for Your Vector Storage Cost
 
Advanced Computer Architecture – An Introduction
Advanced Computer Architecture – An IntroductionAdvanced Computer Architecture – An Introduction
Advanced Computer Architecture – An Introduction
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):CloudStudio User manual (basic edition):
CloudStudio User manual (basic edition):
 
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data PrivacyTrustArc Webinar - How to Build Consumer Trust Through Data Privacy
TrustArc Webinar - How to Build Consumer Trust Through Data Privacy
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Search Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdfSearch Engine Optimization SEO PDF for 2024.pdf
Search Engine Optimization SEO PDF for 2024.pdf
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks..."LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
"LLMs for Python Engineers: Advanced Data Analysis and Semantic Kernel",Oleks...
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Streamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project SetupStreamlining Python Development: A Guide to a Modern Project Setup
Streamlining Python Development: A Guide to a Modern Project Setup
 
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptxE-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
E-Vehicle_Hacking_by_Parul Sharma_null_owasp.pptx
 
How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.How AI, OpenAI, and ChatGPT impact business and software.
How AI, OpenAI, and ChatGPT impact business and software.
 
From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .From Family Reminiscence to Scholarly Archive .
From Family Reminiscence to Scholarly Archive .
 

Continuous Delivery using Automated Release Management

  • 1. Continuous Delivery using Automated Release Management Contents  Introduction  Forrester Study  Release Management (RM) Lifecycle  RM Maturity Model  RM Best Practices  Application Lifecycle Management (ALM) Lifecycle
  • 2. Introduction “Continuous Integration” and “Continuous Delivery” are no alien terms to an experienced IT professional. CI & CD define broad principles to ‘Lean SDLC’ focusing on Lower TCO & Faster TTM. Over a period of time a host of FOSS & COTS tools were born to deliver the promise. You might be thinking “there are tools and hence the problem should be solved at least to a major extent…” Not yet, proceed to the next page to see the Forrester study and its results.
  • 3. From the Forrester Report “Five Ways To Streamline Release Management” February 7, 2011
  • 4. So why is there a lag between the Science & Practicality? There is no one answer to that question, but the following are some of the important ones…  Process Anti-Patterns  Complete automation not possible due to Missing Release Management Cycle states  Less focus on Deployment compared to Build & Version Control Systems  Less Traceability & Operational Transparency The following article is based on a “One Click Release Management Automation” we delivered for a Global Banking giant’s Core Banking system. Based on the success the system is being rolled out to the other 700 projects in the bank… Note: The article covers the ‘Big Picture’, Gaps & Best Practices and doesn’t cover the solution specifics which are confidential.
  • 5. RM Lifecycle Change Management Version Deployment Control Framework Management Configuration RELEASE MANAGEMENT Build Repository LIFECYCLE Management Environment Binary Provisioning Repository Deployment Management
  • 6. RM Lifecycle 1. Change Management 5. Deployment Management • Bug Fixes • Deployment Request Portal • New Enhancements • Environment Management • Project Tracking • Notifications 2. Version Control Management 6. Environment Provisioning • Branching & Merging • Bare Metal Provisioning • Labeling/Tagging • System Configuration • Versioning • Application Sanity Checks 3. Build Management 7. Configuration Repository • Build Request Portal • Repository Structure • Continuous Integration • Environment specific data • Dependency Management 8. Deployment Framework 4. Binary Repository • Remote Deployments • Repository Structure • Orchestration • External Libraries Integration • Error Handling • High Availability • Reusable Deployment Scripts
  • 7. RM Maturity Model RM Landscape • RM fully integrated with ALM Framework RM Automation • ALM Framework integrates with all tools/processes of the ALM umbrella • RM fully integrated with ALM • Provides single dashboard view of Project with Full Traceability and Reports & Analytics Level 4 RM Automation RM Landscape • Versioned Build Outputs • Well defined light weight Release Management Process • Binary Repository • Automated RM Framework using FOSS & Custom Components • Configuration Repository, Build Once Deploy Anywhere • Provides Transparency, Reliability, Predictability, Repeatability R • Portal for Build & Deployment Management & Faster Release Cycles Level 3 O RM Automation RM Landscape I • Fully Automated VCS interactions • Org Level Processes & Tool Stack / Home grown Automation • Fully Templatized Build Automation • Lacks RM concepts like Configuration/Binary Repository, … • Remote Deployment Framework • Somewhat Reliable, lacks transparency to scale for • Error handling & rollbacks in Build & Deployment Continuous Integration/Delivery Level 2 RM Automation RM Landscape • Hard wired Build Scripts • No defined Organization Level RM process • Single machine Deployment Scripts • Less usage of tools & Ad-hoc Automation • Low Repeatability, Predictability & Reliability Level 1 Investment
  • 8. RM Best Practices Version Control Best Practices • Check-In – Define a periodic check-in (logical chunks) and refresh policy for your project. Check-in can be as frequent as hourly to daily or completely left to developers as in distributed VCS. Project complexity, quantum of integration effort, team co-location are some critical factors to be considered while taking decision. – Do not check-in binaries files into VCS. VCS should be used for files which get updated, strictly speaking an update to a binary results in a new version (i.e. binaries should be treated read only) • Branching & Merging – Branch only if unavoidable and branch late – Do not create separate branches for individual developers. VCS is not a backup server. – Do not create separate branches for SDLC phases (DEV, ST, SIT, UAT, …). A change to an application results in a new version and a version should be deployable to any environment. A change should not be made for a particular environment. – Define policies for syncing branches. Changes from mainline/trunk to other branches should flow continually, branch to mainline for production releases and child branches to parent branches based on situation. Project complexity, quantum of integration effort, team co-location are some critical factors to be considered while taking decision. • Tagging & Versioning – Label/Tag logical points from which builds are taken for releases – Use a common project structure and naming convention
  • 9. RM Best Practices Build Management Best Practices • General – A build should always produce a versioned binary package – Check in build scripts into version control system – An output of a build run should be automatically placed in the binary repository as per the structure – Build Requests should be captured for audit and other uses. Use a web portal as a build management tool. – Schedule periodic automated builds with the help of CI tools • Modularize – Break down your project into components and build only changed components & their dependencies – In the J2ee world, use Maven/Ivy to manage component dependencies – Break down your build script into reusable templatized components. Do not hard code.
  • 10. RM Best Practices Binary Repository Best Practices • Should have a defined structure & naming convention • High Availability (e.g. SAN clusters with redundancy) • One Binary Repository for a company/unit, can be geographically clustered with replication for performance • Should support promotion of binaries to SDLC environments (DEV/ST/UAT/…) • Should have automatic redundancy detection and avoidance • Can be realized using products like Archiva, Artifactory or a custom solution on top of the file system • Should only be accessible to the deployment frameworks based on right ACL • Should only support file creation, update/delete should not be provided Configuration Repository Best Practices • Should have a defined structure & naming convention and match that of a binary repository • Should be realized on top of a version control system • One Configuration Repository for a company/unit, can be geographically clustered with replication for performance • Should only be accessible to the deployment frameworks based on right ACL
  • 11. RM Best Practices Deployment Management & Deployment Framework Best Practices • Deployment Management – Deployment Requests should be captured for audit and other uses. Use a web portal as a build management tool. – Capture the revision/version number of the configuration repository at the time of deployment request – Deployment portal should present the deployment options after linking the Binary & Configuration Repository • Deployment Framework
  • 12. ALM Lifecycle Testing Requirements APPLICATION LIFECYCLE MANAGEMENT (ALM) • Traceability • Process Automation • Reporting & Analytics Release Modeling Development RM is a part of Application Lifecycle Management