[onap-discuss] Dockers are not present in the VMs

2017-08-28 Thread Parvez Basha Shaik
Hi Community,

We were trying to deploy 1.1 community version of ONAP and I see that the 
environment is deployed without any errors and stack was created. But, to our 
surprise I could not see a single docker dropping into the VMs. This is very 
basic issue and we tried to validate the error and it seems like it is not able 
to reach the docker repo from VM through VM_init.sh scripts.
Is it because the repo is not up? Or is it just our teams/network who is facing 
this issue (Amdocs India and Israel) or did we migrate to new repo or is it 
because of the init file permissions?

1. I have raised a ONAP JIRA bug for the same. 
CIMAN-32 I found CI project as 
appropriate place for this to log. Please feel free to assign to the right team 
if its wrongly assigned.
2.

Thanks,
Parvez
Ph: +91 9985300392

This message and the information contained herein is proprietary and 
confidential and subject to the Amdocs policy statement,

you may review at https://www.amdocs.com/about/email-disclaimer 

___
onap-discuss mailing list
onap-discuss@lists.onap.org
https://lists.onap.org/mailman/listinfo/onap-discuss


Re: [onap-discuss] Dockers are not present in the VMs

2017-08-28 Thread Ran Pollak
Hi Parvez,

The issue is a missing text file inside /opt/config, the expected text file is 
"remote_repo.txt", it's supposed to be generated from the heat, for example 
"echo "__external_dns__" > /opt/config/external_dns.txt".

For Clarification this is the issue: we need to add a similar line into the 
heat so that the portal_vm_init.sh(in this example we using the portal) will 
not fail.

PSB the reason:

CODE_REPO=$(cat /opt/config/remote_repo.txt)  --> this file is missing so the 
parameter CODE_REPO doesn't get any value
git clone -b $GERRIT_BRANCH --single-branch $CODE_REPO --> This line fails 
because it is missing COD_REPO

This line is translated to "git clone -b master --single-branch  " and that's 
why the git clone is failing.


From: Parvez Basha Shaik
Sent: Wednesday, August 23, 2017 4:36 PM
To: onap-discuss@lists.onap.org
Cc: Manoj Kapre ; Tomer Oster ; 
Jayant Madavi ; Netaji Surve 
; Kaish Alam ; Nikita Chouhan 
; Ran Pollak ; Stella 
Gorenshtein ; Tariq Gharra ; David 
Swisa ; Borislav Glozman ; 
Eyal Holzman 
Subject: Dockers are not present in the VMs
Importance: High

Hi Community,

We were trying to deploy 1.1 community version of ONAP and I see that the 
environment is deployed without any errors and stack was created. But, to our 
surprise I could not see a single docker dropping into the VMs. This is very 
basic issue and we tried to validate the error and it seems like it is not able 
to reach the docker repo from VM through VM_init.sh scripts.
Is it because the repo is not up? Or is it just our teams/network who is facing 
this issue (Amdocs India and Israel) or did we migrate to new repo or is it 
because of the init file permissions?

1.I have raised a ONAP JIRA bug for the same. 
CIMAN-32 I found CI project as 
appropriate place for this to log. Please feel free to assign to the right team 
if its wrongly assigned.
2.

Thanks,
Parvez
Ph: +91 9985300392

This message and the information contained herein is proprietary and 
confidential and subject to the Amdocs policy statement,

you may review at https://www.amdocs.com/about/email-disclaimer 

___
onap-discuss mailing list
onap-discuss@lists.onap.org
https://lists.onap.org/mailman/listinfo/onap-discuss


Re: [onap-discuss] Dockers are not present in the VMs

2017-08-23 Thread PLATANIA, MARCO (MARCO)
Hello Parvez,

As I just replied to another email, please use the latest heat templates in 
Gerrit.

You are using an old version, which doesn’t include Gerrit repo 
parametrization, as described here: https://jira.onap.org/browse/UCA-33

Thanks,
Marco


From:  on behalf of Ran Pollak 

Date: Wednesday, August 23, 2017 at 10:25 AM
To: "onap-discuss@lists.onap.org" , Parvez Basha 
Shaik 
Subject: Re: [onap-discuss] Dockers are not present in the VMs

Hi Parvez,

The issue is a missing text file inside /opt/config, the expected text file is 
“remote_repo.txt”, it’s supposed to be generated from the heat, for example 
“echo "__external_dns__" > /opt/config/external_dns.txt”.

For Clarification this is the issue: we need to add a similar line into the 
heat so that the portal_vm_init.sh(in this example we using the portal) will 
not fail.

PSB the reason:

CODE_REPO=$(cat /opt/config/remote_repo.txt)  --> this file is missing so the 
parameter CODE_REPO doesn’t get any value
git clone -b $GERRIT_BRANCH --single-branch $CODE_REPO --> This line fails 
because it is missing COD_REPO

This line is translated to “git clone -b master --single-branch  ” and that’s 
why the git clone is failing.


From: Parvez Basha Shaik
Sent: Wednesday, August 23, 2017 4:36 PM
To: onap-discuss@lists.onap.org
Cc: Manoj Kapre >; Tomer Oster 
>; Jayant Madavi 
>; Netaji Surve 
>; Kaish Alam 
>; Nikita Chouhan 
>; Ran Pollak 
>; Stella Gorenshtein 
>; Tariq Gharra 
>; David Swisa 
>; Borislav Glozman 
>; Eyal Holzman 
>
Subject: Dockers are not present in the VMs
Importance: High

Hi Community,

We were trying to deploy 1.1 community version of ONAP and I see that the 
environment is deployed without any errors and stack was created. But, to our 
surprise I could not see a single docker dropping into the VMs. This is very 
basic issue and we tried to validate the error and it seems like it is not able 
to reach the docker repo from VM through VM_init.sh scripts.
Is it because the repo is not up? Or is it just our teams/network who is facing 
this issue (Amdocs India and Israel) or did we migrate to new repo or is it 
because of the init file permissions?

1.   I have raised a ONAP JIRA bug for the same. 
CIMAN-32
 I found CI project as appropriate place for this to log. Please feel free to 
assign to the right team if its wrongly assigned.
2.

Thanks,
Parvez
Ph: +91 9985300392

This message and the information contained herein is proprietary and 
confidential and subject to the Amdocs policy statement,
you may review at 
https://www.amdocs.com/about/email-disclaimer
___
onap-discuss mailing list
onap-discuss@lists.onap.org
https://lists.onap.org/mailman/listinfo/onap-discuss


Re: [onap-discuss] Dockers are not present in the VMs

2017-08-23 Thread Ran Pollak
Hi Parvez,

The issue is a missing text file inside /opt/config, the expected text file is 
"remote_repo.txt", it's supposed to be generated from the heat, for example 
"echo "__external_dns__" > /opt/config/external_dns.txt".

For Clarification this is the issue: we need to add a similar line into the 
heat so that the portal_vm_init.sh(in this example we using the portal) will 
not fail.

PSB the reason:

CODE_REPO=$(cat /opt/config/remote_repo.txt)  --> this file is missing so the 
parameter CODE_REPO doesn't get any value
git clone -b $GERRIT_BRANCH --single-branch $CODE_REPO --> This line fails 
because it is missing COD_REPO

This line is translated to "git clone -b master --single-branch  " and that's 
why the git clone is failing.


From: Parvez Basha Shaik
Sent: Wednesday, August 23, 2017 4:36 PM
To: onap-discuss@lists.onap.org
Cc: Manoj Kapre >; Tomer Oster 
>; Jayant Madavi 
>; Netaji Surve 
>; Kaish Alam 
>; Nikita Chouhan 
>; Ran Pollak 
>; Stella Gorenshtein 
>; Tariq Gharra 
>; David Swisa 
>; Borislav Glozman 
>; Eyal Holzman 
>
Subject: Dockers are not present in the VMs
Importance: High

Hi Community,

We were trying to deploy 1.1 community version of ONAP and I see that the 
environment is deployed without any errors and stack was created. But, to our 
surprise I could not see a single docker dropping into the VMs. This is very 
basic issue and we tried to validate the error and it seems like it is not able 
to reach the docker repo from VM through VM_init.sh scripts.
Is it because the repo is not up? Or is it just our teams/network who is facing 
this issue (Amdocs India and Israel) or did we migrate to new repo or is it 
because of the init file permissions?

1.I have raised a ONAP JIRA bug for the same. 
CIMAN-32 I found CI project as 
appropriate place for this to log. Please feel free to assign to the right team 
if its wrongly assigned.
2.

Thanks,
Parvez
Ph: +91 9985300392

This message and the information contained herein is proprietary and 
confidential and subject to the Amdocs policy statement,

you may review at https://www.amdocs.com/about/email-disclaimer 

___
onap-discuss mailing list
onap-discuss@lists.onap.org
https://lists.onap.org/mailman/listinfo/onap-discuss