SlideShare a Scribd company logo
Configuration Management
Drupal Camp Alpe-Adria 2014
Fabian Bircher
Agenda
Introduction
Configuration Management for site builders
From Drupal 7 to Drupal 8
A Closer Look at CMI
CMI for Developers
Fabian Bircher
Developer at Nuvole
Drupal company
Brussels, Parma, Prague
Pioneers of Code Driven Development:
configuration management for Drupal 6 and Drupal 7.
@fabianbircher
@nuvoleweb
Configuration Management
An overview and practical introduction for site builders
Configuration Management Initiative
“Site configuration information in D8 is stored in
files in your library’s directory, making it much
simpler to transport configuration changes such as
new content types, fields, or views from
development to production.”
The initial goal, with some implementation
differences, was reached. CMI already works in the
Drupal 8 branch.
Reference Use Case
Modify the configuration of a production site:
Keeping the site online all the time.
Developing/testing the new configuration on a
development copy.
Exporting the configuration changes from development
and importing them in production.
Step 1 of 6: Clone Site to Dev
PRODUCTION
Copy:
Database
Full Drupal tree
Files
DEVELOPMENT
Restore the copy
Step 2 of 6: Modify Configuration
PRODUCTION
Site operates normally:
new users
new content
DEVELOPMENT
Step 3 of 6: Export Configuration
PRODUCTION
Site operates normally:
new users
new content
DEVELOPMENT
Step 4 of 6: Import in Staging
PRODUCTION DEVELOPMENT
Step 5 of 6: Review Changes
PRODUCTION DEVELOPMENT
Step 6 of 6: Apply Changes
PRODUCTION DEVELOPMENT
There's Much More...
This is only the site builder's user experience.
CMI is still under active development.
Significant changes can still occur before Drupal 8 is
released.
From Drupal 7 to Drupal 8
What changed. What improved. What's still missing.
D7 to D8: Configuration is defined
Are vocabularies
configuration?
Are taxonomy terms
configuration?
If it's in the config, it's
configuration!
D7 to D8: Configuration Storage
Database
Text files
(well... text files stored
in DB by default)
D7 to D8: Uniform Approach
Variables
DB Tables
CTools
Features
Black magic...
Text files in YAML
format
D7 to D8: Staging Configuration
Through Features,
revert to apply
Native
D7 to D8: Interface to Developers
“Exportables”
from CTools and bag of
(incompatible) tricks
“Configurables”
as PHP classes (entities)
D7 to D8: Comparison
D7 core D7 core +
features
D8 core
Export full site config (no content) NO NO YES
Export selected config items NO YES YES
Track config changes (full site) NO NO YES
Track config changes (selected items) NO YES YES
Stage configuration NO YES YES
Package configuration NO YES NO
Reuse configuration in other projects NO YES NO
Collaborate on the same project NO YES NO*
Is CMI “Features Done Right”?
No.
It is a nice way to replace and improve one use case
for Features: making configuration exportable into
text files.
Is CMI “Features Done Wrong”?
No.
It is a huge step forward to developers and it paves
the way for additional modules that could offer the
same functionality of Drupal 7 + Features in a much
cleaner and more reliable way.
A Closer Look at CMI
Under the hood. Caveats and pending developments.
Key-Value store
Concept
Unique key
Potentially complex data
Declarative (no logic)
Implementation
Files
Two columns in a database
…
Two Levels of Configuration
Active store
The real site configuration. If you only configure
“D7-style”, you'll use this one and never see CMI.
Staging store
Temporary area for configuration files that are to be
reviewed and imported.
Configuration in settings.php
$config_directories['active'] =
'sites/default/files/config_al6ppw6/active';
$config_directories['staging'] =
'sites/default/files/config_al6ppw6/staging';
The random string is for extra security.
The two directories can be out of the Drupal root.
A Look at the Active Store
$ ls sites/default/files/config_al6ppw6/active
$
Empty?
Files are in Database
+---------------------------------+
| name |
+---------------------------------+
| bartik.settings |
| ... |
| views.view.who_s_new |
| views.view.who_s_online |
+---------------------------------+
166 rows in set
Why the Database?
Performance
It's faster than reading/parsing files.
Safety
No temptation to edit files “because you can”.
Changes ALWAYS need to be imported!
Security
Less likely to leave read access accidentally open.
YAML Example: in Drupal
YAML Example: in Exported Config
$ cat image.style.large.yml
name: large
label: 'Large (480x480)'
status: true
uuid: 15dda024-4160-40e2-b305
langcode: en
dependencies: { }
effects:
ddd73aa7-4bd6-4c85-b600:
uuid: ddd73aa7-4bd6-4c85-b600
id: image_scale ...
YAML Example: in Default Config
$ pwd
.../core/modules/system/config/install
$ cat system.site.yml
uuid: ''
name: Drupal
mail: ''
slogan: ''
page:
403: ''
404: ''
front: user
admin_compact_mode: false
YAML Example: After Install
UUIDs Everywhere
Good
Prevent any possible conflicts.
Bad
“Universally Unique” clashes with “Reusable”
(especially with relations).
Caveat: CMI is for the Same Site
No portability, by design
The export/import cycle is assumed to be between
multiple version (dev, production) of the same Drupal
project.
Caveat: CMI is not Atomic
$ cat user.role.authenticated.yml
id: authenticated
label: 'Authenticated user'
weight: 1
permissions:
- 'use text format plain_text'
- 'access content'
- 'use text format basic_html'
- 'access comments'
Can't package a “feature” reusing whole files.
Need for an intermediate layer.
Caveat: Import Can Break Things
$ [export config]
$ rm node.type.page.yml
$ [import config]
Existing pages are orphaned and unusable; always
make a backup dump or review changes carefully!
Caveat: No Consistency Check
$ [export config]
$ vim system.theme.yml
$ cat system.theme.yml # Typo in name!
admin: seven
default: barTtik
$ [import config]
An invalid configuration is imported and applied; style
is broken.
Pending: Install from Existing Config
Issue 1613424
Idea: create a clean copy (all config, no content) of
a production site.
Theoretically, possible by providing an “install fom
existing config” choice as if it were an installation
profile (see issue for discussion).
Pending: Robust Synchronization
Issue 2121751
Idea: Synchronize sites in a stable way, handling
possible conflicts.
Use case: handle gracefully the case where the
same View was created independently on
production and development (see issue for
discussion).
CMI for Developers
Configurables. How to work with configuration.
Configurables
As everything in Drupal 8, object-oriented
interface:
abstract class ConfigEntityBase
Namespace
DrupalCoreConfigEntity
Configurables are Entities
class ConfigEntityBase extends Entity { ...
}
DrupalCoreEntityEntity
|- DrupalCoreConfigEntityConfigEntityBase
- DrupalCoreEntityContentEntityBase
Two namespaces: one for config, one for content.
Retrieving Configuration Objects
Drupal::config($name)
Where $name is the configuration object (filename of
the YAML file, without the .yml extension).
Example:
$site_name = Drupal::config('system.site')
->get('name');
Modifying Configuration Objects
Drupal::config('system.site')
->set('name', 'Drupal 8 test')
->save();
The active store is immediately modified. The
staging store is not used.
Drush 7.x Integration
config-list (cli)
List config names by prefix.
config-export (cex)
Export config from the active store.
config-import (cim)
Import config from a config dir.
config-get (cget)
Display a config value, or a whole
configuration object.
config-set (cset)
Set a config value directly in
the active configuration.
Configuration EVERYTHING?
variable_xxx() is dead!
How is the time of the last cron run saved?
State API to the rescue!
Environment specific settings
Separation of configuration, state and content
Content staging not implemented yet
Settings overrides
Configuration can be locally overridden
CSS & JS aggregation
TWIG debugging
settings.local.php
$config['system.performance']['css']
['preprocess'] = FALSE;
CSV workflow
PRODUCTION
Clone site
don’t touch config
Pull from git
Import configuration
DEVELOPMENT
Insall clone
Configure
Export configuration
into staging
Commit&push to git
More…
Jam’s virtual drupal camp featuring Rob Bayliss
https://www.youtube.com/watch?v=St9s7DqFR7o
Thank you for your attention

More Related Content

PDF
Configuration Management in Drupal 8: A preview (DrupalDays Milano 2014)
KEY
Automating Drupal Development: Makefiles, features and beyond
PDF
Drupal 8 Configuration Management
PDF
Drupal 8 Configuration Management with Features
PPTX
Drupal 8 deploying
PDF
Drupal 8 CMI on a Managed Workflow
PDF
Gestione della configurazione in Drupal 8
PDF
Advanced Configuration Management with Config Split et al.
Configuration Management in Drupal 8: A preview (DrupalDays Milano 2014)
Automating Drupal Development: Makefiles, features and beyond
Drupal 8 Configuration Management
Drupal 8 Configuration Management with Features
Drupal 8 deploying
Drupal 8 CMI on a Managed Workflow
Gestione della configurazione in Drupal 8
Advanced Configuration Management with Config Split et al.

What's hot (20)

PPT
Introduction to Module Development (Drupal 7)
PDF
Building and Maintaining a Distribution in Drupal 7 with Features
PDF
Drupal 8 - Corso frontend development
PDF
Hive Quick Start Tutorial
PPTX
Becoming A Drupal Master Builder
PPTX
ExtBase workshop
PDF
Beginning hive and_apache_pig
PDF
Improving your Drupal 8 development workflow DrupalCampLA
PDF
Drupal 8 Theme System: The Backend of Frontend
PDF
Introduction to Drupal - Installation, Anatomy, Terminologies
PDF
CertiFUNcation 2017 Best Practices Extension Development for TYPO3 8 LTS
PDF
Working with Hive Analytics
PPT
Hadoop, Hbase and Hive- Bay area Hadoop User Group
PPTX
PiBase Updates
TXT
CHANGELOG.txt
PPT
Local Drupal MultiSite Set-up
TXT
Changelog
PPTX
Drupal 8 Configuration Management
ZIP
What's new in the Drupal 7 API?
PPTX
Migrate in Drupal 8
Introduction to Module Development (Drupal 7)
Building and Maintaining a Distribution in Drupal 7 with Features
Drupal 8 - Corso frontend development
Hive Quick Start Tutorial
Becoming A Drupal Master Builder
ExtBase workshop
Beginning hive and_apache_pig
Improving your Drupal 8 development workflow DrupalCampLA
Drupal 8 Theme System: The Backend of Frontend
Introduction to Drupal - Installation, Anatomy, Terminologies
CertiFUNcation 2017 Best Practices Extension Development for TYPO3 8 LTS
Working with Hive Analytics
Hadoop, Hbase and Hive- Bay area Hadoop User Group
PiBase Updates
CHANGELOG.txt
Local Drupal MultiSite Set-up
Changelog
Drupal 8 Configuration Management
What's new in the Drupal 7 API?
Migrate in Drupal 8
Ad

Similar to Configuration Management in Drupal 8: A preview (DrupalCamp Alpe Adria 2014) (20)

PDF
CMI 2.0 session at Drupal DevDays in Cluj-Napoca
PDF
DDAY2014 - Features per Drupal 8
PDF
Config management
PDF
Drupal 8 Configuration Management for you and your team
PPTX
CMI in Drupal8
PDF
Configuration Deployment in Drupal 8
PDF
Getting Into Drupal 8 Configuration
PDF
Creating a Reusable Drupal Website for Higher Education - Webinar
PDF
CMI feedback.dnd
PDF
Drupal & Drink Montpellier "CMI feedback"
PDF
Олексій Калініченко — Configuration Management in Drupal8
PDF
Developing with Configuration Management on Drupal 7
PDF
Drupal 8 - Hosting, Performance and Drush
PPT
Drupal con Sydney configuration management in drupal 7
PDF
Drupal 8 configuration system for coders and site builders - DrupalCamp Balti...
PDF
Configuration Management Best Practices
PDF
Configuration as Dependency: Managing Drupal 8 Configuration with git and Com...
PDF
Drupal 8 configuration management
PPTX
Features module in drupal 8
PDF
Drupal 8 configuration system for coders and site builders - Drupalaton 2013
CMI 2.0 session at Drupal DevDays in Cluj-Napoca
DDAY2014 - Features per Drupal 8
Config management
Drupal 8 Configuration Management for you and your team
CMI in Drupal8
Configuration Deployment in Drupal 8
Getting Into Drupal 8 Configuration
Creating a Reusable Drupal Website for Higher Education - Webinar
CMI feedback.dnd
Drupal & Drink Montpellier "CMI feedback"
Олексій Калініченко — Configuration Management in Drupal8
Developing with Configuration Management on Drupal 7
Drupal 8 - Hosting, Performance and Drush
Drupal con Sydney configuration management in drupal 7
Drupal 8 configuration system for coders and site builders - DrupalCamp Balti...
Configuration Management Best Practices
Configuration as Dependency: Managing Drupal 8 Configuration with git and Com...
Drupal 8 configuration management
Features module in drupal 8
Drupal 8 configuration system for coders and site builders - Drupalaton 2013
Ad

More from Nuvole (8)

PDF
The OpenEuropa Initiative
PDF
Introducing the UI Patterns module: use atomic UI components everywhere in Dr...
KEY
Remote Collaboration and Institutional Intranets with Drupal and Open Atrium
KEY
Public Works Monitoring
PDF
Extending and Customizing Open Atrium
PDF
Code driven development: using Features effectively in Drupal 6 and 7
PDF
Features based development workflow
ZIP
First Steps in Drupal Code Driven Development
The OpenEuropa Initiative
Introducing the UI Patterns module: use atomic UI components everywhere in Dr...
Remote Collaboration and Institutional Intranets with Drupal and Open Atrium
Public Works Monitoring
Extending and Customizing Open Atrium
Code driven development: using Features effectively in Drupal 6 and 7
Features based development workflow
First Steps in Drupal Code Driven Development

Recently uploaded (20)

PDF
Softaken Excel to vCard Converter Software.pdf
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
PPTX
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
PPTX
Operating system designcfffgfgggggggvggggggggg
PPTX
VVF-Customer-Presentation2025-Ver1.9.pptx
PPTX
Transform Your Business with a Software ERP System
PPTX
Introduction to Artificial Intelligence
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
PPTX
L1 - Introduction to python Backend.pptx
PPTX
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
PDF
Understanding Forklifts - TECH EHS Solution
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PPT
Introduction Database Management System for Course Database
PDF
top salesforce developer skills in 2025.pdf
PDF
System and Network Administration Chapter 2
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
PPTX
ISO 45001 Occupational Health and Safety Management System
PDF
Digital Strategies for Manufacturing Companies
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
Softaken Excel to vCard Converter Software.pdf
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Oracle E-Business Suite: A Comprehensive Guide for Modern Enterprises
Operating system designcfffgfgggggggvggggggggg
VVF-Customer-Presentation2025-Ver1.9.pptx
Transform Your Business with a Software ERP System
Introduction to Artificial Intelligence
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
SAP S4 Hana Brochure 3 (PTS SYSTEMS AND SOLUTIONS)
L1 - Introduction to python Backend.pptx
Agentic AI : A Practical Guide. Undersating, Implementing and Scaling Autono...
Understanding Forklifts - TECH EHS Solution
Wondershare Filmora 15 Crack With Activation Key [2025
Introduction Database Management System for Course Database
top salesforce developer skills in 2025.pdf
System and Network Administration Chapter 2
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
ISO 45001 Occupational Health and Safety Management System
Digital Strategies for Manufacturing Companies
Upgrade and Innovation Strategies for SAP ERP Customers

Configuration Management in Drupal 8: A preview (DrupalCamp Alpe Adria 2014)

  • 1. Configuration Management Drupal Camp Alpe-Adria 2014 Fabian Bircher
  • 2. Agenda Introduction Configuration Management for site builders From Drupal 7 to Drupal 8 A Closer Look at CMI CMI for Developers
  • 3. Fabian Bircher Developer at Nuvole Drupal company Brussels, Parma, Prague Pioneers of Code Driven Development: configuration management for Drupal 6 and Drupal 7. @fabianbircher @nuvoleweb
  • 4. Configuration Management An overview and practical introduction for site builders
  • 5. Configuration Management Initiative “Site configuration information in D8 is stored in files in your library’s directory, making it much simpler to transport configuration changes such as new content types, fields, or views from development to production.” The initial goal, with some implementation differences, was reached. CMI already works in the Drupal 8 branch.
  • 6. Reference Use Case Modify the configuration of a production site: Keeping the site online all the time. Developing/testing the new configuration on a development copy. Exporting the configuration changes from development and importing them in production.
  • 7. Step 1 of 6: Clone Site to Dev PRODUCTION Copy: Database Full Drupal tree Files DEVELOPMENT Restore the copy
  • 8. Step 2 of 6: Modify Configuration PRODUCTION Site operates normally: new users new content DEVELOPMENT
  • 9. Step 3 of 6: Export Configuration PRODUCTION Site operates normally: new users new content DEVELOPMENT
  • 10. Step 4 of 6: Import in Staging PRODUCTION DEVELOPMENT
  • 11. Step 5 of 6: Review Changes PRODUCTION DEVELOPMENT
  • 12. Step 6 of 6: Apply Changes PRODUCTION DEVELOPMENT
  • 13. There's Much More... This is only the site builder's user experience. CMI is still under active development. Significant changes can still occur before Drupal 8 is released.
  • 14. From Drupal 7 to Drupal 8 What changed. What improved. What's still missing.
  • 15. D7 to D8: Configuration is defined Are vocabularies configuration? Are taxonomy terms configuration? If it's in the config, it's configuration!
  • 16. D7 to D8: Configuration Storage Database Text files (well... text files stored in DB by default)
  • 17. D7 to D8: Uniform Approach Variables DB Tables CTools Features Black magic... Text files in YAML format
  • 18. D7 to D8: Staging Configuration Through Features, revert to apply Native
  • 19. D7 to D8: Interface to Developers “Exportables” from CTools and bag of (incompatible) tricks “Configurables” as PHP classes (entities)
  • 20. D7 to D8: Comparison D7 core D7 core + features D8 core Export full site config (no content) NO NO YES Export selected config items NO YES YES Track config changes (full site) NO NO YES Track config changes (selected items) NO YES YES Stage configuration NO YES YES Package configuration NO YES NO Reuse configuration in other projects NO YES NO Collaborate on the same project NO YES NO*
  • 21. Is CMI “Features Done Right”? No. It is a nice way to replace and improve one use case for Features: making configuration exportable into text files.
  • 22. Is CMI “Features Done Wrong”? No. It is a huge step forward to developers and it paves the way for additional modules that could offer the same functionality of Drupal 7 + Features in a much cleaner and more reliable way.
  • 23. A Closer Look at CMI Under the hood. Caveats and pending developments.
  • 24. Key-Value store Concept Unique key Potentially complex data Declarative (no logic) Implementation Files Two columns in a database …
  • 25. Two Levels of Configuration Active store The real site configuration. If you only configure “D7-style”, you'll use this one and never see CMI. Staging store Temporary area for configuration files that are to be reviewed and imported.
  • 26. Configuration in settings.php $config_directories['active'] = 'sites/default/files/config_al6ppw6/active'; $config_directories['staging'] = 'sites/default/files/config_al6ppw6/staging'; The random string is for extra security. The two directories can be out of the Drupal root.
  • 27. A Look at the Active Store $ ls sites/default/files/config_al6ppw6/active $ Empty?
  • 28. Files are in Database +---------------------------------+ | name | +---------------------------------+ | bartik.settings | | ... | | views.view.who_s_new | | views.view.who_s_online | +---------------------------------+ 166 rows in set
  • 29. Why the Database? Performance It's faster than reading/parsing files. Safety No temptation to edit files “because you can”. Changes ALWAYS need to be imported! Security Less likely to leave read access accidentally open.
  • 31. YAML Example: in Exported Config $ cat image.style.large.yml name: large label: 'Large (480x480)' status: true uuid: 15dda024-4160-40e2-b305 langcode: en dependencies: { } effects: ddd73aa7-4bd6-4c85-b600: uuid: ddd73aa7-4bd6-4c85-b600 id: image_scale ...
  • 32. YAML Example: in Default Config $ pwd .../core/modules/system/config/install $ cat system.site.yml uuid: '' name: Drupal mail: '' slogan: '' page: 403: '' 404: '' front: user admin_compact_mode: false
  • 34. UUIDs Everywhere Good Prevent any possible conflicts. Bad “Universally Unique” clashes with “Reusable” (especially with relations).
  • 35. Caveat: CMI is for the Same Site No portability, by design The export/import cycle is assumed to be between multiple version (dev, production) of the same Drupal project.
  • 36. Caveat: CMI is not Atomic $ cat user.role.authenticated.yml id: authenticated label: 'Authenticated user' weight: 1 permissions: - 'use text format plain_text' - 'access content' - 'use text format basic_html' - 'access comments' Can't package a “feature” reusing whole files. Need for an intermediate layer.
  • 37. Caveat: Import Can Break Things $ [export config] $ rm node.type.page.yml $ [import config] Existing pages are orphaned and unusable; always make a backup dump or review changes carefully!
  • 38. Caveat: No Consistency Check $ [export config] $ vim system.theme.yml $ cat system.theme.yml # Typo in name! admin: seven default: barTtik $ [import config] An invalid configuration is imported and applied; style is broken.
  • 39. Pending: Install from Existing Config Issue 1613424 Idea: create a clean copy (all config, no content) of a production site. Theoretically, possible by providing an “install fom existing config” choice as if it were an installation profile (see issue for discussion).
  • 40. Pending: Robust Synchronization Issue 2121751 Idea: Synchronize sites in a stable way, handling possible conflicts. Use case: handle gracefully the case where the same View was created independently on production and development (see issue for discussion).
  • 41. CMI for Developers Configurables. How to work with configuration.
  • 42. Configurables As everything in Drupal 8, object-oriented interface: abstract class ConfigEntityBase Namespace DrupalCoreConfigEntity
  • 43. Configurables are Entities class ConfigEntityBase extends Entity { ... } DrupalCoreEntityEntity |- DrupalCoreConfigEntityConfigEntityBase - DrupalCoreEntityContentEntityBase Two namespaces: one for config, one for content.
  • 44. Retrieving Configuration Objects Drupal::config($name) Where $name is the configuration object (filename of the YAML file, without the .yml extension). Example: $site_name = Drupal::config('system.site') ->get('name');
  • 45. Modifying Configuration Objects Drupal::config('system.site') ->set('name', 'Drupal 8 test') ->save(); The active store is immediately modified. The staging store is not used.
  • 46. Drush 7.x Integration config-list (cli) List config names by prefix. config-export (cex) Export config from the active store. config-import (cim) Import config from a config dir. config-get (cget) Display a config value, or a whole configuration object. config-set (cset) Set a config value directly in the active configuration.
  • 47. Configuration EVERYTHING? variable_xxx() is dead! How is the time of the last cron run saved? State API to the rescue! Environment specific settings Separation of configuration, state and content Content staging not implemented yet
  • 48. Settings overrides Configuration can be locally overridden CSS & JS aggregation TWIG debugging settings.local.php $config['system.performance']['css'] ['preprocess'] = FALSE;
  • 49. CSV workflow PRODUCTION Clone site don’t touch config Pull from git Import configuration DEVELOPMENT Insall clone Configure Export configuration into staging Commit&push to git
  • 50. More… Jam’s virtual drupal camp featuring Rob Bayliss https://www.youtube.com/watch?v=St9s7DqFR7o
  • 51. Thank you for your attention