From 6a919971cef56b9102dc358014006985d7eaba5b Mon Sep 17 00:00:00 2001 From: Victor Morales Date: Thu, 28 Sep 2017 18:29:54 -0700 Subject: Add support to configuration values In order to make more flexible the execution workflow of this project, a new mechanism has been implemented to override the default configuration values. Change-Id: Ie6c5aeeb35b7f0de47379ea764ccc8dc21e4bff7 Signed-off-by: Victor Morales Issue-Id: INT-236 --- bootstrap/vagrant-onap/etc/settings.yaml.development | 6 ++++++ bootstrap/vagrant-onap/etc/settings.yaml.testing | 6 ++++++ 2 files changed, 12 insertions(+) create mode 100644 bootstrap/vagrant-onap/etc/settings.yaml.development create mode 100644 bootstrap/vagrant-onap/etc/settings.yaml.testing (limited to 'bootstrap/vagrant-onap/etc') diff --git a/bootstrap/vagrant-onap/etc/settings.yaml.development b/bootstrap/vagrant-onap/etc/settings.yaml.development new file mode 100644 index 000000000..594273b0d --- /dev/null +++ b/bootstrap/vagrant-onap/etc/settings.yaml.development @@ -0,0 +1,6 @@ +build_images: "True" +clone_repo: "True" +compile_repo: "False" +enable_oparent: "True" +skip_get_images: "False" +skip_install: "True" diff --git a/bootstrap/vagrant-onap/etc/settings.yaml.testing b/bootstrap/vagrant-onap/etc/settings.yaml.testing new file mode 100644 index 000000000..8beb4767d --- /dev/null +++ b/bootstrap/vagrant-onap/etc/settings.yaml.testing @@ -0,0 +1,6 @@ +build_images: "False" +clone_repo: "False" +compile_repo: "False" +enable_oparent: "False" +skip_get_images: "False" +skip_install: "False" -- cgit 1.2.3-korg