diff options
author | Maciej Wereski <m.wereski@partner.samsung.com> | 2021-07-28 13:41:01 +0000 |
---|---|---|
committer | Morgan Richomme <morgan.richomme@orange.com> | 2021-08-24 13:41:02 +0000 |
commit | 7bea94213cbafee7214d925f34ed9d7b057cc5ba (patch) | |
tree | 7f4f54bf81ffb52840b6aac0644db82fce642f8b /deployment/noheat | |
parent | c3c919875dfd958c2e6d7ffdd3043dc7310289ab (diff) |
noheat: deploy ONAP
Issue-ID: INT-1601
Signed-off-by: Maciej Wereski <m.wereski@partner.samsung.com>
Change-Id: Iaa87b8b85584a38ea4170f48117ac154f24e0c6c
Diffstat (limited to 'deployment/noheat')
-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" |