Re: [onap-discuss] Stabilized the ONAP master branch

2017-08-23 Thread LUND, CARSTEN (CARSTEN)


Hi,

To debug these issues, please login to the DCAE VM and run the following script 
to give me some debugging information about the current state of your 
deployment.

Also the logs/error.log may contain specifics about the endpoint. It seems to 
be localhost:9998 which is the controller process.

Carsten


#!/bin/bash

PW=$(grep OPENSTACK-PASSWORD /opt/app/dcae-controller/config.yaml | sed 
s/OPENSTACK-PASSWORD:.//)

set -e

echo === config.yaml
cat /opt/app/dcae-controller/config.yaml | sed "s/$PW/XX/"


echo === docker
docker images
docker ps -a

ID=$(docker ps | grep dcae-controller: | cut -c1-12)


echo === docker logs
docker logs $ID 2>&1

echo === dcae-controller.sh.log
docker exec $ID cat 
/opt/app/dcae-controller-platform-server/logs/dcae-controller.sh.log
echo === reports
docker exec -e GROOVY_HOME=/opt/app/groovy-2.4.6 $ID 
/opt/app/dcae-controller-platform-server/bin/dcae-controller.sh report -n 
/reports/dcae/vms
docker exec -e GROOVY_HOME=/opt/app/groovy-2.4.6 $ID 
/opt/app/dcae-controller-platform-server/bin/dcae-controller.sh report -n 
/reports/dcae/service-instances

echo === logs err
docker exec $ID cat 
/opt/app/dcae-controller-platform-server/logs/controller-platform-server-controller.err
 | head -1 | sed "s/$PW/XX/"
echo === logs out
docker exec $ID cat 
/opt/app/dcae-controller-platform-server/logs/controller-platform-server-controller.out
 | head -1

From: Gaurav Gupta (c) [mailto:guptagau...@vmware.com]
Sent: Wednesday, August 23, 2017 1:32 PM
To: Ran Pollak ; LUND, CARSTEN (CARSTEN) 

Cc: onap-discuss@lists.onap.org; onap-discuss-boun...@lists.onap.org; Ran 
Pollak ; Josef Reisinger 
Subject: Re: [onap-discuss] Stabilized the ONAP master branch

Ran , Carsten

on Further analysis of DCAE Deployment failure . We saw following error for all 
our DCAE VM after running the deploy-service-instance
bin/dcae-controller.sh deploy-service-instance -i $ZONE -s vm-docker-host-1
  . but the issue is - these error do not have the information /Log indicating 
to Which IP Address and Port a socket connection is being setup . Can this be 
corrected to at least have IP Address and Port Number printed in the Logs ..

java.net.SocketTimeoutException: Read timed out

at java.net.SocketInputStream.socketRead0(Native Method)

at java.net.SocketInputStream.read(SocketInputStream.java:153)

at java.net.SocketInputStream.read(SocketInputStream.java:122)

at java.io.BufferedInputStream.fill(BufferedInputStream.java:235)

at java.io.BufferedInputStream.read1(BufferedInputStream.java:275)

at java.io.BufferedInputStream.read(BufferedInputStream.java:334)

at sun.net.www.http.HttpClient.parseHTTPHeader(HttpClient.java:707)

at sun.net.www.http.HttpClient.parseHTTP(HttpClient.java:650)

at 
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection.java:1371)

at java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:468)

at 
org.openecomp.ncomp.sirius.manager.JavaHttpClient.httpBinaryTransaction(JavaHttpClient.java:168)

at 
org.openecomp.ncomp.sirius.manager.AbstractClient.httpStringTransaction(AbstractClient.java:219)

at 
org.openecomp.ncomp.sirius.manager.AbstractClient.httpJsonTransaction(AbstractClient.java:205)

at 
org.openecomp.ncomp.sirius.manager.AbstractClient.operationPath2(AbstractClient.java:65)

at 
org.openecomp.ncomp.sirius.manager.AbstractClient.operation(AbstractClient.java:97)

at org.openecomp.ncomp.sirius.manager.AbstractClient$operation.call(Unknown 
Source)

at 
org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:45)

at 
org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:110)

at 
org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:146)

at 
org.openecomp.ncomp.sirius.manager.console.Console.operation(Console.groovy:107)

at org.openecomp.ncomp.sirius.manager.console.Console.operation(Console.groovy)

at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)

at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)

at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)

at java.lang.reflect.Method.invoke(Method.java:606)

at 
org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite$PogoCachedMethodSiteNoUnwrap.invoke(PogoMetaMethodSite.java:187)

at 
org.codehaus.groovy.runtime.callsite.PogoMetaMethodSite.call(PogoMetaMethodSite.java:68)

at 
org.codehaus.groovy.runtime.callsite.CallSiteArray.defaultCall(CallSiteArray.java:45)

at 
org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:110)

at 
org.codehaus.groovy.runtime.callsite.AbstractCallSite.call(AbstractCallSite.java:138)

at deploy-service-instance.run(deploy-service-instance.groovy:50)

at groovy.lang.GroovyShell.runScriptOrMainOrTestOrRunnable(GroovyShell.java:261)

at groovy.lang.GroovyShell.run(GroovyShell.java:522)

at groovy.lang.GroovyShe

Re: [onap-discuss] [DCAE] DCAE 1.1 issues

2017-08-22 Thread LUND, CARSTEN (CARSTEN)


Hi,

To debug these issues, please login to the DCAE VM and run the following script 
to give me some debugging information about the current state of your 
deployment.

But from what is below it seems your are having a wrong setup for Openstack.

Carsten


#!/bin/bash

PW=$(grep OPENSTACK-PASSWORD /opt/app/dcae-controller/config.yaml | sed 
s/OPENSTACK-PASSWORD:.//)

set -e

echo === config.yaml
cat /opt/app/dcae-controller/config.yaml | sed "s/$PW/XX/"


echo === docker
docker images
docker ps -a

ID=$(docker ps | grep dcae-controller: | cut -c1-12)


echo === docker logs
docker logs $ID 2>&1

echo === dcae-controller.sh.log
docker exec $ID cat 
/opt/app/dcae-controller-platform-server/logs/dcae-controller.sh.log
echo === reports
docker exec -e GROOVY_HOME=/opt/app/groovy-2.4.6 $ID 
/opt/app/dcae-controller-platform-server/bin/dcae-controller.sh report -n 
/reports/dcae/vms
docker exec -e GROOVY_HOME=/opt/app/groovy-2.4.6 $ID 
/opt/app/dcae-controller-platform-server/bin/dcae-controller.sh report -n 
/reports/dcae/service-instances

echo === logs err
docker exec $ID cat 
/opt/app/dcae-controller-platform-server/logs/controller-platform-server-controller.err
 | head -1 | sed "s/$PW/XX/"
echo === logs out
docker exec $ID cat 
/opt/app/dcae-controller-platform-server/logs/controller-platform-server-controller.out
 | head -1

From: onap-discuss-boun...@lists.onap.org 
[mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of Gaurav Gupta (c)
Sent: Monday, August 21, 2017 11:42 PM
To: bharath thiruveedula ; onap-discuss@lists.onap.org
Subject: Re: [onap-discuss] [DCAE] DCAE 1.1 issues


Bharath



Can you check the following thread . 
https://lists.onap.org/pipermail/onap-discuss/2017-July/002414.html
 .

One more info needed - what is your setup like .(Which Openstack Version and 
other related details )

with best regards
gaurav

From: 
onap-discuss-boun...@lists.onap.org 
mailto:onap-discuss-boun...@lists.onap.org>>
 on behalf of bharath thiruveedula 
mailto:bharath_...@hotmail.com>>
Sent: 22 August 2017 01:13
To: onap-discuss@lists.onap.org
Subject: [onap-discuss] [DCAE] DCAE 1.1 issues

Hi,

I am trying to setup closed loop using vFW demo with openstack as VIM. I am 
setting up DCAE 1.1 version and maintaining other components in release-1.0.0 
version. But while setting DCAE 1.1 I am facing the following error.

"Caught: org.openecomp.ncomp.sirius.manager.Jetty8ClientException: HTTP Request 
False:  URL: 
http://localhost:9998/resources/services/vm-docker-host-1
 code:400 msg.REQUEST-FAILED-UNDEPLOY-4001W REQUEST-FAILED-DELETESERVER-40001W 
| Absolute URI:null/services"

Seems like the error raised from the line 
https://gerrit.onap.org/r/gitweb?p=dcae/demo.git;a=blob;f=dcae-demo-controller/src/main/docker-build/controller-startup.sh;h=9e284bb65df4aa81ec860f00631d19a2ba4e3ec0;hb=refs/heads/master#l35.
 I couldn't understand what is happening in the groovy script.
Finally DCAE-C-Container logs as below:
waiting: object does not exists 
/openstack/locations/ZONE/projects/OPEN-ECOMP/keypairs/onap1_key_cW8s_dcae: 
waited 48 milliseconds

Anyone faced the above issue, any help would be much appreciated.

Best Regards
Bharath T
___
onap-discuss mailing list
onap-discuss@lists.onap.org
https://lists.onap.org/mailman/listinfo/onap-discuss


Re: [onap-discuss] DCAE controller-startup.sh fails and throws error

2017-07-20 Thread LUND, CARSTEN (CARSTEN)
You are right the URL looks wrong, but Openstack can be setup so many ways that 
I would not know what is right or wrong.

Arun, try to work with CURL to get a request that works to this API when we can 
determine how the config.yaml need to look.

Carsten

From: Josef Reisinger [mailto:josef.reisin...@de.ibm.com]
Sent: Thursday, July 20, 2017 7:41 AM
To: LUND, CARSTEN (CARSTEN) 
Cc: Arun Arora ; onap-discuss@lists.onap.org; PLATANIA, 
MARCO (MARCO) 
Subject: RE: [onap-discuss] DCAE controller-startup.sh fails and throws error

Carsten, thanks for the pointer. Seems to me the same issue in the JIRA case... 
a wrong keystone URL? At least the one in this mail string and the one in JIRA 
are structure-wise different from mine, for which I can say it works :-)

Mit freundlichen Grüßen / Kind regards
Josef Reisinger
When wisdom comes to call, there's nobody listening at all - Pendragon / Man Of 
Nomadic Traits

Certified IT-Architect Telecommunications
IBM Certified Telecommunications Industry ITA
Global Telecommunications, Media and Entertainment Industry
Lehrbeauftragter an der Hochschule Fresenius

IBM Deutschland
Godesberger Allee 127
53175 Bonn Beuel

Phone:+49 151 1426 4559
Mobile:  +49-(0) 151 1426 4559
E-Mail:  josef.reisin...@de.ibm.com<mailto:josef.reisin...@de.ibm.com>


IBM Deutschland GmbH / Vorsitzender des Aufsichtsrats: Martin Jetter
Geschäftsführung: Martina Koederitz (Vorsitzende), Nicole Reimer, Norbert 
Janzen, Dr. Christian Keller, Ivo Koerner, Stefan Lutz
Sitz der Gesellschaft: Ehningen / Registergericht: Amtsgericht Stuttgart, HRB 
14562 / WEEE-Reg.-Nr. DE 99369940






From:    "LUND, CARSTEN  (CARSTEN)" 
mailto:l...@research.att.com>>
To:Josef Reisinger 
mailto:josef.reisin...@de.ibm.com>>, 
"onap-discuss@lists.onap.org<mailto:onap-discuss@lists.onap.org>" 
mailto:onap-discuss@lists.onap.org>>
Cc:Arun Arora mailto:arun_ar...@outlook.com>>, 
"PLATANIA, MARCO (MARCO)" 
mailto:plata...@research.att.com>>
Date:20.07.2017 13:15
Subject:RE: [onap-discuss] DCAE controller-startup.sh fails and throws 
error




Josef,

I should have added comment to this email thread too, but I added some comment 
to the JIRA 
https://jira.onap.org/browse/DCAEGEN2-69<https://urldefense.proofpoint.com/v2/url?u=https-3A__jira.onap.org_browse_DCAEGEN2-2D69&d=DwMFbw&c=LFYZ-o9_HUMeMTSQicvjIg&r=G7P6ajmMIva8VFVj0kle3avtPgyVjBbnnM53TmeR0u4&m=37zZk1LMSyG6Mdxc2xJ1FRgJQRzBircCh-AKnudig5M&s=x76H3bgjInUYRUNthYeVUoqDhVxgzSaGofw4cHM4lG8&e=>

In fact for Arun the REST calls to Openstack goes through but something is the 
Keystone API call is wrong, password or tenantId.

Carsten

From: Josef Reisinger [mailto:josef.reisin...@de.ibm.com]
Sent: Thursday, July 20, 2017 4:44 AM
To: onap-discuss@lists.onap.org<mailto:onap-discuss@lists.onap.org>
Cc: Arun Arora mailto:arun_ar...@outlook.com>>; LUND, 
CARSTEN (CARSTEN) mailto:l...@research.att.com>>; 
PLATANIA, MARCO (MARCO) 
mailto:plata...@research.att.com>>
Subject: Re: [onap-discuss] DCAE controller-startup.sh fails and throws error

Arun,

I visited the docker logs of the docker container in the DCAE controller  to 
compare them with yours. As far as I can see, I get the same "File not found" 
exceptions for example
exception: OPENECOMP-DEMO-ZONE/cdap-instances/cdap-helloworld.yaml class 
java.nio.file.NoSuchFileException
Same for the jar files
error: cp: cannot stat '/opt/app/dcae-*-jars/lib/*.jar': No such file or 
directory
cp: cannot stat '/opt/app/dcae-*-model/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/dcae-*-manager/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/dcae-*-adaptor/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-jars/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-model/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-manager/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-adaptor/lib/*.jar': No such file or directory
and even the same for
error: Loading runtime factory: 
org.openecomp.dcae.controller.service.servers.docker.DcaeDockerFactory

I ignored these errors in the very beginning and well, DCAE works for me :-)

This line
bin/dcae-controller.sh deploy-user -l $ZONE -p ONAP -u $OPENSTACK_KEYNAME
Caught: org.openecomp.ncomp.sirius.manager.Jetty8ClientException: HTTP Request 
Failed: URL: 
http://localhost:9998/resources/services/vm-postgresql<https://urldefense.proofpoint.com/v2/url?u=http-3A__localhost-3A9998_resources_services_vm-2Dpostgresql&d=DwMFbw&c=LFYZ-o9_HUMeMTSQicvjIg&r=G7P6ajmMIva8VFVj0kle3avtPgyVjBbnnM53TmeR0u4&m=7lUV5IXedbMSIDQDeew5ss1EWgJVm6PnomJ8DgCVPao&s=Ax6mE_vehIi4wklP-g4ticgoVH5YKrj6NkmTaCYQW_

Re: [onap-discuss] DCAE controller-startup.sh fails and throws error

2017-07-20 Thread LUND, CARSTEN (CARSTEN)
Josef,

I should have added comment to this email thread too, but I added some comment 
to the JIRA https://jira.onap.org/browse/DCAEGEN2-69

In fact for Arun the REST calls to Openstack goes through but something is the 
Keystone API call is wrong, password or tenantId.

Carsten

From: Josef Reisinger [mailto:josef.reisin...@de.ibm.com]
Sent: Thursday, July 20, 2017 4:44 AM
To: onap-discuss@lists.onap.org
Cc: Arun Arora ; LUND, CARSTEN (CARSTEN) 
; PLATANIA, MARCO (MARCO) 
Subject: Re: [onap-discuss] DCAE controller-startup.sh fails and throws error

Arun,

I visited the docker logs of the docker container in the DCAE controller  to 
compare them with yours. As far as I can see, I get the same "File not found" 
exceptions for example
exception: OPENECOMP-DEMO-ZONE/cdap-instances/cdap-helloworld.yaml class 
java.nio.file.NoSuchFileException
Same for the jar files
error: cp: cannot stat '/opt/app/dcae-*-jars/lib/*.jar': No such file or 
directory
cp: cannot stat '/opt/app/dcae-*-model/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/dcae-*-manager/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/dcae-*-adaptor/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-jars/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-model/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-manager/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-adaptor/lib/*.jar': No such file or directory
and even the same for
error: Loading runtime factory: 
org.openecomp.dcae.controller.service.servers.docker.DcaeDockerFactory

I ignored these errors in the very beginning and well, DCAE works for me :-)

This line
bin/dcae-controller.sh deploy-user -l $ZONE -p ONAP -u $OPENSTACK_KEYNAME
Caught: org.openecomp.ncomp.sirius.manager.Jetty8ClientException: HTTP Request 
Failed: URL: 
http://localhost:9998/resources/services/vm-postgresql<https://urldefense.proofpoint.com/v2/url?u=http-3A__localhost-3A9998_resources_services_vm-2Dpostgresql&d=DwMFbw&c=LFYZ-o9_HUMeMTSQicvjIg&r=G7P6ajmMIva8VFVj0kle3avtPgyVjBbnnM53TmeR0u4&m=7lUV5IXedbMSIDQDeew5ss1EWgJVm6PnomJ8DgCVPao&s=Ax6mE_vehIi4wklP-g4ticgoVH5YKrj6NkmTaCYQW_E&e=>code:400
 msg:REQUEST-FAILED-UNDEPLOY-4001W REQUEST-FAILED-DELETESERVER-4001W !Absolute 
URI: null/servers
is the first real error and remember to have seen this "null" in the URI once 
also.. but I didn't write thesolution down, so I need to make some assumptions 
here. I think it has to do with the communication with the openstack controller.
What I remember is the usage of the default host name 'controller' for the 
controller host. Not a good choice btw, but we did it.

To verify this is the correct path, could you post the content of 
/opt/config/keystone_url.txt on the dcae controller and the output of the 
command "openstack endpoint list" on the openstack controller? Or, likewise, 
check whether there is a host name in either of them? If there is a hostname, 
can it be resolved from the container in the  DCAE controller, i.e. with the 
command
docker exec -it dcaestartupvmcontroller_dcae-controller_1 ping controller


Mit freundlichen Grüßen / Kind regards
Josef Reisinger
When wisdom comes to call, there's nobody listening at all - Pendragon / Man Of 
Nomadic Traits

Certified IT-Architect Telecommunications
IBM Certified Telecommunications Industry ITA
Global Telecommunications, Media and Entertainment Industry
Lehrbeauftragter an der Hochschule Fresenius

IBM Deutschland
Godesberger Allee 127
53175 Bonn Beuel

Phone:+49 151 1426 4559
Mobile:  +49-(0) 151 1426 4559
E-Mail:  josef.reisin...@de.ibm.com<mailto:josef.reisin...@de.ibm.com>


IBM Deutschland GmbH / Vorsitzender des Aufsichtsrats: Martin Jetter
Geschäftsführung: Martina Koederitz (Vorsitzende), Nicole Reimer, Norbert 
Janzen, Dr. Christian Keller, Ivo Koerner, Stefan Lutz
Sitz der Gesellschaft: Ehningen / Registergericht: Amtsgericht Stuttgart, HRB 
14562 / WEEE-Reg.-Nr. DE 99369940






From:"Arun Arora (c)" 
mailto:aroraa...@vmware.com>>
To:Arun Arora mailto:arun_ar...@outlook.com>>, 
"LUND, CARSTEN  (CARSTEN)" 
mailto:l...@research.att.com>>, "PLATANIA, MARCO  
(MARCO)" mailto:plata...@research.att.com>>
Cc:"onap-discuss@lists.onap.org<mailto:onap-discuss@lists.onap.org>" 
mailto:onap-discuss@lists.onap.org>>
Date:20.07.2017 09:43
Subject:Re: [onap-discuss] DCAE controller-startup.sh fails and throws 
error
Sent by:
onap-discuss-boun...@lists.onap.org<mailto:onap-discuss-boun...@lists.onap.org>




Forgot to attach the logs. Sending now.

Thanks,
Arun


From: Arun Arora (c)
Sent: Thursday, 

Re: [onap-discuss] DCAE controller-startup.sh fails and throws error

2017-07-19 Thread LUND, CARSTEN (CARSTEN)
I noticed this from the log

+ export 'ZONE=NorthIndia '
+ ZONE='NorthIndia '

Note the space after NorthIndia.

Please remove from config.yaml and redeploy.

Carsten

From: onap-discuss-boun...@lists.onap.org 
[mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of Arun Arora (c)
Sent: Wednesday, July 19, 2017 9:29 AM
To: MAJHI, TAPAN ; Josef Reisinger 
; FREEMAN, BRIAN D ; 
onap-discuss@lists.onap.org
Subject: Re: [onap-discuss] DCAE controller-startup.sh fails and throws error


Hi All,



Regarding the issue I am facing for DCAE VMs deployment, the immediate blocker 
for me is required files and directories are not found (like cdap-instances, 
docker-instances, docker-instances). I am suspecting these directories are 
created in run-time as I searched them in the DCAA VM, Container and DCAE Demo 
Gittree but couldn’t find them.

Attaching the execution logs for your reference. All errors for missing files, 
directories are mentioned as exceptions in the attached execution log.



1)  I tried with rel-1.0 and rel-1.1 but both gave same errors

2)  Also tried with both 2-NIC and 1-NIC-FLOATING-IPS. No luck in this as 
well

3)  Currently using 1-NIC-FLOATING-IPS

4)  Verified config.yaml parameters with all configurations and 
modifications in 
https://jira.onap.org/browse/DCAEGEN2-69
 and 
https://jira.onap.org/browse/DCAEGEN2-7

5)  Found some more config issues in the config.yaml and fixed

6)  Finally, made sure the execution is going as per the sequence mentioned 
in 
https://wiki.onap.org/display/DW/DCAE+Controller+Development+Guide



The problem happens with the following command execution done as part of ‘make 
gen-config sync restart’

java -cp 'lib/*' 
org.openecomp.dcae.controller.operation.utils.GenControllerConfiguration $ZONE 
. GITLINK OPENECOMP-DEMO



I am not able to find the directories/ files listed in the errors.



Any pointers from anyone who have fixed these issues?

@Tapan, @Joseph, @Brian, special mention to you for any pointers to resolve 
this issue, as you have finished the deployment (Congrats BTW :) )





Thanks & Regards,

Arun Arora



PS: Wanted to mention again, I am deploying on VIO (VMware Integrated OpenStack)









From: Kanagaraj Manickam [mailto:kanagaraj.manic...@huawei.com]
Sent: Tuesday, July 18, 2017 8:29 PM
To: Arun Arora (c) mailto:aroraa...@vmware.com>>; 
onap-discuss@lists.onap.org
Subject: RE: DCAE controller-startup.sh fails and throws error



We also faced this issue and created an JIRA ID: DCAEGEN2-69



And  we tried to provided required conf and logs. Please let us know if 
additional details required.



Thanks.



Regards

Kanagaraj M



***
本邮件及其附件含有华为公司的保密信息,仅限于发送给上面地址中列出的个人或群组。禁止任何其他人以任何形式使用(包括但不限于全部或部分地泄露、复制、或散发)本邮件中的信息。如果您错收了本邮件,请您立即电话或邮件通知发件人并删除本邮件!**

***
This e-mail and its attachments contain confidential information from HUAWEI, 
which is intended only for the person  or entity whose address is listed above. 
Any use of the information contained herein in any way (including, but not   
limited to, total or partial disclosure, reproduction, or dissemination) by 
persons other than the intended recipient(s) is  prohibited. If you receive 
this e-mail in error, please notify the sender by phone or email immediately 
and delete it!
***



From: 
onap-discuss-boun...@lists.onap.org 
[mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of Arun Arora (c)
Sent: Tuesday, July 18, 2017 7:47 PM
To: onap-discuss@lists.onap.org
Subject: [onap-discuss] DCAE controller-startup.sh fails and throws error



Hi All,



We are trying to deploy ONAP on VIO. Using the following YAML and env files:

https://gerrit.onap.org/r/gitweb?p=demo.git;a=blob;f=heat/OpenECOMP/onap_opensta

Re: [onap-discuss] DCAE Health-Check is failing

2017-07-04 Thread LUND, CARSTEN (CARSTEN)
From the VM try to use ‘docker logs’

From inside the container.

Fairly clean log:
/opt/app/dcae-controller-platform-server/logs/error.log

More debugging with trace of all OpenStack rest call, but lot of stuff.
/opt/app/dcae-controller-platform-server/logs/*.err

Carsten

From: Subhash Kumar Singh [mailto:subhash.kumar.si...@huawei.com]
Sent: Tuesday, July 04, 2017 10:22 AM
To: PLATANIA, MARCO (MARCO) ; LUND, CARSTEN 
(CARSTEN) ; onap-discuss@lists.onap.org
Cc: Kanagaraj Manickam 
Subject: RE: [onap-discuss] DCAE Health-Check is failing

Hello Marco and Carsten,

Now, we are able to associate floating IP address for DCAE VMs by allocating 
the floating IP beforehand. We can see the floating assigned to the VMs.

Still, we are not able to create all the 5 VMs for the DCAE. As per our 
investigation, we can see yaml files for these VMs in 
“/opt/app/dcae-controller-platform-server/GITLINK/OPENCOMP-DEMO-ZONE/chef-repo-gen/files”.
 But we are not able to find any logs to spot the problem.

Could you please suggest us any log/configuration file, where we should check 
to find out the reason for this issue.

--
Regards,
Subhash Kumar Singh


From: PLATANIA, MARCO (MARCO) [mailto:plata...@research.att.com]
Sent: Friday, June 30, 2017 6:44 PM
To: Subhash Kumar Singh 
mailto:subhash.kumar.si...@huawei.com>>; LUND, 
CARSTEN (CARSTEN) mailto:l...@research.att.com>>; 
onap-discuss@lists.onap.org<mailto:onap-discuss@lists.onap.org>
Cc: Kanagaraj Manickam 
mailto:kanagaraj.manic...@huawei.com>>
Subject: Re: [onap-discuss] DCAE Health-Check is failing

Subhash,

After the DCAE VM is created, dcae_install.sh and dcae_vm_init.sh set up, 
download and install software dependencies, plus dcae_vm_init.sh calls the 
Makefile script in /opt/dcae-startup-vm-controller. If you look at 
dcae_vm_init.sh, you’ll see a “make up” instruction.

When you want to rebuild DCAE, please run make down (from 
/opt/dcae-startup-vm-controller), such that the controller tears down the 5 VMs 
that it spins up and updates its internal state. Running dcae_vm_init.sh may 
compromise the DCAE controller state because it will try to create VMs that 
possibly already exist.

That being said, from the attached logs I see that you are having connectivity 
issues:
http error: java.net.NoRouteToHostException: No route to host (Host unreachable)

Finally, version 1.0.0 (in release-1.0.0 branch) is not supported. Please use 
these parameters:
artifacts_version: 1.1.0-SNAPSHOT
docker_version: 1.1-STAGING-latest
gerrit_branch: master
dcae_base_environment: 1-NIC-FLOATING-IPS
gitlab_branch: master
dcae_code_version: 1.1.0

The environment files in Gerrit have been updated accordingly.

For further details about DCAE, please refer to the wiki page: 
https://wiki.onap.org/display/DW/DCAE+Controller+Development+Guide<https://urldefense.proofpoint.com/v2/url?u=https-3A__wiki.onap.org_display_DW_DCAE-2BController-2BDevelopment-2BGuide&d=DwMGaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=G7P6ajmMIva8VFVj0kle3avtPgyVjBbnnM53TmeR0u4&m=d5WcncMjaZlqC3kr7jA6kiWdjAHUHVOFcO02pd8gzNE&s=GgYvbxnXyTQxTk9fIUshQJAobbKxKUp5UzByfpVpocI&e=>

Thanks,
Marco

From: Subhash Kumar Singh 
mailto:subhash.kumar.si...@huawei.com>>
Date: Friday, June 30, 2017 at 8:56 AM
To: "LUND, CARSTEN (CARSTEN)" 
mailto:l...@research.att.com>>, "PLATANIA, MARCO 
(MARCO)" mailto:plata...@research.att.com>>, 
"onap-discuss@lists.onap.org<mailto:onap-discuss@lists.onap.org>" 
mailto:onap-discuss@lists.onap.org>>
Cc: Kanagaraj Manickam 
mailto:kanagaraj.manic...@huawei.com>>
Subject: RE: [onap-discuss] DCAE Health-Check is failing

Hello Marco and Carsten,

I’ve updated the configuration file (/opt/app/dcae-controller/config.yaml) in 
DCAE VM as you have suggested and again tried to execute `dcae_vm_init.sh` .
This time I can see following three VMs got created (but floating IP is not 
associated to VMs):

$ openstack server list
+--+--++--++
| ID   | Name | Status | 
Networks | Image Name   
  |
+--+--++--++
| ececf3ce-d518-457a-83d6-9bfb463d7d89 | zldcZONESTATEcdap00  | ACTIVE | 
oam_ecomp_v1rl=10.3.0.8 | 
trusty-server-cloudimg-amd64-disk1.img |
| c459eeff-8f9d-4625-b1b3-b70a6b7f583f | zldcZONESTATEpstg00  | ACTIVE | 
oam_ecomp_v1rl=10.3.0.6  | 
xenial-server-cloudimg-amd64-disk1.img |
| 8b486bcc-77a0-49f3-b1c7-ac46257cce99 | zldcZONESTATEcoll00  | ACTIVE | 
oam_ecomp_v1rl=10.3.0.11 | 
trusty-server-cloudimg-amd64-disk1.img |


Still, I can’t see other 2 VMs (cdap01, c

Re: [onap-discuss] DCAE Health-Check is failing

2017-06-30 Thread LUND, CARSTEN (CARSTEN)
https://wiki.onap.org/display/DW/DCAE+Controller+Development+Guide
You will see that version 1.0.0 is not supported.

Your env file to HEAT is specifying the version.

Carsten

From: Subhash Kumar Singh [mailto:subhash.kumar.si...@huawei.com]
Sent: Friday, June 30, 2017 8:56 AM
To: LUND, CARSTEN (CARSTEN) ; PLATANIA, MARCO (MARCO) 
; onap-discuss@lists.onap.org
Cc: Kanagaraj Manickam 
Subject: RE: [onap-discuss] DCAE Health-Check is failing

Hello Marco and Carsten,

I’ve updated the configuration file (/opt/app/dcae-controller/config.yaml) in 
DCAE VM as you have suggested and again tried to execute `dcae_vm_init.sh` .
This time I can see following three VMs got created (but floating IP is not 
associated to VMs):

$ openstack server list
+--+--++--++
| ID   | Name | Status | 
Networks | Image Name   
  |
+--+--++--++
| ececf3ce-d518-457a-83d6-9bfb463d7d89 | zldcZONESTATEcdap00  | ACTIVE | 
oam_ecomp_v1rl=10.3.0.8 | 
trusty-server-cloudimg-amd64-disk1.img |
| c459eeff-8f9d-4625-b1b3-b70a6b7f583f | zldcZONESTATEpstg00  | ACTIVE | 
oam_ecomp_v1rl=10.3.0.6  | 
xenial-server-cloudimg-amd64-disk1.img |
| 8b486bcc-77a0-49f3-b1c7-ac46257cce99 | zldcZONESTATEcoll00  | ACTIVE | 
oam_ecomp_v1rl=10.3.0.11 | 
trusty-server-cloudimg-amd64-disk1.img |


Still, I can’t see other 2 VMs (cdap01, cdap02) even after waiting for 60 
minutes, sharing docker logs [1].
Could you please explain the flow of creation of VMs (heat and required 
scripts) in DCAE and their communication so that we can debug this issue.

As part of this issue, I’ve identified that heat environment file was 
configured with wrong values, which I’ve corrected and pushed [2].
At the same time, I observed that we have hardcoded tag in “Makefile” and  
“docker-compose.yml” and it is referring to image version 1.0.0 (I am using 
latest tag).

In our setup, Network 192.168.x.y is externally reachable for us and floating 
IPs are not in the use.

Please let us know your thoughts.

[1] 
http://paste.openstack.org/show/614170/<https://urldefense.proofpoint.com/v2/url?u=http-3A__paste.openstack.org_show_614170_&d=DwMGaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=G7P6ajmMIva8VFVj0kle3avtPgyVjBbnnM53TmeR0u4&m=t5xbCukpjyh-52YKCHzPcmHOrYRmJpZWmp5RVve5vDM&s=x5MD7PHWdCTVK5-ljwW9_t4p6UDfAOII3QYmIjzvH04&e=>
[2] 
https://gerrit.onap.org/r/#/c/5617/<https://urldefense.proofpoint.com/v2/url?u=https-3A__gerrit.onap.org_r_-23_c_5617_&d=DwMGaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=G7P6ajmMIva8VFVj0kle3avtPgyVjBbnnM53TmeR0u4&m=t5xbCukpjyh-52YKCHzPcmHOrYRmJpZWmp5RVve5vDM&s=yZlhxC5aXxUU9YDgVnyFmSwJEAIGM-QrOQDzCv5cTws&e=>

--
Regards,
Subhash Kumar Singh


From: LUND, CARSTEN (CARSTEN) [mailto:l...@research.att.com]
Sent: Thursday, June 29, 2017 8:03 PM
To: PLATANIA, MARCO (MARCO) 
mailto:plata...@research.att.com>>; Subhash Kumar 
Singh mailto:subhash.kumar.si...@huawei.com>>; 
onap-discuss@lists.onap.org<mailto:onap-discuss@lists.onap.org>
Cc: Kanagaraj Manickam 
mailto:kanagaraj.manic...@huawei.com>>
Subject: RE: [onap-discuss] DCAE Health-Check is failing

Make sure the floating IPs (whatever they are) have been associated with the 
tenant and not in use.

Trying to keep everything documented on 
https://wiki.onap.org/display/DW/DCAE+Controller+Development+Guide<https://urldefense.proofpoint.com/v2/url?u=https-3A__wiki.onap.org_display_DW_DCAE-2BController-2BDevelopment-2BGuide&d=DwMGaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=G7P6ajmMIva8VFVj0kle3avtPgyVjBbnnM53TmeR0u4&m=t5xbCukpjyh-52YKCHzPcmHOrYRmJpZWmp5RVve5vDM&s=USjX_yiYGvT7JdqkOlKFpe9NE6rTE2lxIqrWuWMBWOU&e=>

Carsten

From: PLATANIA, MARCO (MARCO)
Sent: Thursday, June 29, 2017 10:25 AM
To: Subhash Kumar Singh 
mailto:subhash.kumar.si...@huawei.com>>; 
onap-discuss@lists.onap.org<mailto:onap-discuss@lists.onap.org>
Cc: Kanagaraj Manickam 
mailto:kanagaraj.manic...@huawei.com>>; LUND, 
CARSTEN (CARSTEN) mailto:l...@research.att.com>>
Subject: Re: [onap-discuss] DCAE Health-Check is failing

Hello Subhash,

There are a few errors in the ONAP stack deployment for what regards the 
parameters you set.

The Heat env file should contain:

  artifacts_version: 1.1.0-SNAPSHOT
  docker_version: 1.1-STAGING-latest
  gerrit_branch: master
  cloud_env: openstack
  dcae_base_environment: 1-NIC-FLOATING-IPS
  gitlab_branch: master
  dcae_code_version: 1.1.0

You are trying to install DCAE release-1.0.0, which doesn’t work in vanilla 
OpenStack. The configuration above will install DCAE 1.1.0


Re: [onap-discuss] DCAE Health-Check is failing

2017-06-29 Thread LUND, CARSTEN (CARSTEN)
Make sure the floating IPs (whatever they are) have been associated with the 
tenant and not in use.

Trying to keep everything documented on 
https://wiki.onap.org/display/DW/DCAE+Controller+Development+Guide

Carsten

From: PLATANIA, MARCO (MARCO)
Sent: Thursday, June 29, 2017 10:25 AM
To: Subhash Kumar Singh ; 
onap-discuss@lists.onap.org
Cc: Kanagaraj Manickam ; LUND, CARSTEN (CARSTEN) 

Subject: Re: [onap-discuss] DCAE Health-Check is failing

Hello Subhash,

There are a few errors in the ONAP stack deployment for what regards the 
parameters you set.

The Heat env file should contain:

  artifacts_version: 1.1.0-SNAPSHOT
  docker_version: 1.1-STAGING-latest
  gerrit_branch: master
  cloud_env: openstack
  dcae_base_environment: 1-NIC-FLOATING-IPS
  gitlab_branch: master
  dcae_code_version: 1.1.0

You are trying to install DCAE release-1.0.0, which doesn’t work in vanilla 
OpenStack. The configuration above will install DCAE 1.1.0

Also, I’m not sure whether 192.168.X.Y works as floating IP set. Those should 
be externally reachable.

Marco


From: Subhash Kumar Singh 
mailto:subhash.kumar.si...@huawei.com>>
Date: Thursday, June 29, 2017 at 10:15 AM
To: "PLATANIA, MARCO (MARCO)" 
mailto:plata...@research.att.com>>, 
"onap-discuss@lists.onap.org<mailto:onap-discuss@lists.onap.org>" 
mailto:onap-discuss@lists.onap.org>>
Cc: Kanagaraj Manickam 
mailto:kanagaraj.manic...@huawei.com>>, "LUND, 
CARSTEN (CARSTEN)" mailto:l...@research.att.com>>
Subject: RE: [onap-discuss] DCAE Health-Check is failing

Hello Marco,

Please check the config file :
http://paste.openstack.org/show/614068/<https://urldefense.proofpoint.com/v2/url?u=http-3A__paste.openstack.org_show_614068_&d=DwMGaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=KgFIQiUJzSC0gUhJaQxg8eC3w16GC3sKgWIcs4iIee0&m=y8hhUzPBsDA6YCsF228o-roNXtVgs4-idc_BgSDrPIg&s=xkp0a9uKD7SbfTZRETSXpVp-6QEVGmDGRBGTyM9Apsw&e=>

--
Regards,
Subhash Kumar Singh

From: PLATANIA, MARCO (MARCO) [mailto:plata...@research.att.com]
Sent: Thursday, June 29, 2017 7:01 PM
To: Subhash Kumar Singh 
mailto:subhash.kumar.si...@huawei.com>>; 
onap-discuss@lists.onap.org<mailto:onap-discuss@lists.onap.org>
Cc: Kanagaraj Manickam 
mailto:kanagaraj.manic...@huawei.com>>; LUND, 
CARSTEN (CARSTEN) mailto:l...@research.att.com>>
Subject: Re: [onap-discuss] DCAE Health-Check is failing

Hello Subhash,

Could you please paste the content of /opt/app/dcae-controller/config.yaml ?

Adding Carsten who knows DCAE best.

Marco


From: Subhash Kumar Singh 
mailto:subhash.kumar.si...@huawei.com>>
Date: Thursday, June 29, 2017 at 9:09 AM
To: "PLATANIA, MARCO (MARCO)" 
mailto:plata...@research.att.com>>, 
"onap-discuss@lists.onap.org<mailto:onap-discuss@lists.onap.org>" 
mailto:onap-discuss@lists.onap.org>>
Cc: Kanagaraj Manickam 
mailto:kanagaraj.manic...@huawei.com>>
Subject: RE: [onap-discuss] DCAE Health-Check is failing

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


Re: [onap-discuss] ONAP DCAE openstack deployment controller container error

2017-06-27 Thread LUND, CARSTEN (CARSTEN)
Please look at updated information about this on 
https://wiki.onap.org/display/DW/DCAE+Controller+Development+Guide
Carsten

From: onap-discuss-boun...@lists.onap.org 
[mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of 
ajay.priyadar...@ril.com
Sent: Tuesday, June 27, 2017 3:23 AM
To: onap-discuss@lists.onap.org; munir.ah...@bell.ca; PLATANIA, MARCO (MARCO) 

Subject: Re: [onap-discuss] ONAP DCAE openstack deployment controller container 
error

Hi Marco/Munir,

Is this issue have been resolved?

I am getting same error for my newton openstack.

error: cp: cannot stat '/opt/app/dcae-*-jars/lib/*.jar': No such file or 
directory
cp: cannot stat '/opt/app/dcae-*-model/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/dcae-*-manager/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/dcae-*-adaptor/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-jars/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-model/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-manager/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-adaptor/lib/*.jar': No such file or directory

output: Dcae Controller (pid 296) is running

output: descriptors: [cdap-helloworld, cdap-tca-hi-lo, docker-common-event, 
docker-databus-controller, vm-cdap-cluster, vm-controller, vm-docker-host-1, 
vm-postgresql]
services: []
Deploying undeployed descriptor cdap-helloworld
Done: services: [cdap-helloworld]
Deploying undeployed descriptor cdap-tca-hi-lo
Done: services: [cdap-helloworld, cdap-tca-hi-lo]
Deploying undeployed descriptor docker-common-event
Done: services: [cdap-helloworld, cdap-tca-hi-lo, docker-common-event]
Deploying undeployed descriptor docker-databus-controller
Done: services: [cdap-helloworld, cdap-tca-hi-lo, docker-common-event, 
docker-databus-controller]
Deploying undeployed descriptor vm-cdap-cluster
Done: services: [cdap-helloworld, cdap-tca-hi-lo, docker-common-event, 
docker-databus-controller, vm-cdap-cluster]
Deploying undeployed descriptor vm-controller
Done: services: [cdap-helloworld, cdap-tca-hi-lo, docker-common-event, 
docker-databus-controller, vm-cdap-cluster, vm-controller]
Deploying undeployed descriptor vm-docker-host-1
Done: services: [cdap-helloworld, cdap-tca-hi-lo, docker-common-event, 
docker-databus-controller, vm-cdap-cluster, vm-controller, vm-docker-host-1]
Deploying undeployed descriptor vm-postgresql
Done: services: [cdap-helloworld, cdap-tca-hi-lo, docker-common-event, 
docker-databus-controller, vm-cdap-cluster, vm-controller, vm-docker-host-1, 
vm-postgresql]

output: service vm-cdap-cluster
creating instance ZONE
service vm-postgresql
creating instance ZONE
service cdap-helloworld
creating instance ZONE
service vm-docker-host-1
creating instance ZONE
service cdap-tca-hi-lo
creating instance ZONE
service docker-common-event
creating instance ZONE
service docker-databus-controller
creating instance ZONE
service vm-controller
creating instance ZONE

bin/dcae-controller.sh stop
Stopping Dcae Controller...
Dcae Controller (pid=296) is stopping...
Dcae Controller has stopped.
bin/dcae-controller.sh start
Dcae Controller (pid 872) is running

## need to do 2 syncs to get all references working.
make sync
bin/dcae-controller.sh sync-configuration --environment OPENECOMP-DEMO-ZONE
Non Zero exit value: bin/dcae-controller.sh sync-install OPENECOMP-DEMO-ZONE 
GITLINK/OPENECOMP-DEMO-ZONE/controller-gen 1
output: Updating config/console.properties
Updating config/controller.properties
Updating config/gui.properties
Updating config/instances
Updating config/log4j.properties
Updating config/managers.properties
Updating config/openstack.properties
Updating config/passwords.yaml
Updating config/runtime.properties
Updating config/simpledemo-root-ca.crt
Updating config/simpledemo-server-ca.crt
Updating /opt/app/dcae-*-jars/lib/*.jar
Updating /opt/app/dcae-*-model/lib/*.jar
Updating /opt/app/dcae-*-manager/lib/*.jar
Updating /opt/app/dcae-*-adaptor/lib/*.jar
Updating /opt/app/ncomp-*-jars/lib/*.jar
Updating /opt/app/ncomp-*-model/lib/*.jar
Updating /opt/app/ncomp-*-manager/lib/*.jar
Updating /opt/app/ncomp-*-adaptor/lib/*.jar

error: cp: cannot stat '/opt/app/dcae-*-jars/lib/*.jar': No such file or 
directory
cp: cannot stat '/opt/app/dcae-*-model/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/dcae-*-manager/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/dcae-*-adaptor/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-jars/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-model/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-manager/lib/*.jar': No such file or directory
cp: cannot stat '/opt/app/ncomp-*-adaptor/lib/*.jar': No such file or directory

output: Dcae Controller (pid 872) is running

output: descriptors: [cdap-helloworld, cdap-tca-hi-lo, docker-common-event, 
docker-databus-controller, v

Re: [onap-discuss] A maybe dump questions, but has anybody ...

2017-06-13 Thread LUND, CARSTEN (CARSTEN)
For DCAE issue see DCAE-7. We are still working that and then have to document 
things better.

Carsten

From: onap-discuss-boun...@lists.onap.org 
[mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of Josef Reisinger
Sent: Tuesday, June 13, 2017 8:48 AM
To: onap-discuss@lists.onap.org
Subject: [onap-discuss] A maybe dump questions, but has anybody ...

... got the ONAP stack to work on vanilla Openstack (We use Ocata) including 
running one demo from the tutorial using the HEAT template below without manual 
intervention? The only changes I made are the lines where the parameter values 
start with "PUT YOUR  HERE" or so. I did especially not change any of

  *   artifacts_version: 1.1.0-SNAPSHOT
  *   docker_version: 1.0-STAGING-latest
  *   gerrit_branch: release-1.0.0


I am asking since I get a lot of issues which I do not believe to relate to the 
fact we are on vanilla Openstack Ocata vs. Rackspace as there are:

  *   Robot VM: I need to modify a couple of files to talk to the correct 
keystone endpoint, use the correct JSON in the token request and avoid SSL 
issues;  After the manual config I get it to run demo.sh init
  *
  *   VID VM: There is still some confusion on the database name to use as it 
seems. If I edit two files and remove the _epsdk from the DB name, at least the 
vid-mariadb container comes up and I can open the VID tab in the portal.
  *
  *   A&AI: during install, I get a message that the aai/test-config project 
does not have a branch release-1.0.0 and the install is broken; if I change 
/opt/config/gerrit_branch.txt to contain "master", I can get AAI to run the 
docker images. (Btw, setting gerrit_branch to "master" in the HEAT file didn't 
give me working environment)
model-router exits after a few seconds run ... docker logs gives a one-liner 
"starting model-loader", the log-directory /opt/aai/logroot/AAI-MODEL-LOADER/is 
empty
  *
  *   DCAE:   if I look in the logs of 
dcaestartupvmcontroller_dcae-controller_1 I find lots of  '"exception": 
"java.lang.IllegalArgumentException: !Absolute URI: null/servers"'
  *
  *   Tutorial: After fixing all the stuff above, I started the tutorial (which 
now has some licenses and VF added, cool!), but when I try to deploy one of 
them, there is not user pre-configured as it was before. Asking AAI with a REST 
call returns one:
 curl -k "-HX-TransactionId:$(uuidgen)" "-HX-FromAppId: test" 
"-HAccept:application/json" 
https://AAI:AAI@vm1-aai1:8443/aai/v8/business/customers/customer/|json_pp

{
   "subscriber-type" : "INFRA",
   "resource-version" : "1497351232556",
   "global-customer-id" : "Demonstration",
   "subscriber-name" : "Demonstration",
   "service-subscriptions" : {
  "service-subscription" : [
 {
"resource-version" : "1497351232629",
"service-type" : "vLB",
"relationship-list" : {
   "relationship" : [
  {
 "relationship-data" : [
{
   "relationship-key" : "cloud-region.cloud-owner",
   "relationship-value" : "Rackspace"
},
{
   "relationship-key" : "cloud-region.cloud-region-id",
   "relationship-value" : "RegionOne"
},
{
   "relationship-key" : "tenant.tenant-id",
   "relationship-value" : 
"a90952b7994341f4951fb5e97f829d0d"
}
 ],
 "related-to" : "tenant",
 "related-link" : 
"https://vm1-aai1:8443/aai/v8/cloud-infrastructure/cloud-regions/cloud-region/Rackspace/RegionOne/tenants/tenant/a90952b7994341f4951fb5e97f829d0d",
 "related-to-property" : [
{
   "property-key" : "tenant.tenant-name",
   "property-value" : "admin"
}
 ]
  }
   ]
}
 },
 {
"resource-version" : "1497351232580",
"relationship-list" : {
   "relationship" : [
  {
 "related-to" : "tenant",

[onap-discuss] DCAE not starting up

2017-04-24 Thread LUND, CARSTEN (CARSTEN)
There is still some things that will not work with DCAE deployment.

Things are getting tracked using DCAE-7 to track this.

I hope to make progress within the next couple of days.

Carsten

From: onap-discuss-bounces at lists.onap.org 
[mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of JI, LUSHENG (LUSHENG)
Sent: Monday, April 24, 2017 10:43 AM
To: Jochen Kappel 
Cc: onap-discuss at lists.onap.org
Subject: Re: [onap-discuss] DCAE not starting up

***Security Advisory: This Message Originated Outside of AT&T ***
Reference http://cso.att.com/EmailSecurity/IDSP.html for more information.
Jochen,

Could you please try the onap_openstack_RC.[yaml|env] template as Marco 
suggested in his email on the 20th (subj: Re: [onap-discuss] [installation] New 
Heat templates available in Gerrit/Nexus)?


Lusheng



On Apr 24, 2017, at 10:06 AM, Jochen Kappel mailto:Jochen.Kappel at de.ibm.com>> wrote:

Hi Lusheng,

we are using the attached template, which I guess is v1 of the vanilla 
openstack.

Mit freundlichen Gr??en / Kind regards

Jochen Kappel
Senior IT Architect, IBM TME Solutions Lab, IBM Global Markets
Global Telecommunications, Media and Entertainment Industry
--
Phone:+49-703 4643 2478 , Mobile:+49-160 9015 1870 , E-mail: 
jochen.kappel at de.ibm.com
IBM Deutschland,  Am Weiher 24,  65451 Kelsterbach,  Germany

IBM Deutschland GmbH / Vorsitzender des Aufsichtsrats: Martin Jetter
Gesch?ftsf?hrung: Martina Koederitz (Vorsitzende), Nicole Reimer, Norbert 
Janzen, Dr. Christian Keller, Ivo Koerner, Stefan Lutz
Sitz der Gesellschaft: Ehningen / Registergericht: Amtsgericht Stuttgart, HRB 
14562 / WEEE-Reg.-Nr. DE 99369940


- Original message -
From: "JI, LUSHENG (LUSHENG)" mailto:l...@research.att.com>>
To: Jochen Kappel/Germany/IBM at IBMDE
Cc: "onap-discuss at lists.onap.org" 
mailto:onap-discuss at lists.onap.org>>
Subject: Re: [onap-discuss] DCAE not starting up
Date: Mon, Apr 24, 2017 3:39 PM


Hi Jochen,

Could you provide more details in how you started the deployment (e.g. which 
heat template, which version)?

Thanks,
Lusheng



On Apr 24, 2017, at 8:39 AM, Jochen Kappel mailto:Jochen.Kappel at de.ibm.com>> wrote:

Hi,
we got issues in starting up all required DCAE components.

The log of the controller-startup.sh scripts show lots of NoSuchFileException 
like:

---
make gen-config sync restart
bin/dcae-controller.sh rackspace-substitute --from OPENECOMP-DEMO-RACKSPACE 
--to OPENECOMP-DEMO-z1 --file /opt/app/dcae-controller/config.yaml
m['DOCKER-VERSION'] = 1.0-STAGING-latest
java -cp 'lib/*' 
org.openecomp.dcae.controller.operation.utils.GenControllerConfiguration z1 . 
GITLINK OPENECOMP-DEMO
log4j:WARN No appenders could be found for logger 
(org.openecomp.ncomp.utils.io).
log4j:WARN Please initialize the log4j system properly.
log4j:WARN See 
http://logging.apache.org/log4j/1.2/faq.html#noconfig
 for more info.
destinationRoot=GITLINK/OPENECOMP-DEMO-z1/controller-gen
exception: OPENECOMP-DEMO-z1/cdap-instances/cdap-tca-hi-lo.yaml class 
java.nio.file.NoSuchFileException
exception: OPENECOMP-DEMO-z1/cdap-instances/cdap-helloworld.yaml class 
java.nio.file.NoSuchFileException
exception: OPENECOMP-DEMO-z1/docker-instances/docker-common-event.yaml class 
java.nio.file.NoSuchFileException
---

If i check the directories in the container I cant find the file 
cdap-tca-hi-lo.yaml   in  OPENECOMP-DEMO-z1/cdap-instances/
However there's one in OPENECOMP-DEMO/cdap-templates/

Not sure what we  are missing here
Mit freundlichen Gr??en / Kind regards

Jochen Kappel
Senior IT Architect, IBM TME Solutions Lab, IBM Global Markets
Global Telecommunications, Media and Entertainment Industry
--
Phone:+49-703 4643 2478 , Mobile:+49-160 9015 1870 , E-mail: 
jochen.kappel at de.ibm.com
IBM Deutschland,  Am Weiher 24,  65451 Kelsterbach,  Germany
---

[onap-discuss] [demo] Minimum Resources for ONAP Demo?

2017-04-16 Thread LUND, CARSTEN (CARSTEN)
DCAE VMs are also using Cinder Volumes so I added an additional column.

Carsten

From: onap-discuss-bounces at lists.onap.org 
[mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of LEFEVRE, CATHERINE
Sent: Sunday, April 16, 2017 1:08 PM
To: Phil Robb ; BENNETT, RICH 
Cc: onap-discuss at lists.onap.org
Subject: Re: [onap-discuss] [demo] Minimum Resources for ONAP Demo?

***Security Advisory: This Message Originated Outside of AT&T ***
Reference http://cso.att.com/EmailSecurity/IDSP.html for more information.
Dear all,

Additional updates related to aai, policy, sdc and portal based on the docker 
strategy have been also performed on the onap wiki.

Best regards
Catherine

From: onap-discuss-bounces at lists.onap.org [mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of Phil 
Robb
Sent: Sunday, April 16, 2017 2:13 AM
To: BENNETT, RICH mailto:rb2745 at att.com>>
Cc: onap-discuss at lists.onap.org
Subject: Re: [onap-discuss] [demo] Minimum Resources for ONAP Demo?

Nicely done Rich, Brian, and Carsten!  I am confident that will save folks a 
lot of time in the future.

Phil.

On Sat, Apr 15, 2017 at 12:04 PM, BENNETT, RICH mailto:rb2745 at att.com>> wrote:
Added a section in the wiki page 
https://wiki.onap.org/display/DW/Tutorial%3A+Configuring+and+Starting+Up+the+Base+ONAP+Stack

Minimum Resources for Demo

This includes a reference to this thread as the source for the estimates and 
the table below.

Rich

From: onap-discuss-bounces at lists.onap.org [mailto:onap-discuss-bounces at 
lists.onap.org] On Behalf Of 
FREEMAN, BRIAN D
Sent: Saturday, April 15, 2017 8:29 AM
To: LUND, CARSTEN mailto:lund at research.att.com>>; 
Dhananjay Pavgi mailto:DP00476350 at 
TechMahindra.com>>; Aimee Ukasick mailto:aimeeu.opensource at gmail.com>>; onap-discuss at 
lists.onap.org

Subject: Re: [onap-discuss] [demo] Minimum Resources for ONAP Demo?

***Security Advisory: This Message Originated Outside of AT&T ***
Reference http://cso.att.com/EmailSecurity/IDSP.html for more information.
Carsten raised the bar ?


Adding to Dhananjay/Carsten?s table.

Here is the table with the vFW and vDNS (base plus scaling) VMs.

Probably should put on the wiki somewhere.

Brian

Sr. No.

VM

RackSpace Flavor

Memory in MB

Disk in GB

VCPU

Ephemeral in GB

1

dns_vm

4 GB General Purpose v1

4096

80

4

0

2

aai_vm

15 GB Compute v1

15360

0

8

0

3

mso_vm

4 GB General Purpose v1

4096

80

4

0

4

mrouter_vm

15 GB I/O v1

15360

40

4

150

5

robot_vm

2 GB General Purpose v1

2048

40

2

0

6

vid_vm

2 GB General Purpose v1

2048

40

2

0

7

sdnc_vm

4 GB General Purpose v1

4096

80

4

0

8

sdc_vm

15 GB Compute v1

15360

0

8

0

9

portal_vm

15 GB Memory v1

15360

0

2

0

10

dcae_c_vm

8 GB General Purpose v1

8192

160

8

0

11

policy_vm

15 GB Compute v1

15360

0

8

0

12

appc_vm

4 GB General Purpose v1

4096

80

4

0



5 DCAE VMs

8 GB Performance

40910

200

32

5x80



vFW VMs

3 x 4 GB General Purpose v1

12288

240

36

0



vDNS VMs

4 x 4 GB General Purpose v1

16384

320

16

0

TOTAL

175054

1360

142

550



From: onap-discuss-bounces at lists.onap.org [mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of LUND, 
CARSTEN
Sent: Saturday, April 15, 2017 7:12 AM
To: Dhananjay Pavgi mailto:DP00476350 at 
TechMahindra.com>>; Aimee Ukasick mailto:aimeeu.opensource at gmail.com>>; onap-discuss at 
lists.onap.org
Subject: Re: [onap-discuss] [demo] Minimum Resources for ONAP Demo?

***Security Advisory: This Message Originated Outside of AT&T ***
Reference http://cso.att.com/EmailSecurity/IDSP.html for more information.
Missing the 5 DCAE VMs that are setup by DCAE itself. I updated the table below.

Carsten

From: onap-discuss-bounces at lists.onap.org [mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of 
Dhananjay Pavgi
Sent: Saturday, April 15, 2017 1:30 AM
To: Aimee Ukasick mailto:aimeeu.opensource at 
gmail.com>>; onap-discuss at lists.onap.org
Subject: Re: [onap-discuss] [demo] Minimum Resources for ONAP Demo?


We could derive below using HEAT template provided by ONAP. Hope this helps.



thanks & regards,

Dhananjay Pavgi

Mobile : +91 98220 22264



www.techmahindra.com

[onap-discuss] [demo] Minimum Resources for ONAP Demo?

2017-04-15 Thread LUND, CARSTEN (CARSTEN)
Missing the 5 DCAE VMs that are setup by DCAE itself. I updated the table below.

Carsten

From: onap-discuss-bounces at lists.onap.org 
[mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of Dhananjay Pavgi
Sent: Saturday, April 15, 2017 1:30 AM
To: Aimee Ukasick ; onap-discuss at 
lists.onap.org
Subject: Re: [onap-discuss] [demo] Minimum Resources for ONAP Demo?


We could derive below using HEAT template provided by ONAP. Hope this helps.



thanks & regards,

Dhananjay Pavgi

Mobile : +91 98220 22264



www.techmahindra.com Platinum 
Member. Visit : http://www.onap.org


Sr. No.

VM

RackSpace Flavor

Memory in MB

Disk in GB

VCPU

Ephemeral in GB

1

dns_vm

4 GB General Purpose v1

4096

80

4

0

2

aai_vm

15 GB Compute v1

15360

0

8

0

3

mso_vm

4 GB General Purpose v1

4096

80

4

0

4

mrouter_vm

15 GB I/O v1

15360

40

4

150

5

robot_vm

2 GB General Purpose v1

2048

40

2

0

6

vid_vm

2 GB General Purpose v1

2048

40

2

0

7

sdnc_vm

4 GB General Purpose v1

4096

80

4

0

8

sdc_vm

15 GB Compute v1

15360

0

8

0

9

portal_vm

15 GB Memory v1

15360

0

2

0

10

dcae_c_vm

8 GB General Purpose v1

8192

160

8

0

11

policy_vm

15 GB Compute v1

15360

0

8

0

12

appc_vm

4 GB General Purpose v1

4096

80

4

0



5 DCAE VMs

8 GB Performance

5x8192

5x40

5x8

5x80

TOTAL

146432

800

98

550








-Original Message-
From: onap-discuss-bounces at lists.onap.org [mailto:onap-discuss-boun...@lists.onap.org] On Behalf Of Aimee 
Ukasick
Sent: Saturday, April 15, 2017 7:16 AM
To: onap-discuss at lists.onap.org
Subject: [onap-discuss] [demo] Minimum Resources for ONAP Demo?



Hi all - I have an all-virtual OPNFV Apex (Triple-O) installation (OpenStack 
Newton) running on an Intel Intel(R) Xeon(R) CPU E5-2699 v4 @ 2.20GHz server 
with 22 cores and 128 GB RAM.



Creation of the ONAP stack failed with:



Create_Failed: Resource CREATE failed: Forbidden: resources.sdc_vm:

Quota exceeded for cores: Requested 8, but already used 14 of 20 cores



What is the minimum hardware/resource configuration needed to create the ONAP 
stack? I couldn't find anything documented on the wiki. I know Release 1 is 
only supported on Rackspace infrastructure, but I'm having trouble locating 
detailed resource requirements for the Rackspace public cloud as well. Any help 
is appreciated.



Also, what environments has the demo been deployed on other than Rackspace? 
It's my understanding that the vanilla OpenStack Heat template deploys 
successfully on Mitaka, so can you tell me what Mitaka installation you're 
using (Canonical, RDO, Mirantis, ?) and the physical hardware configuration?



Thanks in advance.



--

Aimee Ukasick

Open Source Engagement OPFNV, OpenStack, ONAP

IRC: aimeeu

___

onap-discuss mailing list

onap-discuss at lists.onap.org

https://lists.onap.org/mailman/listinfo/onap-discuss

Disclaimer:  This message and the information contained herein is proprietary 
and confidential and subject to the Tech Mahindra policy statement, you may 
review the policy at 
http://www.techmahindra.com/Disclaimer.html
 externally 
http://tim.techmahindra.com/tim/disclaimer.html
 internally within TechMahindra.

-- next part --
An HTML attachment was scrubbed...
URL: