Configuration Management

Slides:



Advertisements
Similar presentations
Why Is Software Difficult to Build?
Advertisements

Configuration Management
Chapter 7: Key Process Areas for Level 2: Repeatable - Arvind Kabir Yateesh.
Configuration Management Managing Change. Points to Ponder Which is more important?  stability  progress Why is change potentially dangerous?
Software Configuration Management
Software Quality Metrics
SE 555 Software Requirements & Specification Requirements Management.
CSC 395 – Software Engineering Lecture 25: SCM –or– Expecting Change From Everything But Vending Machines.
Software Configuration Management (SCM)
Configuration Management
Configuration Management
Software Configuration Management CSC-532 Chandra Shekar Kandi Chandra Shekar Kandi.
Software Configuration Management
Software Configuration Management (SCM)
CSSE 375 Software Construction and Evolution: Configuration Management
Change Request Management
Configuration Management Avoiding Costly Confusion mostly stolen from Chapter 27 of Pressman.
Michael Solomon Tugboat Software Managing the Software Development Process.
Release & Deployment ITIL Version 3
Configuration Management Managing Change. Points to Ponder Which is more important?  stability  progress Why is change potentially dangerous?
The Key Process Areas for Level 2: Repeatable Ralph Covington David Wang.
Introduction to Software Quality Assurance (SQA)
Software Engineering Modern Approaches
Seattle Area Software Quality Assurance Group Release and Configuration Management, The Acceleration of Change and Its Contribution To Software Quality.
Cybersecurity: Engineering a Secure Information Technology Organization, 1st Edition Chapter 7 Software Supporting Processes and Software Reuse.
Software Configuration Management
Software Configuration Management (SCM)
Configuration Management Matti Kuikka CONFIGURATION MANAGEMENT by Matti Kuikka, Unit Manager, Ericsson, Turku, Telecom R&D, Wireless Charging.
 To explain the importance of software configuration management (CM)  To describe key CM activities namely CM planning, change management, version management.
Configuration Management (managing change). Starter Questions... Which is more important?  stability  progress Why is change potentially dangerous?
1 Software Development Configuration management. \ 2 Software Configuration  Items that comprise all information produced as part of the software development.
SENG521 (Fall SENG 521 Software Reliability & Testing Software Product & process Improvement using ISO (Part 3d) Department.
Configuration Management (CM)
Creator: ACSession No: 16 Slide No: 1Reviewer: SS CSE300Advanced Software EngineeringFebruary 2006 (Software Quality) Configuration Management CSE300 Advanced.
Software Quality Assurance
© Mahindra Satyam 2009 Configuration Management QMS Training.
SOFTWARE CONFIGURATION MANAGEMENT. Change is inevitable when computer software is built. And change increases the level of confusion among software engineers.
Managing Change 1. Why Do Requirements Change?  External Factors – those change agents over which the project team has little or no control.  Internal.
Software Project Management
Configuration Management and Change Control Change is inevitable! So it has to be planned for and managed.
Software Configuration Management (SCM). Product Developer Disciplines One view of the world is that there are three types of activities are required.
Principles of Computer Security: CompTIA Security + ® and Beyond, Third Edition © 2012 Principles of Computer Security: CompTIA Security+ ® and Beyond,
Software Configuration Management (SCM) Source: Pressman, R., Software Engineering: A Practitioner ’ s Approach. Boston: McGraw Hill, Inc., 2005; Ghezzi,
Rational Unified Process Fundamentals Module 4: Core Workflows II - Concepts Rational Unified Process Fundamentals Module 4: Core Workflows II - Concepts.
Configuration Management
Configuration Management (II) Copyright, 2000 © Jerzy R. Nawrocki Requirements.
Project management Topic 8 Configuration Management.
Software Engineering Lecture 9: Configuration Management.
Configuration Control (Aliases: change control, change management )
Configuration & Build Management. Why Software Configuration Management ? The problem: Multiple people have to work on software that is changing More.
Software Configuration Management (SCM)
Software Configuration Management -Subversion- RTLAB YuJin Park.
Introduction for the Implementation of Software Configuration Management I thought I knew it all !
Software Configuration Management (SCM)
Configuration Management
Software Configuration Management CSC-532
Software Configuration Management
Software Project Configuration Management
Software Configuration Management (SCM)
Chapter 11: Software Configuration Management
Software Configuration Management
Software Engineering (CSI 321)
Configuration Management
Software Configuration Management
Lecture 3 Change Management
Configuration Management (managing change)
Software Configuration Management
Chapter 11: Software Configuration Management
Chapter # 6 Software Configuration Management
Software Configuration Management
Presentation transcript:

Configuration Management

Why Is Software Difficult to Build? Lack of control Lack of monitoring Lack of traceability Uncontrolled changes

Conflicts in Team Software Development Simultaneous updates – how to prevent one person from undoing the changes of another Shared and common code – how to notify everyone who needs to know about a change Versions – how to make changes to all affected versions when needed

Software Configuration Management Basics Identification – identifying software configuration items in a baseline Control – controlling the release of a product and changes to it throughout its lifecycle Status Accounting – recording and reporting of the status of components and changes Auditing and Reviewing – Validating the completeness of a product and that SCM procedures are being followed

SCM Definitions Baseline – One or more software configuration items that have been formally reviewed and agreed upon and serve as a basis for further development Software Configuration Item – A collection of software elements treated as a unit for the purposes of SCM Configuration – A collection of all the elements of a baseline and a description of how they fit together

SCM Definitions (cont’d) Configuration Control Board – Group with the responsibility for reviewing and approving changes to baselines Software – All of the code, specifications, plans, descriptions, processes, and documents associated with a software development effort Version – A specific instance of a baseline or configuration item

Examples of Configuration Items Product concept specification Software project plans Software requirements specifications Software design descriptions Source code Database descriptions SCM procedures Software release processes Software test documents User documentation Maintenance documentation

Version Control Allows different projects to use the same source files at the same time Isolates work that is not ready to be shared by the rest of the project Isolates work that should never be shared Allows software engineers to continue development along a branch even when a line of development is frozen

Change Control Proposed changes to baselines must have some level of review The impact of proposed changes must be identified and understood. When appropriate the approval of the CCB, key managers and project members must be obtained Approved changes must be properly implemented After changes are made all affected parties must be notified

Baseline Management What baselines are required to be defined and managed? Typically aligned with major milestones Applies to documents as well as code How is the current software configuration defined? A snapshot of everything the product has produced at some point in time

Baseline Management (cont’d) Who must approve changes to baselines? Usually the Change Control Board (CCB) How and when are baselines created and physically controlled? Through the use of document control systems, code control tools, and procedures to prevent the making of unapproved changes

Baseline Management (cont’d) How are people informed of changes? The CCB disseminates change information How are baselines verified? By reviews, inspections, and the testing of code Are baselines tied to project milestones? Many are, but during coding many may not be

Baseline Management (cont’d) What information is required to process a change to a baseline? A description of the proposed changes Reasons for making the changes List of other items affected by the changes What tools, resources, and training are required to perform baseline change assessment? File comparison tools to identify changes Resources and training depend on size and complexity of project

Baseline Management (cont’d) What metrics should be used to assess changes to a baseline? Complexity Average module size Number of modules changed Number of bugs fixed and verified Code coverage

Baseline Management (cont’d) How are unauthorized changes to source code prevented, detected, and corrected? No way to prevent unauthorized changes Provide software engineers with training A commercial available SCM systems provide adequate protection Unauthorized changes should be caught during assessment procedures

Baseline Management (cont’d) What tools, resources, and training are required to perform baseline management? A fully featured SCM tool On large projects a separate SCM group may be needed SCM training is required for all involved in the process

Workspace Management Software engineers need a consistent and reproducible workspace area (a sandbox) in which they can develop and debug their code They need to be able to share project files while shielding the project from the instability of their evolving code SCM tools should provide such a capability

Baseline Change Assessment Helps to identify recent changes that may be responsible for problems Helps to ensure that only authorized changes are made

Version Management Being able to reliably build and recreate versions of a product as it evolves and after it is released. Being able to retreat to a previous version if necessary Being able to recreate all versions of the product that customers have

Types of Audits In-process audits – verify the consistency of the design as it evolves through the development process Functional audits – verify that functionality and performance are consistent with requirements defined in the SRS Physical audits – verify that the as-built version of software and documentation are internally consistent and ready for delivery Quality system audits – independent assessment of the compliance to the software QA plan

Configuration Status Accounting Requirements Identifying the types of information that project managers need Identifying the degree of control needed by project management Identifying the reports required and the different audiences for each report Identifying the information required to produce each report

SCM Summary Change is inevitable Defined procedures are required to manage change without preventing change Software presents many challenges from a control, management, and tracking perspective Knowing what you have and how you got there is very important Being able to recreate exactly what is delivered to customers is essential