staging drupal
play

Staging Drupal Change Management Strategies for Drupal DrupalCamp - PowerPoint PPT Presentation

Staging Drupal Change Management Strategies DrupalCamp CT 2010 Staging Drupal Change Management Strategies for Drupal DrupalCamp CT 2010 Staging Drupal Change Management Strategies DrupalCamp CT 2010 Introductions Erich Beyrent


  1. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 Staging Drupal Change Management Strategies for Drupal DrupalCamp CT 2010

  2. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 Introductions Erich Beyrent http://twitter.com/ebeyrent http://drupal.org/user/23897 My Modules ● Permissions API ● Search Lucene Biblio ● Crowd SSO ● Search Lucene Attachments ● LDAP Extended Groups ● Search Lucene OG ● Visual Search API

  3. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 Agenda ● Playing well with others ● Managing code changes ● Managing database changes ● Deployment strategies

  4. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 The only thing that's constant is...

  5. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 Staging? What is that?

  6. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 Staging? What is that? “Staging” is the process of delivering changes from one environment to another.

  7. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 ● I develop on the live server. ● I work alone. ● Backups?

  8. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 The Manual Process ● Point. ● Click. ● Wait. ● Rinse and repeat.

  9. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 TOTAL FAIL

  10. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 Why it fails ● It's tedious. ● It's time-consuming. ● It's error-prone. ● It's risky.

  11. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 A traditional approach ● Use source control

  12. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 Use source control ● Essential to the development and staging process – Creates a flow from Dev → QA → Production ● Manages changes to the code over time ● Use a standard repository layout consisting of “tags, branches, trunk” ● Use multiple repositories to separate core code from project code

  13. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 What goes into source control ● Code, configuration, theme-based files ● Use source control templates ● What about database snapshots? ● DON'T manage user-generated content in source control

  14. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 A traditional approach ● Use source control ● Manage changes in code

  15. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 Manage database changes ● Export your views, panels, and content types to code ● Use exportables and ctools to export other data ● Manage configurations with Strongarm ● Use Permissions API for roles and permissions ● Use Features!

  16. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 Why should we do this? ● Multiple environments need to be updated ● Allows for a phased approach to change management ● Saves time and money ● Is fully testable and reproducible ● Minimizes downtime and helps manage expectations

  17. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 Source Control and Update Scripts: Friends with Benefits ● All changes can be viewed, compared, and reverted in version control, which helps with debugging ● Deployment processes are reproducible, and become part of QA ● Changes become portable and can be easily replicated in multiple environments

  18. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 Choose Wisely ● How many changes are there? ● How long will it take to write the update code? ● How many environments need to be updated?

  19. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 A traditional approach ● Use source control ● Manage database changes in code ● Use deployment tools

  20. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 Use deployment tools ● Source control as a deployment tool – SVN update, post-commit hooks – GIT push ● Make, rsync ● Aegir, Phing/Ant, Capistrano, Hudson

  21. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 The process ● Import current database snapshot into your sandbox ● Update your codebase ● Develop, commit, update ● Promote changes to QA environment, test ● Tag and release ● Drink beer

  22. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 The specifics ● Changes are coded in a module ● The module implements hook_update_N() ● BUT WAIT, THERE'S MORE – Installing a module does NOT invoke any hook_update_N() implementations – hook_install() and hook_update_N() must be in sync

  23. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 The specifics ● Use the APIs (node, user, etc) instead of writing queries ● Use smaller update functions for maintainability

  24. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 The specifics ● Use the APIs (node, user, etc) instead of writing queries ● Use smaller update functions for maintainability

  25. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 The Problems ● Inconsistent and incomplete export functionality ● Primary key issues with content ● Dependencies ● Requires technical proficiency

  26. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 Drupal Tools ● Devel: Generate: drupal.org/project/devel ● Demonstration Site: drupal.org/project/demo ● Node Export: drupal.org/project/node_export ● Permissions API: drupal.org/project/permissions_api ● Views Export: drupal.org/project/views ● CCK: Content Copy: drupal.org/project/cck ● Drush: drupal.org/project/drush

  27. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 DrupalCamp CT 2010 More Drupal Tools ● Variable Dump: drupal.org/project/variable_dump ● Exportables: drupal.org/project/exportables ● Transformations: drupal.org/project/transformations ● Migrate: drupal.org/project/migrate ● Deploy: drupal.org/project/deploy ● Features: drupal.org/project/features ● Strongarm: drupal.org/project/strongarm

  28. Staging Drupal – Change Management Strategies DrupalCamp CT 2010 Questions?

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend