summaryrefslogtreecommitdiffstats
path: root/ansible/roles/nexus/tasks/runtime-populate.yml
diff options
context:
space:
mode:
authorMichal Zegan <m.zegan@samsung.com>2018-12-19 11:51:26 +0100
committerMichal Zegan <m.zegan@samsung.com>2018-12-19 11:51:26 +0100
commit3a7e073323bf1fa24e9f45bd849fb7657f20e859 (patch)
treedeb476c420672c36d1ef15d513d5cc729c13454b /ansible/roles/nexus/tasks/runtime-populate.yml
parent6d14adbfcc125d3a17dd64ef1da0e3c2df27853f (diff)
Add nexus ansible role
This role deploys the internal nexus used as offline source of docker images/npm packages for onap. Change-Id: Iaf398eb03614749d2b3c100c241726144ccae1a0 Issue-ID: OOM-1551 Signed-off-by: Michal Zegan <m.zegan@samsung.com>
Diffstat (limited to 'ansible/roles/nexus/tasks/runtime-populate.yml')
-rw-r--r--ansible/roles/nexus/tasks/runtime-populate.yml12
1 files changed, 12 insertions, 0 deletions
diff --git a/ansible/roles/nexus/tasks/runtime-populate.yml b/ansible/roles/nexus/tasks/runtime-populate.yml
new file mode 100644
index 00000000..e22b650e
--- /dev/null
+++ b/ansible/roles/nexus/tasks/runtime-populate.yml
@@ -0,0 +1,12 @@
+---
+- name: Find images to be inserted into nexus in runtime
+ find:
+ paths: "{{ aux_data_path }}"
+ patterns: '*.tar'
+ register: tar_images
+
+# WA: block of tasks cant be executed in iterations
+# need to iterate over those tasks in include
+- include: "insert-images.yml"
+ with_items: "{{ tar_images.files }}"
+