Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Download the following script on the VM created using above step.

    Code Block
    titleGet install script on Azure VM
    # this script is based/branched-off the scripts developed for the CD system under LOG-320 - refer to the merges there for updated scripts
    wget https://raw.githubusercontent.com/onapdemo/onap-scripts/master/entrypoint/deploy_onap.sh
    chmod 777 deploy_onap.sh


    The deploy_onap.sh script is a wrapper/utility script that does the following :

    • Executes the ONAP script to install rancher - oom_rancher_setup.sh
    • Clones OOM from Git Hub(https://github.com/onapdemo/oom.git ) that contains the modified image reference in the Values chart. The docker images contain the fixes explained above and are available in docker hub instead of the ONAP nexus
    • Install ONAP based on the modified value charts in oom.

    Note
    This script should be used only for Amsterdam release on Azure.  The script is a wrapper for OOM to install the required images from the docker hub. Once the fixes are merged in ONAP, which could happen in the Casablanca release, it might not be required. The original OOM scripts will be good to install ONAP.
    Please refer to the original ONAP script in https://git.onap.org/logging-analytics/tree/deploy/cd.sh for installing other releases.
  • Execute the below command to deploy ONAP

...