microconfig / osdf

Openshift deploy tool based on Microconfig
6 stars 3 forks source link

Implement external variables injection #86

Closed SniXosha closed 3 years ago

SniXosha commented 3 years ago

Support external variables injection. Having these files

# external.yaml 

host: 10.10.10.10
# some file from configs

db.host: ~external(host)

The result after osdf init configs -ext external.yaml && osdf pull will be:

# some file from configs

db.host: 10.10.10.10