From 8944150190575aaa2925b68fad0678719d2baffe Mon Sep 17 00:00:00 2001 From: Michal Zegan Date: Thu, 22 Aug 2019 14:50:22 +0200 Subject: Add onap instance configuration role This change adds a role that configures deployed onap infrastructure instances. This role is generic and not openstack dependent. This role configures instances to reach each other by name, to mutually authenticate with the given ssh keys, etc. This mainly makes it easier for developers to do troubleshooting, and allows offline installer to work smoothly. Change-Id: I26750b0a8a69f56297f0a5f7ff491463ed2e9e32 Issue-ID: OOM-2042 Signed-off-by: Michal Zegan --- tools/cicdansible/roles/configure_instances/templates/daemon.json.j2 | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 tools/cicdansible/roles/configure_instances/templates/daemon.json.j2 (limited to 'tools/cicdansible/roles/configure_instances/templates/daemon.json.j2') diff --git a/tools/cicdansible/roles/configure_instances/templates/daemon.json.j2 b/tools/cicdansible/roles/configure_instances/templates/daemon.json.j2 new file mode 100644 index 00000000..1c3ca9bb --- /dev/null +++ b/tools/cicdansible/roles/configure_instances/templates/daemon.json.j2 @@ -0,0 +1,3 @@ +{ +"insecure-registries": ["{{ cicd_docker_registry }}"] +} -- cgit 1.2.3-korg