Continuous delivery notes 2: Configuration Management

Source: Internet
Author: User
Tags configuration settings version control system
What is configuration management?

Configuration management refers to the process by which all artifacts relevant to your project, and the relationships between them, are stored, retrieved, uniquely identified and modified.

As a good configuration management strategy, we can implement the following things.

  • We can exactly reproduce any of the environments, including the version of the operating system, its patch level, the network configuration, the software stack, the application deployed into it and their configuration.
  • We can easily make an incremental change to any of these individual items and deploy the change to any, and all, of the environments.
  • We can easily see each change that occurred to a special environment and trace it back to see exactly what the change was, who made it, and when they made it.
  • We shoshould be satisfy all of the compliance regulations that we are subject.
  • It is easy for every member of the team to get the information they need, and to make the change they need to make.

We need to consider the following things for configuration management.

  • Get everything into version control.
  • Manage dependency.
  • Manage an application's configuration.
  • Configuration Management of whole environments.

The aim of a version control system:

  • It retains and provides access to every version of every file that has ever been stored in it.
  • It allows teams that may be distributed into SS space and time to collaborate.
Keep absolutely everything in Version Control

Every single artifact related to the creation of your application shocould be under version control.

It is also important to store all the information required to re-create the testing and production environments that your application runs on.

It is even useful to keep the configuration files for the development team's development environments in version control so that everyone on the team can share the same setting.

Other projects may store binary images of their application servers, compilers, virtual machines and other parts of their toolchain in version control, this is fantastically useful.

Some projects may store the output of the application to version control, it is not recommended, as we may run deployment pipeline times, for each time, it will create the binary files, if we store all the binary files, it does not make sense.

Check in regularly to trunk

As check in will trigger deployment pipeline, so we need to check in on a reasonable frequent regular basis.

We need to run commit test before we perform check in.

We do not recommend branch and trunk strategy, reason:

  • It is antithetical to continuous integration, since the creation of a branch defers the integration of new functionality and integration problems are only found when the branch is merged.
  • If several developers create branches, the problems increases exponentially, and the merge process can become absurdly complex.
  • Although there are some great tools for automatic merging, these do not solve semantic conflicts.
  • It becomes very hard to refactor the codebase.
Use meaningful commit messages

The most important reason to write description commit messages it that when the build breaks, you will know who broke the build and why.

When we try to debug a complex problem under a tight deadline, the scenario as below.

  • You find a bug that is down to a rather obscure line of code.
  • You use your version control system to find out who put in that line of code and when.
  • That person is off on holiday or has gone home for the night, and left a commit message that said "fixed obscure bug .".
  • You change the obscure line of code to fix the bug.
  • Something else breaks.
  • You spend hours trying to get the application working again.

It is a dispirited experience.

For a meaningful commit description, it can contain des several paragraph.

  • First paragraph is a summary about this commit.
  • Following paragraph is about some details on what you did.
Manage dependenciesmanage external Libraries

External libraries usually come in binary form, and we can download it from network.

Also we can maintain a copy of the libraries locally.

Whether you keep external libraries in version control or not involves some trade-offs, it makes much easier to correlate versions of your software with the versions of the libraries that were used to build them. however it makes version control repositories bigger and check-outs longer.

Manage Components

It is good practice to split all but the smallest applications into components.

Typically you wocould start off with a monolithic build creating binaries or an installer for your entire application in one step.

It is important to have binary dependencies between your pipelines rather than source dependencies.

Some CI servers do a pretty good job of managing dependencies, but it makes harder to reproduce the entire end-to-end environment.

Managing Software Configuration

We shoshould treat application configuration in the same way as you treat the source code.

Configuration and flexibility

The desire to achieve flexibility may lead to common antipattern of "ultimate flexibility ".

Configuration information is somehow less risky to change than source code, and most configuration information is free-form and untested. So we need to store it in version control.

When we develop a new application, it is almost always better to focus on delivering the high-value functionality with little configuration and then add configuration options later when necessary.

Types of Configuration

Configuration information can be injected into your application at several points in your build, deploy, test and release process.

  • Your build scripts can pull configuration in and induplicate ate it into your binariesBuild time.
  • Your packaging software can inject configurationPackaging time, Such as when creating assemblies, ears or gems.
  • You deployment scripts or Installers can fetch the necessary information or ask the user for it and pass it to your applicationDeployment timeAs part of the installation process.
  • Your application itself can fetch configurationStartup time or run time.

Generally we consider it bad practice to inject configuration information at build or packaging time.

It is usually important to be able to configure your application at deployment time so that you can tell it where the services it depend upon, I. e. the database, message queue.

It is important that we shoshould try and supply all configuration information for all the applications and environments in your organization through the same mechanic, so that we can treat every environment in the same way.

Managing application configuration

We need to consider the following questions.

  • How do you represent your configuration information?
  • How do your deployment scripts access it?
  • How does it vary between environments, applications and versions of applications?

There are some obvious choices for where to store your application configuration.

  • Database
  • Version Control System
  • Directory
  • Registry

It is important to keep the actual configuration information specific to each of your application's testing and production environments in a repository separate from your source code. usually the separation is special relevant for security-related configuration.

Please note do not check any confidence information such as password into source control or hard-code them in the application.

Each configuration setting can be modeled as a tuple, it contains the following three things.

  • The Application
  • The version of the application
  • The environment it runs in

When we consider application configuration, we need to think about the following things.

  • Adding a new environment.
  • Creating a new version of the application.
  • Promoting a new version of your application from one environment to another.
  • Reloading a database server.
  • Managing environments using configuralization.

How to test system configuration?

  • Ensure that reference to external services in the configuration settings are valid.
  • Run some smoke tests once your application is installed to make sure it is operating as expected. Ideally these tests shocould stop the application and fail the installation or deployment process if the results are not as expected.
Managing configuration processing SS applications

We need to keep a catalogue of all the configuration options that each of your application has, where they are stored, what their life cycle is, and how they can be changed.

It is especially important to have access to the configuration on a real-time basis when your applications depend on each other and deployments must be orchestrated.

Configuration Management of every application shoshould be planned as part of project inception.

Principles of managing application configuration
  • Consider where in your application's lifecycle it makes sense to inject a special piece of configuration.
  • Keep the available configuration options for your application in the same repository as its source code, but keep the values somewhere else.
  • Configuration shoshould always be saved med by automatic processes using values taken from your configuration repository, so that you can always identify the configuration of every application in every environment.
  • Your Configuration System shocould be able to provide different values to your application.
  • Use clear naming conventions for your configuration options.
  • Ensure that your configuration information is modular and encapsulated so that change in one place do not have knock-on effects for other.
  • User dry principle.
  • Be minimalist: Keep the configuration information as simple and as focused as possible.
  • Avoid overengineering the configuration system.
  • Ensure that you have tests for your configuration that are run at deployment or installation time.
Managing the Environments

Every application depends on hardware, software, infrastructure and external systems in order to work.

The worst approach to managing configuration information is to deal with it on an ad-hoc basis.

The problem of managing environment as below.

  • The collection of configuration information is very large.
  • One small change can break the whole application or severely degrade its performance.
  • Once it is broken, finding the problem and fixing it takes an indeterminate amount of time and requires senior personnel.
  • It is extremely difficult to precisely reproduce manually configured environment for testing purposes.
  • It is difficult to maintain such environments without the configuration, and hence behavior, of different nodes drifting apart.

The key to managing environments is to make their creation a fully automatic process.

An environment that is in a properly deployed state is known as a baseline in configuration management terminology.

You shoshould treat the environment the same way as you treat your source code.

We can use puppet or cfengine to manage the environment.

Managing the change process

It is essential to be able to manage the process of making changes to your environment, it shoshould not be possible for anybody to make a change to it without going through your organization's change management process.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.