Versions Compared

Key

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

...

  1. Find out the ingress IP for your RIC instance. If you deploy RIC using it/dep deployment script, it should be your host(VM)'s IP.
  2. Install xapp-onboarder CLI

    Code Block
    git clone "https://gerrit.o-ran-sc.org/r/it/dev"
    cd dev/xapp_onboarder
    pip3 install ./


  3. Set up the environment variables for CLI connection

    Code Block
    export CHART_REPO_URL="http://<INGRESS_IP>:32080/helmrepo"
    
    # It should return True if your CLI tool is properly connected to the RIC instance
    cli health


  4. Onboard your xApp. Please refer to xApp descriptor for preparing for the xApp descriptor

    Code Block
    # Make sure that you have the xapp descriptor config file and the schema file at your local file system
    cli onboard CONFIG_FILE_PATH SHCEMA_FILE_PATH

    If onboarding fails, the cli will return you messages that indicate where the errors are in the descriptor.

  5. (OPTIONAL) Download the xApp helm charts

    Code Block
     cli download_helm_chart XAPP_CHART_NAME VERSION --output_path=OUTPUT_PATH



  6. (OPTIONAL) Download the xApp override values.yaml file

    Code Block
    cli download_values_yaml XAPP_CHART_NAME VERSION --output_path=OUTPUT_PATH