diff options
Diffstat (limited to 'deployment/noheat/cluster-rke')
-rw-r--r-- | deployment/noheat/cluster-rke/ansible/create.yml | 5 | ||||
-rw-r--r-- | deployment/noheat/cluster-rke/ansible/roles/oom/tasks/main.yml | 10 |
2 files changed, 15 insertions, 0 deletions
diff --git a/deployment/noheat/cluster-rke/ansible/create.yml b/deployment/noheat/cluster-rke/ansible/create.yml index 9a2943b12..3ba4a8381 100644 --- a/deployment/noheat/cluster-rke/ansible/create.yml +++ b/deployment/noheat/cluster-rke/ansible/create.yml @@ -46,3 +46,8 @@ gather_facts: false roles: - role: deps +- name: Deploy sm-onap + hosts: operator0 + gather_facts: false + roles: + - role: oom diff --git a/deployment/noheat/cluster-rke/ansible/roles/oom/tasks/main.yml b/deployment/noheat/cluster-rke/ansible/roles/oom/tasks/main.yml new file mode 100644 index 000000000..58a68b8e9 --- /dev/null +++ b/deployment/noheat/cluster-rke/ansible/roles/oom/tasks/main.yml @@ -0,0 +1,10 @@ +- name: Build OOM charts + make: + chdir: "{{ oom_dir }}/kubernetes" + target: all + params: + SKIP_LINT: "TRUE" + +- name: Deploy sm-onap + command: + cmd: "helm deploy onap local/onap --namespace onap --create-namespace --set global.masterPassword=scrtPasswd -f {{ oom_dir }}/kubernetes/onap/resources/overrides/sm-onap.yaml" |