1
0
-1

HI,

AAI is up and running in casablanca release but the url is not working for invoking the GUI as well as to create customers using cli commands.Please let me know the solution for this or incase there are any other alternatives for vnf onboarding without aai.


root@kmaster:/opt# kubectl -n onap get services|grep aai
aai                                NodePort       10.233.6.19   <none>                                 8080:30232/TCP,8443:30233/TCP                                 19d
aai-babel                          NodePort       10.233.3.18   <none>                                 9516:30279/TCP                                                19d
aai-cassandra                      ClusterIP      None            <none>                                 9042/TCP,9160/TCP,61621/TCP                                   19d
aai-champ                          NodePort       10.233.5.4     <none>                                 9522:30278/TCP                                                19d
aai-crud-service                   NodePort       10.233.5.14   <none>                                 9520:30268/TCP                                                19d
aai-elasticsearch                  ClusterIP      None            <none>                                 9200/TCP                                                      19d
aai-graphadmin                     ClusterIP      None            <none>                                 8449/TCP,5005/TCP                                             19d
aai-modelloader                    NodePort       10.233.1.21    <none>                                 8080:30210/TCP,8443:30229/TCP                                 19d
aai-resources                      ClusterIP      None            <none>                                 8447/TCP,5005/TCP                                             19d
aai-search-data                    ClusterIP      None            <none>                                 9509/TCP                                                      19d
aai-sparky-be                      NodePort       10.233.3.23   <none>                                 9517:30220/TCP                                                19d
aai-spike                          NodePort       10.233.14.11   <none>                                 9518:30239/TCP                                                19d
aai-traversal                      ClusterIP      None            <none>                                 8446/TCP,5005/TCP                                             19d
pomba-aaictxbuilder                ClusterIP      10.233.2.18    <none>                                 9530/TCP                                                      19d


cutomer create command as per steps given at https://onap.readthedocs.io/en/latest/submodules/cli.git/docs/user_guide_pnf_on_boarding.html

customer-create -u AAI -p AAI -m https://10.233.6.19:8443 --customer-name testCustomer --subscriber-name EC


    CommentAdd your comment...

    2 answers

    1.  
      1
      0
      -1

      Are you using the 3.0.2 Casablanca Maintenance Release for your testing?  The certificates in the original Casablanca release are expired.

      1. Gayathri G

        Its 3.0.0 casablanca.Please let me know whether to upgrade to 3.0.2 is mandatory

      CommentAdd your comment...
    2.  
      1
      0
      -1

      First you will need to Exec into a pod within your ONAP deployment's namespace, using this command: "kubectl -n onap exec -it <PODNAME> sh"


      And then in order to input customer data I use this command: 

      curl -k -X PUT --user VID:VID -H "Accept: application/json" -H "Content-Type: application/json" -H "X-TransactionId: TEST" -H "X-FromAppId: TEST" https://aai.onap:8443/aai/v14/business/customers/customer/testCustomer -d '{"global-customer-id": "testCustomer","subscriber-name": "SubscriberName","subscriber-type": "INFRA"}'



        CommentAdd your comment...