1
0
-1

when I set up full onap Amsterdam, reffered to the next link

http://docs.onap.org/en/amsterdam/guides/onap-developer/settingup/fullonap.html#demo-installing-running-onap

I create all the vms and they seems goes well, but actually when I run 'docker ps' in the vms, the docker didn't run.

then I ran the install shell step by step, but I found when I download the docker image, some images not found.

for example:

I didn't find 'portal-sdk' for 'onap-portal', and I didn't find 'champ-service' and 'crud-service' for 'onap-aai-inst1'

the others for the two vms can be found and pulled well

I also checked the image website https://nexus3.onap.org/#browse/search=keyword%3Dchamp-service and get nothing about the missing images.

did the images deleted by someone? how can I solved this to set up onap?

any help will be appreciated!


thanks

changjun


    CommentAdd your comment...

    3 answers

    1.  
      1
      0
      -1

      It's my mistack to use the master code rather than the amsterdam. I use the old onap_openstack.yaml in 2017.12, however  the version of amsterdam has changed but I didn't find it. Thanks all

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

        This probably doesn't answer your question since you report the image not being on nexus3, but wanted to share since there is a common symptom.

        Today I was trying to develop my OOM Helm chart but was getting the same error you report:  docker image not found.  This error was visible in the kubernetes GUI in the section where the pods are listed.  However, the image was  in nexus3 repo.

        I was able to resolve the problem (thanks to suggestion by sunil unnava) by adding a pull secret in kubernetes, like so:

        kubectl create secret docker-registry onap-docker-registry-key --namespace=onap --docker-server=nexus3.onap.org:10001 --docker-username=docker --docker-password=docker --docker-email=dgl@research.att.com

        The name of the secret, in this case onap-docker-registry-key  matches what is in the Helm Chart:

             imagePullSecrets:
             - name: "{{ .Values.nsPrefix }}-docker-registry-key"

        1. Changjun Wang

          thanks for sharing, but it's not my question. I guess the secret may be qual to "docker login -u docker -p docker nexus3.onap.org:10001"

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

        any suggestions?

          CommentAdd your comment...