diff options
Diffstat (limited to 'deployment')
-rw-r--r-- | deployment/noheat/cluster-rke/ansible/create.yml | 8 | ||||
-rw-r--r-- | deployment/noheat/cluster-rke/ansible/group_vars/all.yml.sm-onap | 1 |
2 files changed, 9 insertions, 0 deletions
diff --git a/deployment/noheat/cluster-rke/ansible/create.yml b/deployment/noheat/cluster-rke/ansible/create.yml index 49a48d4c2..329d6b84d 100644 --- a/deployment/noheat/cluster-rke/ansible/create.yml +++ b/deployment/noheat/cluster-rke/ansible/create.yml @@ -29,3 +29,11 @@ hosts: operator0 roles: - role: setup_k8s +- name: Download OOM + hosts: operator0 + tasks: + - name: Clone OOM + git: + repo: "https://git.onap.org/oom" + dest: "{{ oom_dir }}" + version: "master" diff --git a/deployment/noheat/cluster-rke/ansible/group_vars/all.yml.sm-onap b/deployment/noheat/cluster-rke/ansible/group_vars/all.yml.sm-onap index 2810d2d73..406f91559 100644 --- a/deployment/noheat/cluster-rke/ansible/group_vars/all.yml.sm-onap +++ b/deployment/noheat/cluster-rke/ansible/group_vars/all.yml.sm-onap @@ -2,3 +2,4 @@ nexus: address: 199.204.45.137 port: 10001 +oom_dir: "{{ ansible_user_dir }}/oom" |