Skip to content
Snippets Groups Projects
Commit 1875a33eb32b authored by Christophe de Vienne's avatar Christophe de Vienne
Browse files

Implement variable overlay with dotted paths

If an overlay variable has a dotted name, it is used as a path to patch
a nested value in the original variable.

For instance, given the following original variables:

variables:
  d:
    a: value
    b: other

A config overlay can change the 'a' value without touching the other 'd'
attributes :

variables:
  d.a: new value


The resulting variables would be :

variables:
  d:
    a: new value
    b: other
parent 80cefe17f4bb
No related branches found
No related tags found
Loading
Checking pipeline status
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment