DevOps is a hot topic in today’s software development along with Agile methodology. What does DevOps mean?
The term DevOps is commonly considered a combination of the concepts of development and operations. It is used in IT to refer to roles or processes that bridge various department – usually development and operations teams – to achieve a certain project management philosophy that involves more efficiency in communications between development teams and other parts of a greater business or organization.
– Techopidia
From technical perspective, the key points of DevOps are continuous integration and auto-deployment. In real world, we always experience functionalities and features in different stages of development life cycle cross all environments: Dev, QA, Staging, UAT, Production. Sitecore even brings additional complexity with various instances CM, CD, Processing, Reporting, etc.
Below is an overview of Sitecore development life cycle and operation procedure with different stages audience and roles.
How can DevOps orchestrate Sitecore implementation from various departments to deploy code and items to different environments/instances? Not using Sitecore Ship, Unicorn, Gulp, Grunt, Git, TeamCity, you name it, I came up a simple way to create Sitecore DevOps CI/CD procedure with popular .Net development IDE and tools:
- Visual Studio
- Team Foundation Server
- SlowCheetah
- TDS
First, create code solution based on Sitecore Helix principle and Habitat architecture approach.
This is fundamental to entire DevOps. (Ref: http://helix.sitecore.net/). Because Sitecore platform multitenancy approach results all client websites, applications and components built within Sitecore developed in single code base. So the Modular Architecture is Sitecore recommended best practice. It moves away from the traditional 3 tiered architecture (UI, business logic, data). It breaks the solution into smaller independent and manageable parts. Each module is self-contained with business logic, UI and TDS Sitecore items. It can be built, packed and shipped independently without interfering other modules causing massive regression test. The module should only depend upon modules that are more stable than it.
Second, create build definitions with branch change sets and transformations.
This will differentiate feature stages and environment settings during continue integration and continue deployment. By using TFS merge and branch function, we can move features by checked-in change sets, see below.
In Visual Studio, create configuration profiles for each Sitecore environment: Dev; StgCM; StgCd1; StgCd2; ProdCM; ProdCd1; ProdCd2, etc. Add SlowCheetah extension to Visual Studio. It will transform all custom Sitecore configuration files at build time based on profile.
Third, use TDS Sitecore Package Deployer to automatically process Sitecore update packages.
- In Visual Studio TDS project properties, enable “Generate package during build” according to the configuration profile.
- Create a folder “SitecorePackageDeployer” under “Data”.
- Install Sitecore Package Deployer. It includes a scheduled task run by the Sitecore task agent. This task runs one per minute and looks for packages in the folder created above
- In TFS build definition and release task, make sure the generated web code published to Sitecore “Website” folder and update packages published to Sitecore “Data\SitecorePackageDeployer” folder.
Reduces huge manual effort. Nice article
Thanks Sunil.
Pingback: Sitecore DevOps A-B-C | A Coffee in Sunny Winter Afternoon