Hello BRIAN,
Thanks a lot.
This is the list of available endpoints corresponding to RegionOne. There
are total 8 end-points are available.
openstack endpoint list | grep admin (The same list is available for public
and internal interface as well)
| 192d6f7fbf4e49b5ba4769cd6e4b133b | RegionOne | nova | compute
| True | admin | http://aio-2450:8774/v2.1 |
| 22fecf88e7d44c4597230468f51f0e96 | RegionOne | glance | image
| True | admin | http://aio-2450:9292 |
| 35ea4cc5888e4807a062371330c77e2a | RegionOne | cinderv3 | volumev3
| True | admin | http://aio-2450:8776/v3/%(project_id)s |
| 71de45e639194afd8758ad4c93f4e528 | RegionOne | placement | placement
| True | admin | http://aio-2450:8778 |
| 87627f1be6cc406eb4d29f2bc221f2b6 | RegionOne | neutron | network
| True | admin | http://aio-2450:9696 |
| 88c9b48587304db39d7d7d4f654eba5b | RegionOne | murano |
application-catalog | True | admin | http://aio-2450:8082
|
| 8a48b2d73745485282bda3a59d2b9537 | RegionOne | keystone | identity
| True | admin | http://aio-2450:5000/v3/ |
| e73e5e029e0644049491293cf1a53fe6 | RegionOne | cinderv2 | volumev2
| True | admin | http://aio-2450:8776/v2/%(project_id)s
Then, I followed the debug.log file in the so-openstack-adaptor. A snap
shot is given below for your quick view:
tenant=Tenant [id=ecf1539291894c76a6b57308ae4726a3, name=admin,
description=null, enabled=true]], serviceCatalog=[
Service [type=volumev3, name=cinderv3, endpoints=[Endpoint
[region=RegionOne, publicURL=
http://aio-2450:8776/v3/ecf1539291894c76a6b57308ae4726a3, internalURL=null,
adminURL=null]], endpointsLinks=null],
Service [type=image, name=glance, endpoints=[Endpoint [region=RegionOne,
publicURL=http://aio-2450:9292, internalURL=null, adminURL=null]],
endpointsLinks=null],
Service [type=application-catalog, name=murano, endpoints=[Endpoint
[region=RegionOne, publicURL=http://aio-2450:8082, internalURL=null,
adminURL=null]], endpointsLinks=null],
Service [type=network, name=neutron, endpoints=[Endpoint
[region=RegionOne, publicURL=http://aio-2450:9696, internalURL=null,
adminURL=null]], endpointsLinks=null],
Service [type=placement, name=placement, endpoints=[Endpoint
[region=RegionOne, publicURL=http://aio-2450:8778, internalURL=null,
adminURL=null]], endpointsLinks=null],
Service [type=volumev2, name=cinderv2, endpoints=[Endpoint
[region=RegionOne, publicURL=
http://aio-2450:8776/v2/ecf1539291894c76a6b57308ae4726a3,
internalURL=null, adminURL=null]],
endpointsLinks=null],
Service [type=identity, name=keystone, endpoints=[Endpoint
[region=RegionOne, publicURL=http://aio-2450:5000/v3/, internalURL=null,
adminURL=null]], endpointsLinks=null],
Service [type=compute, name=nova, endpoints=[Endpoint [region=RegionOne,
publicURL=http://aio-2450:8774/v2.1, internalURL=null, adminURL=null]],
endpointsLinks=null]],
user=User [id=ce13f5cba38646db89d51b4fb296c245,
name=admin, username=null, roles=null, rolesLinks=null], metadata=null]
The above list is the serviceCatalog for openStack tenant. There are 8
openstack endpoints/services to which multicloud trying to connect.
I was going through the so-openstack code (Link:
https://github.com/onap/so/blob/master/adapters/mso-adapter-utils/src/main/java/org/onap/so/openstack/utils/MsoHeatUtils.java
)
try {
// Isolate trying to printout the region IDs
try {
logger.debug("access={}", access.toString());
for (Access.Service service :
access.getServiceCatalog()) {
List<Access.Service.Endpoint> endpoints =
service.getEndpoints();
for (Access.Service.Endpoint endpoint :
endpoints) {
logger.debug("AIC returned region={}",
endpoint.getRegion());
}
--------------------------------------------------------------------------------------------------------------------------------------------
This is the debug output for the above code in the so-openstack-adapter:
2019-04-23T13:47:10.984Z|4d8e9f2e-73e7-4ec2-8bc1-5e7130479322|
org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
2019-04-23T13:47:10.984Z|4d8e9f2e-73e7-4ec2-8bc1-5e7130479322|
org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
2019-04-23T13:47:10.985Z|4d8e9f2e-73e7-4ec2-8bc1-5e7130479322|
org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
2019-04-23T13:47:10.985Z|4d8e9f2e-73e7-4ec2-8bc1-5e7130479322|
org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
2019-04-23T13:47:10.985Z|4d8e9f2e-73e7-4ec2-8bc1-5e7130479322|
org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
2019-04-23T13:47:10.985Z|4d8e9f2e-73e7-4ec2-8bc1-5e7130479322|
org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
2019-04-23T13:47:10.986Z|4d8e9f2e-73e7-4ec2-8bc1-5e7130479322|
org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
2019-04-23T13:47:10.986Z|4d8e9f2e-73e7-4ec2-8bc1-5e7130479322|
org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
2019-04-23T13:47:10.987Z|4d8e9f2e-73e7-4ec2-8bc1-5e7130479322|
org.onap.so.openstack.utils.MsoHeatUtils - RA_CONNECTION_EXCEPTION
It may be observed that for the 8 services in the serviceCatalog,
multicloud is able to get the region. However for the 9th service it is
showing "RA_CONNECTION_EXCEPTION".
--------------------------------------------------------------------------------------------------------------------------------------------
}
} catch (Exception e) {
logger.debug("Encountered an error trying to
printout Access object returned from AIC. {}",
e.getMessage(), e);
}
heatUrl =
KeystoneUtils.findEndpointURL(access.getServiceCatalog(), "orchestration",
region,
"public");
logger.debug("heatUrl={}, region={}", heatUrl, region);
--------------------------------------------------------------------------------------------------------------------------
This is the error corresponding to the above code:
org.onap.so.openstack.exceptions.MsoAdapterException: AIC did not match an
orchestration service for: region=RegionOne,cloud=
http://xx.xx.xx.xx:30280/api/multicloud/v0/CloudOwner_RegionOne/identity/v2.0
Here, xx.xx.xx.xx is the oom master node ip.
I think multicloud is trying to connect 9th endpoint/service called
orchestration for heatUrl and it is getting error for this service.
-----------------------------------------------------------------------------------------------------------------------------
} catch (RuntimeException e) {
// This comes back for not found (probably an incorrect
region ID)
String error = "AIC did not match an orchestration
service for: region=" + region + ",cloud="
+ cloudIdentity.getIdentityUrl();
throw new MsoAdapterException(error, e);
}
tokenId = access.getToken().getId();
expiration = access.getToken().getExpires();
}
I would be grateful, if you help me to get a better understanding of whole
process.
Many Thanks,
Satish
On Wed, Apr 24, 2019 at 1:00 PM FREEMAN, BRIAN D <[email protected]> wrote:
> Satish,
>
>
>
> I’ve gotten that error message when the REGION_ID in the cloud_sites table
> didnt match with what Openstack had configured for it’s region.
>
> Region in openstack is like host aggregates and availability zones and
> that string has to match.
>
>
>
> SO maps the ONAP cloud_site name RegionOne to the Openstack “region” in
> the tenant through the cloud_sites table.
>
> It does not have to be a region=”RegionOne” in openstack.
>
>
>
> There is an openstack command to retreive it since I dont think its
> readily available on the horizon portal (but it may be for an admin user)
>
>
>
> See if those two fields are not in synch
>
>
>
> Brian
>
>
>
>
>
> *From:* satish kumar <[email protected]>
> *Sent:* Wednesday, April 24, 2019 7:48 AM
> *To:* FREEMAN, BRIAN D <[email protected]>
> *Cc:* [email protected]
> *Subject:* Re: [onap-discuss] Robot Test with Keystone V3 (OpenStack
> Queen) #casablanca #Robot #SO
>
>
>
> Hello Brian,
>
>
>
> Thanks for your reply. you are right, SO is talking to MultiVIM first and
> then OpenStack.
>
>
>
> I have followed this link:
>
> https://wiki.onap.org/display/DW/SO+configurations+for+Multicloud
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__wiki.onap.org_display_DW_SO-2Bconfigurations-2Bfor-2BMulticloud&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=OIBurrnPqetdTiRQy0xOB4Bs5RhhcMlJE0hU1aBITlY&s=q8yGDdv-48EVQanxCvJv1JuMxfL5h2Hq4EfUJLcGKTs&e=>
>
>
>
>
> This is my updated cloud_sites information:
>
>
>
> MariaDB [catalogdb]> select * from cloud_sites;
>
>
> +-------------------+-----------+---------------------+---------------+-----------+-------------+----------+--------------+-----------------+---------------------+---------------------+
>
> | ID | REGION_ID | IDENTITY_SERVICE_ID | CLOUD_VERSION |
> CLLI | CLOUDIFY_ID | PLATFORM | ORCHESTRATOR | LAST_UPDATED_BY |
> CREATION_TIMESTAMP | UPDATE_TIMESTAMP |
>
>
> +-------------------+-----------+---------------------+---------------+-----------+-------------+----------+--------------+-----------------+---------------------+---------------------+
>
> | Chicago | ORD | RAX_KEYSTONE | 2.5 |
> ORD | NULL | NULL | NULL | FLYWAY |
> 2019-04-19 19:52:05 | 2019-04-19 19:52:05 |
>
> | Dallas | DFW | RAX_KEYSTONE | 2.5 |
> DFW | NULL | NULL | NULL | FLYWAY |
> 2019-04-19 19:52:05 | 2019-04-19 19:52:05 |
>
> | DEFAULT | RegionOne | DEFAULT_KEYSTONE | 2.5 |
> RegionOne | NULL | NULL | NULL | FLYWAY |
> 2019-04-19 19:52:05 | 2019-04-19 19:52:05 |
>
> | Northern Virginia | IAD | RAX_KEYSTONE | 2.5 |
> IAD | NULL | NULL | NULL | FLYWAY |
> 2019-04-19 19:52:05 | 2019-04-19 19:52:05 |
>
> | RegionOne | RegionOne | DEFAULT_KEYSTONE | 2.5 |
> RegionOne | NULL | NULL | NULL | FLYWAY |
> 2019-04-19 19:52:05 | 2019-04-19 19:52:05 |
>
>
> +-------------------+-----------+---------------------+---------------+-----------+-------------+----------+--------------+-----------------+---------------------+---------------------+
>
> 5 rows in set (0.00 sec)
>
>
>
>
>
> Here is identity services information: Here xx.xx.xx.xx is the oom master
> node ip.
>
>
>
> MariaDB [catalogdb]> select * from identity_services;
>
>
> +------------------+------------------------------------------------------------------------------+----------------------+----------------------------------+--------------+-------------+-----------------+----------------------+------------------------------+-----------------+---------------------+---------------------+
>
> | ID | IDENTITY_URL
> | MSO_ID | MSO_PASS
> | ADMIN_TENANT | MEMBER_ROLE | TENANT_METADATA | IDENTITY_SERVER_TYPE
> | IDENTITY_AUTHENTICATION_TYPE | LAST_UPDATED_BY | CREATION_TIMESTAMP |
> UPDATE_TIMESTAMP |
>
>
> +------------------+------------------------------------------------------------------------------+----------------------+----------------------------------+--------------+-------------+-----------------+----------------------+------------------------------+-----------------+---------------------+---------------------+
>
> | DEFAULT_KEYSTONE |
> http://xx.xx.xx.xx:30280/api/multicloud/v0/CloudOwner_RegionOne/identity/v2.0
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__xx.xx.xx.xx-3A30280_api_multicloud_v0_CloudOwner-5FRegionOne_identity_v2.0&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=OIBurrnPqetdTiRQy0xOB4Bs5RhhcMlJE0hU1aBITlY&s=yaYxIXOXgXB9gqBoyEuO0YqyoLiICs1NdbWwkrvaQb0&e=>
> | admin | 5e34f1f7c1a80a101f2bf1f41f629479 | service |
> admin | 1 | KEYSTONE | USERNAME_PASSWORD
> | FLYWAY | 2019-04-19 19:52:05 | 2019-04-19 19:52:05 |
>
> | RAX_KEYSTONE | https://identity.api.rackspacecloud.com/v2.0
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__identity.api.rackspacecloud.com_v2.0&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=OIBurrnPqetdTiRQy0xOB4Bs5RhhcMlJE0hU1aBITlY&s=FCUJzuUodk1ZTNtYQains1xA7hhI4yHgLkB-LK3D4-c&e=>
> | RACKSPACE_ACCOUNT_ID |
> RACKSPACE_ACCOUNT_APIKEY | service | admin |
> 1 | KEYSTONE | RACKSPACE_APIKEY | FLYWAY
> | 2019-04-19 19:52:05 | 2019-04-19 19:52:05 |
>
>
> +------------------+------------------------------------------------------------------------------+----------------------+----------------------------------+--------------+-------------+-----------------+----------------------+------------------------------+-----------------+---------------------+---------------------+
>
> 2 rows in set (0.00 sec)
>
>
>
>
>
> I was trying to understand the errors in the 'so-openstack-adapter' debug
> log file:
>
>
>
> 2019-04-23T11:58:07.066Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - RA_CONNECTION_EXCEPTION
>
> 2019-04-23T11:58:07.072Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.adapters.vnf.MsoVnfAdapterImpl - RA_QUERY_VNF_ERR
>
> org.onap.so.openstack.exceptions.MsoAdapterException: AIC did not match an
> orchestration service for: region=RegionOne,cloud=
> http://10.5.24.21:30280/api/multicloud/v0/CloudOwner_RegionOne/identity/v2.0
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__10.5.24.21-3A30280_api_multicloud_v0_CloudOwner-5FRegionOne_identity_v2.0&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=OIBurrnPqetdTiRQy0xOB4Bs5RhhcMlJE0hU1aBITlY&s=HqWu5cCuawtgWLMiKtB9oWn0Mw0RfeqEL3zZugqcqmM&e=>
>
>
>
>
>
> After searched I found that, the Error: --->
> org.onap.so.openstack.exceptions.MsoAdapterException: AIC did not match an
> orchestration service for:
>
>
>
> is may be due to an incorrect region ID: (Link:
> https://github.com/onap/so/blob/master/adapters/mso-adapter-utils/src/main/java/org/onap/so/openstack/utils/MsoHeatUtils.java
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__github.com_onap_so_blob_master_adapters_mso-2Dadapter-2Dutils_src_main_java_org_onap_so_openstack_utils_MsoHeatUtils.java&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=OIBurrnPqetdTiRQy0xOB4Bs5RhhcMlJE0hU1aBITlY&s=lLXcLmw7ssp96e-iXKAO8SRjagz-P9NBCNTsJpZPBMk&e=>
> )
>
>
>
>
>
> catch (RuntimeException e) {
>
> // This comes back for not found (probably an incorrect region ID)
>
> tring error = "AIC did not match an orchestration service for:
> region=" + region + ",cloud="
>
> + cloudIdentity.getIdentityUrl();
>
> throw new MsoAdapterException(error, e);
>
> }I
>
>
>
> I have no idea where I am doing wrong. Please help me to debug this issue.
>
>
>
> many thanks,
>
> Satish
>
>
>
>
>
>
>
>
>
> On Tue, Apr 23, 2019 at 4:04 PM FREEMAN, BRIAN D <[email protected]> wrote:
>
> OK that makes more sense then.
>
>
>
> The reason is that openstack keystone is replying with the hostname – no
> way around it unless you change openstack but to put it in /etc/hosts
> inside robot container or the dns your environment is using.
>
>
>
> But I am confused – I thought you were talking to MultiVIM not direct SO
> to Openstack ?
>
>
>
> Brian
>
>
>
>
>
>
>
>
>
> *From:* satish kumar <[email protected]>
> *Sent:* Tuesday, April 23, 2019 10:13 AM
> *To:* [email protected]; FREEMAN, BRIAN D <[email protected]>
> *Subject:* Re: [onap-discuss] Robot Test with Keystone V3 (OpenStack
> Queen) #casablanca #Robot #SO
>
>
>
> Dear Brian,
>
>
>
> Thank you for your reply.
>
> <OpenStackHostname> represents the openStack server host name. I have
> manually changed it before attaching the log in the email. For
> your reference, the actual debug file is:
>
>
>
> 2019-04-23T11:58:07.061Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - access=Access [token=Token
> [id=gAAAAABcvv3P64kQ-zlmqVRgBvP4gGzffJ8NrjuJoH6M4R8-PGbblzVfOHyPsWmYk-G6nK1R_u6-SZVX4WVDGQEH8AJ7zO0dtHrqg1zRNDirRP5iflYoWP7xsn2JRHCoEyJN627Cz36raDRXMd6UL0zayCxyQMYP0Qm1rs3muSZthcIb3bIzPjg,
> Issued_at=java.util.GregorianCalendar[time=1556020687000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2019,MONTH=3,WEEK_OF_YEAR=17,WEEK_OF_MONTH=4,DAY_OF_MONTH=23,DAY_OF_YEAR=113,DAY_OF_WEEK=3,DAY_OF_WEEK_IN_MONTH=4,AM_PM=0,HOUR=11,HOUR_OF_DAY=11,MINUTE=58,SECOND=7,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0],
> expires=java.util.GregorianCalendar[time=1556024287000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2019,MONTH=3,WEEK_OF_YEAR=17,WEEK_OF_MONTH=4,DAY_OF_MONTH=23,DAY_OF_YEAR=113,DAY_OF_WEEK=3,DAY_OF_WEEK_IN_MONTH=4,AM_PM=1,HOUR=0,HOUR_OF_DAY=12,MINUTE=58,SECOND=7,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0],
> tenant=Tenant [id=ecf1539291894c76a6b57308ae4726a3, name=admin,
> description=null, enabled=true]], serviceCatalog=[Service [type=volumev3,
> name=cinderv3, endpoints=[Endpoint [region=RegionOne, publicURL=
> http://aio-2450:8776/v3/ecf1539291894c76a6b57308ae4726a3
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__aio-2D2450-3A8776_v3_ecf1539291894c76a6b57308ae4726a3&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=6Y1X6PjecKCf4igrT3JNaeAKffuMbgxtdFOfI_XdgAM&s=E_jp4gb9UPX9JfjePaP0eNZp7I0dIvM7lOaMSFesDhU&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=image, name=glance, endpoints=[Endpoint [region=RegionOne, publicURL=
> http://aio-2450:9292
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__aio-2D2450-3A9292&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=6Y1X6PjecKCf4igrT3JNaeAKffuMbgxtdFOfI_XdgAM&s=oPPubcgzXx2zONLYdF279rkfNH8IFjj9UbyT7f3Y1AI&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=application-catalog, name=murano, endpoints=[Endpoint
> [region=RegionOne, publicURL=http://aio-2450:8082
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__aio-2D2450-3A8082&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=6Y1X6PjecKCf4igrT3JNaeAKffuMbgxtdFOfI_XdgAM&s=nfg5iljFyqq2fcGdxW8uwOfjXlNPtZOkdb179isqO9Q&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=network, name=neutron, endpoints=[Endpoint [region=RegionOne,
> publicURL=http://aio-2450:9696
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__aio-2D2450-3A9696&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=6Y1X6PjecKCf4igrT3JNaeAKffuMbgxtdFOfI_XdgAM&s=HI3wQq3INB0NrwNYqpkd25WdsgxihWuUDpJ2GRE1tlg&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=placement, name=placement, endpoints=[Endpoint [region=RegionOne,
> publicURL=http://aio-2450:8778
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__aio-2D2450-3A8778&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=6Y1X6PjecKCf4igrT3JNaeAKffuMbgxtdFOfI_XdgAM&s=Up9v5jItghlmXgie1BV66fm__zidrg54cY1ANYi0kVY&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=volumev2, name=cinderv2, endpoints=[Endpoint [region=RegionOne,
> publicURL=http://aio-2450:8776/v2/ecf1539291894c76a6b57308ae4726a3
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__aio-2D2450-3A8776_v2_ecf1539291894c76a6b57308ae4726a3&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=6Y1X6PjecKCf4igrT3JNaeAKffuMbgxtdFOfI_XdgAM&s=KvI6kQGXBbthdFoA7W2h05bYS0CmNUxxPllDFJASsYE&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=identity, name=keystone, endpoints=[Endpoint [region=RegionOne,
> publicURL=http://aio-2450:5000/v3/
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__aio-2D2450-3A5000_v3_&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=6Y1X6PjecKCf4igrT3JNaeAKffuMbgxtdFOfI_XdgAM&s=a_tT3KPJ1FJgToopxcJClltCmPQJ7mXf_o5dnAEVGLU&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=compute, name=nova, endpoints=[Endpoint [region=RegionOne, publicURL=
> http://aio-2450:8774/v2.1
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__aio-2D2450-3A8774_v2.1&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=6Y1X6PjecKCf4igrT3JNaeAKffuMbgxtdFOfI_XdgAM&s=5XU-Jiswzxtx_GnfIuEBDHibZ74pNX-GCZnXKYKuzEA&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null]], user=User
> [id=ce13f5cba38646db89d51b4fb296c245, name=admin, username=null,
> roles=null, rolesLinks=null], metadata=null]
>
>
>
>
>
> Here, 'aio-2450' represents the OpenStack server IP. I have not configured
> OpenStack server host name in value.yaml file (Not even in any file). I
> think robot is able communicate with OpenStack server initially with IP
> (that is why it have host name) but further it is trying to communicate
> with host name (I have no idea why it is happening).
>
>
>
> I have overwrite the encrypted the password for Robot and SO. Still, I
> don't know why I am getting this error.
>
>
>
>
>
> Many Thanks,
>
> Satish
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> *Thanks and Regards,*
>
>
>
> *Satish Kumar, PhD*
>
> *========================================*
>
> *Research Fellow*
>
> *5G Innovation Centre,*
>
> *University of Surrey, *
>
> *Guildford, UK*
>
> *========================================*
>
> *Web page: *
>
> *https://www.surrey.ac.uk/people/satish-kumar
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__www.surrey.ac.uk_people_satish-2Dkumar&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=6Y1X6PjecKCf4igrT3JNaeAKffuMbgxtdFOfI_XdgAM&s=tHH5jzlceFftVbtG74JxalR-l87viHVNxwqobq7M0kw&e=>
> *
>
> *========================================*
>
>
>
>
>
>
>
> On Tue, Apr 23, 2019 at 2:48 PM Brian <[email protected]> wrote:
>
> If you are using Multicloud then SO talk V2 to multicloud.
>
>
>
> Check the openstack parameters in your values.yaml for robot , SO and
> MultiVIM and make sure you have encrypted the password for Robot and SO
> appropriately per the readthedocs.
>
>
>
> It looks like you did not override somethin host='<OpenStackHostname>
> since that is a variable string not the actual uri/IP address that we would
> see if your configuration was right.
>
>
>
> Brian
>
>
>
>
>
>
>
>
>
> *From:* [email protected] <[email protected]> *On
> Behalf Of *[email protected]
> *Sent:* Tuesday, April 23, 2019 9:28 AM
> *To:* [email protected]
> *Subject:* [onap-discuss] Robot Test with Keystone V3 (OpenStack Queen)
> #casablanca #Robot #SO
>
>
>
> Hello Team,
>
> I have deployed ONAP Casablanca on Kubernetes with Rancher.
>
> I am trying to run the robot scripts with Keystone version V3 (OpenStack
> Queen).
>
> 1: ./demo-k8s.sh onap init
> I am able to successfully run this test by changing the version V2 to V3.
>
> 2. ./demo-k8s.sh onap init_robot
> For this test, I am getting error:
> ConnectionError: HTTPConnectionPool(host='<OpenStackHostname>',
> port=8774): Max retries exceeded with url: /v2.1/servers/detail (Caused by
> NewConnectionError('<urllib3.connection.HTTPConnection object at
> 0x7fb38083f6d0>: Failed to establish a new connection: [Errno -2] Name or
> service not known',))
>
> This error is mainly because, Robot pod is trying to connect OpenStack
> server by their host name.
> However, this problem I have solved by updating the /etc/hosts file with
> the ip address of the OpenStack Server and the test was successful.
>
> Is there any other way to solve this problem without updating the robot's
> /etc/hosts file?
>
> 3. ./demo-k8s.sh onap instantiateVFW
>
> I am trying to instantiate vFW on OpenStack queen version (Keystone v3.0).
> I have followed the steps given by kranthi guttikonda (
> https://lists.onap.org/g/onap-discuss/topic/casablanca_so_openstack/30403892?p=,,,20,0,0,0::recentpostdate%2Fsticky,,,20,2,0,30403892
> <https://urldefense.proofpoint.com/v2/url?u=https-3A__lists.onap.org_g_onap-2Ddiscuss_topic_casablanca-5Fso-5Fopenstack_30403892-3Fp-3D-2C-2C-2C20-2C0-2C0-2C0-3A-3Arecentpostdate-252Fsticky-2C-2C-2C20-2C2-2C0-2C30403892&d=DwMFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=-8nwNaii9ObAw8lN9HIS8zrJXfQJnRCW4AHbYPSZzRY&e=>
> )
>
> Step 1: Updated the identity_services in so-MariaDB as:
> MariaDB [catalogdb]> update identity_services set IDENTITY_URL="
> http://xx.xx.xx.xx:30280/api/multicloud/v0/CloudOwner_RegionOne/identity/v2.0
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__xx.xx.xx.xx-3A30280_api_multicloud_v0_CloudOwner-5FRegionOne_identity_v2.0&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=ZK-ULyTdmr5VWSI2c1BwAuMXjQZAlRnJPYYm0k4ELjE&e=>"
> where ID="DEFAULT_KEYSTONE";
>
> Here, xx.xx.xx.xx is the oom master node ip.
>
> Step 2: Successfully Updated the RegionOne in AAI using PUT command via
> postman (here, xx.xx.xx.xx -> oom master node ip and yy.yy.yy.yy ->
> OpenStack server ip).
>
> {
>
>
>
> "cloud-owner": "CloudOwner",
>
>
>
> "cloud-region-id": "RegionOne",
>
>
>
> "cloud-type": "openstack",
>
>
>
> "owner-defined-type": "OwnerType",
>
>
>
> "cloud-region-version": "v2.5",
>
>
>
> "identity-url": "
> http://xx.xx.xx.xx:9006/api/multicloud/v0/CloudOwner_RegionOne/identity/v2.0/tokens
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__xx.xx.xx.xx-3A9006_api_multicloud_v0_CloudOwner-5FRegionOne_identity_v2.0_tokens&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=FnvtoiYp6uLoZiZSBiB1q7AOrEnw_OSXekwMkY6lSjY&e=>
> ",
>
>
>
> "cloud-zone": "CloudZone",
>
>
>
> "resource-version": "1555956059967",
>
>
>
> "complex-name": "clli1",
>
>
>
> "tenants": {
>
>
>
> "tenant": [{
>
>
>
> "tenant-id": "ecf1539291894c76a6b57308ae4726a3",
>
>
>
> "tenant-name": "admin",
>
>
>
> "resource-version": "1555956060830"
>
>
>
> }]
>
>
>
> },
>
>
>
> "esr-system-info-list": {
>
>
>
> "esr-system-info": [{
>
>
>
> "esr-system-info-id": "1",
>
>
>
> "system-name": "OpenStack",
>
>
>
> "type": "vim",
>
>
>
> "service-url": "http://yy.yy.yy.yy:5000/v3
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__yy.yy.yy.yy-3A5000_v3&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=GkG7ryM6dnPbsv-A8ohADYeelMQXVSkPJ9OiZr5U0Ck&e=>
> ",
>
>
>
> "user-name": "admin",
>
>
>
> "password": "password",
>
>
>
> "system-type": "VIM",
>
>
>
> "ssl-insecure": true,
>
>
>
> "cloud-domain": "default",
>
>
>
> "default-tenant": "admin"
>
>
>
> }]
>
>
>
> }
>
>
>
> }
>
>
>
> Then run the ./demo-k8s.sh onap instantiateVFW and it failed. The error
> is:
> "AIC did not match an orchestration service for: region=RegionOne,cloud=
> http://xx.xx.xx.xx:30280/api/multicloud/v0/CloudOwner_RegionOne/identity/v2.0
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__xx.xx.xx.xx-3A30280_api_multicloud_v0_CloudOwner-5FRegionOne_identity_v2.0&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=ZK-ULyTdmr5VWSI2c1BwAuMXjQZAlRnJPYYm0k4ELjE&e=>
> "
>
> I have given the a snap shot of the debug.log file in
> so-openstack-adapter. In the debug file:
>
> <OpenStackHostname> represents the openstack host name
> xx.xx.xx.xx represents the oom master node ip.
>
> For the debug log, I understand that the openstack adaptor is trying to
> connect OpenStack server using hostName. May be this is the issue.
> Please help me to debug this Problem.
> Thank you very much for your help!
>
> Regards,
> Satish
>
>
>
> ----------------------------------------------------------------
> Debug log file form so-openstack-adapter:
>
> 2019-04-23T11:58:02.506Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - Found:
> CloudSite_.._jvst58e_31[regionId=RegionOne,identityServiceId=DEFAULT_KEYSTONE,cloudVersion=2.5,clli=RegionOne,cloudifyId=<null>,platform=<null>,orchestrator=<null>]
>
> 2019-04-23T11:58:02.506Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - Found:
> CloudIdentity[id=DEFAULT_KEYSTONE,identityUrl=
> http://xx.xx.xx.xx:30280/api/multicloud/v0/CloudOwner_RegionOne/identity/v2.0,msoId=admin,adminTenant=service,memberRole=admin,tenantMetadata=true,identityServerType=KEYSTONE,identityAuthenticationType=USERNAME_PASSWORD
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__xx.xx.xx.xx-3A30280_api_multicloud_v0_CloudOwner-5FRegionOne_identity_v2.0-2CmsoId-3Dadmin-2CadminTenant-3Dservice-2CmemberRole-3Dadmin-2CtenantMetadata-3Dtrue-2CidentityServerType-3DKEYSTONE-2CidentityAuthenticationType-3DUSERNAME-5FPASSWORD&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=g2kx4_l51sjwOZuwd8nF12VO5pfXzgLFkgK2nQ9y4ao&e=>
> ]
>
> 2019-04-23T11:58:02.507Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - keystoneUrl=
> http://xx.xx.xx.xx:30280/api/multicloud/v0/CloudOwner_RegionOne/identity/v2.0
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__xx.xx.xx.xx-3A30280_api_multicloud_v0_CloudOwner-5FRegionOne_identity_v2.0&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=ZK-ULyTdmr5VWSI2c1BwAuMXjQZAlRnJPYYm0k4ELjE&e=>
>
>
>
>
> http://xx.xx.xx.xx:30280/api/multicloud/v0/CloudOwner_RegionOne/identity/v2.0
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__xx.xx.xx.xx-3A30280_api_multicloud_v0_CloudOwner-5FRegionOne_identity_v2.0&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=ZK-ULyTdmr5VWSI2c1BwAuMXjQZAlRnJPYYm0k4ELjE&e=>
>
> 2019-04-23T11:58:07.061Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - access=Access [token=Token
> [id=gAAAAABcvv3P64kQ-zlmqVRgBvP4gGzffJ8NrjuJoH6M4R8-PGbblzVfOHyPsWmYk-G6nK1R_u6-SZVX4WVDGQEH8AJ7zO0dtHrqg1zRNDirRP5iflYoWP7xsn2JRHCoEyJN627Cz36raDRXMd6UL0zayCxyQMYP0Qm1rs3muSZthcIb3bIzPjg,
> Issued_at=java.util.GregorianCalendar[time=1556020687000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2019,MONTH=3,WEEK_OF_YEAR=17,WEEK_OF_MONTH=4,DAY_OF_MONTH=23,DAY_OF_YEAR=113,DAY_OF_WEEK=3,DAY_OF_WEEK_IN_MONTH=4,AM_PM=0,HOUR=11,HOUR_OF_DAY=11,MINUTE=58,SECOND=7,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0],
> expires=java.util.GregorianCalendar[time=1556024287000,areFieldsSet=true,areAllFieldsSet=true,lenient=true,zone=sun.util.calendar.ZoneInfo[id="UTC",offset=0,dstSavings=0,useDaylight=false,transitions=0,lastRule=null],firstDayOfWeek=1,minimalDaysInFirstWeek=1,ERA=1,YEAR=2019,MONTH=3,WEEK_OF_YEAR=17,WEEK_OF_MONTH=4,DAY_OF_MONTH=23,DAY_OF_YEAR=113,DAY_OF_WEEK=3,DAY_OF_WEEK_IN_MONTH=4,AM_PM=1,HOUR=0,HOUR_OF_DAY=12,MINUTE=58,SECOND=7,MILLISECOND=0,ZONE_OFFSET=0,DST_OFFSET=0],
> tenant=Tenant [id=ecf1539291894c76a6b57308ae4726a3, name=admin,
> description=null, enabled=true]], serviceCatalog=[Service [type=volumev3,
> name=cinderv3, endpoints=[Endpoint [region=RegionOne, publicURL=
> http://<OpenStackHostname>:8776/v3/ecf1539291894c76a6b57308ae4726a3
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__-253COpenStackHostname-253E-3A8776_v3_ecf1539291894c76a6b57308ae4726a3&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=IDDuY_dSYs412PA_kX72yDxAgkMhwjKQnnN9ly6PzFc&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=image, name=glance, endpoints=[Endpoint [region=RegionOne, publicURL=
> http://<OpenStackHostname>:9292
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__-253COpenStackHostname-253E-3A9292&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=H2BCSG8mMONYdvkyl8MhoCJSWXcVInfl_18sakw6pXA&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=application-catalog, name=murano, endpoints=[Endpoint
> [region=RegionOne, publicURL=http://<OpenStackHostname>:8082
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__-253COpenStackHostname-253E-3A8082&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=_wFratetINnt03mtWscysII1oMVJ__ii01EAvxScB8o&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=network, name=neutron, endpoints=[Endpoint [region=RegionOne,
> publicURL=http://<OpenStackHostname>:9696
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__-253COpenStackHostname-253E-3A9696&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=4QY0lLNhOOdFq0TUgyfoKj3J0b9J6xAdg6fNLl_HwOk&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=placement, name=placement, endpoints=[Endpoint [region=RegionOne,
> publicURL=http://<OpenStackHostname>:8778
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__-253COpenStackHostname-253E-3A8778&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=uiP0sxAJdt39_w_Smu6fkUbtYFTHZS6hfQj-gh6bgAg&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=volumev2, name=cinderv2, endpoints=[Endpoint [region=RegionOne,
> publicURL=
> http://<OpenStackHostname>:8776/v2/ecf1539291894c76a6b57308ae4726a3
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__-253COpenStackHostname-253E-3A8776_v2_ecf1539291894c76a6b57308ae4726a3&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=OUH33YQYMHgNxjXtoVf1Mu7vC0Uq1NYlz-7X-Acpros&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=identity, name=keystone, endpoints=[Endpoint [region=RegionOne,
> publicURL=http://<OpenStackHostname>:5000/v3/
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__-253COpenStackHostname-253E-3A5000_v3_&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=QstAg2Kvamh8RWy9o6x7QvgIcj8-G3dBXO0BOkqU3oE&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null], Service
> [type=compute, name=nova, endpoints=[Endpoint [region=RegionOne, publicURL=
> http://<OpenStackHostname>:8774/v2.1
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__-253COpenStackHostname-253E-3A8774_v2.1&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=IPMHiO1_7JzeuA4jRwxLmZX_kYK7s6DFivDWiXd1WU8&e=>,
> internalURL=null, adminURL=null]], endpointsLinks=null]], user=User
> [id=ce13f5cba38646db89d51b4fb296c245, name=admin, username=null,
> roles=null, rolesLinks=null], metadata=null]
>
> 2019-04-23T11:58:07.062Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
>
> 2019-04-23T11:58:07.062Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
>
> 2019-04-23T11:58:07.062Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
>
> 2019-04-23T11:58:07.062Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
>
> 2019-04-23T11:58:07.062Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
>
> 2019-04-23T11:58:07.063Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
>
> 2019-04-23T11:58:07.063Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
>
> 2019-04-23T11:58:07.063Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - AIC returned region=RegionOne
>
> 2019-04-23T11:58:07.066Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.openstack.utils.MsoHeatUtils - RA_CONNECTION_EXCEPTION
>
> 2019-04-23T11:58:07.072Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.adapters.vnf.MsoVnfAdapterImpl - RA_QUERY_VNF_ERR
>
> org.onap.so.openstack.exceptions.MsoAdapterException: AIC did not match an
> orchestration service for: region=RegionOne,cloud=
> http://xx.xx.xx.xx:30280/api/multicloud/v0/CloudOwner_RegionOne/identity/v2.0
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__xx.xx.xx.xx-3A30280_api_multicloud_v0_CloudOwner-5FRegionOne_identity_v2.0&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=ZK-ULyTdmr5VWSI2c1BwAuMXjQZAlRnJPYYm0k4ELjE&e=>
>
> at
> org.onap.so.openstack.utils.MsoHeatUtils.getHeatClient(MsoHeatUtils.java:948)
>
> at
> org.onap.so.openstack.utils.MsoHeatUtils.queryStack(MsoHeatUtils.java:571)
>
> at
> org.onap.so.adapters.vnf.MsoVnfAdapterImpl.createVfModule(MsoVnfAdapterImpl.java:658)
>
> at
> org.onap.so.adapters.vnf.MsoVnfAdapterImpl$$FastClassBySpringCGLIB$$8b1f101c.invoke(<generated>)
>
> at
> org.springframework.cglib.proxy.MethodProxy.invoke(MethodProxy.java:204)
>
> at
> org.springframework.aop.framework.CglibAopProxy$CglibMethodInvocation.invokeJoinpoint(CglibAopProxy.java:736)
>
> at
> org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:157)
>
> at
> org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:99)
>
> at
> org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:282)
>
> at
> org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96)
>
> at
> org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179)
>
> at
> org.springframework.aop.framework.CglibAopProxy$DynamicAdvisedInterceptor.intercept(CglibAopProxy.java:671)
>
> at
> org.onap.so.adapters.vnf.MsoVnfAdapterImpl$$EnhancerBySpringCGLIB$$2b1b798a.createVfModule(<generated>)
>
> at
> org.onap.so.adapters.vnf.VnfAdapterRest$CreateVfModuleTask.run(VnfAdapterRest.java:440)
>
> at java.lang.Thread.run(Thread.java:748)
>
> Caused by: java.lang.RuntimeException: endpoint url not found
>
> at
> com.woorea.openstack.keystone.utils.KeystoneUtils.findEndpointURL(KeystoneUtils.java:38)
>
> at
> org.onap.so.openstack.utils.MsoHeatUtils.getHeatClient(MsoHeatUtils.java:942)
>
> ... 14 common frames omitted
>
> 2019-04-23T11:58:07.075Z|3d1d8156-438c-4b54-a53b-8ee2136723c7|
> org.onap.so.adapters.vnf.VnfAdapterRest - Exception :
>
> org.onap.so.adapters.vnf.exceptions.VnfException:
> org.onap.so.openstack.exceptions.MsoAdapterException: AIC did not match an
> orchestration service for: region=RegionOne,cloud=
> http://xx.xx.xx.xx:30280/api/multicloud/v0/CloudOwner_RegionOne/identity/v2.0
> <https://urldefense.proofpoint.com/v2/url?u=http-3A__xx.xx.xx.xx-3A30280_api_multicloud_v0_CloudOwner-5FRegionOne_identity_v2.0&d=DwQFaQ&c=LFYZ-o9_HUMeMTSQicvjIg&r=e3d1ehx3DI5AoMgDmi2Fzw&m=rMpCykom5TUVWU90E1Amz3oPUy9AKiVJdGO8ld4M9MA&s=ZK-ULyTdmr5VWSI2c1BwAuMXjQZAlRnJPYYm0k4ELjE&e=>
>
>
>
>
>
>
>
>
>
>
>
>
-=-=-=-=-=-=-=-=-=-=-=-
Links: You receive all messages sent to this group.
View/Reply Online (#16694): https://lists.onap.org/g/onap-discuss/message/16694
Mute This Topic: https://lists.onap.org/mt/31308892/21656
Mute #so: https://lists.onap.org/mk?hashtag=so&subid=2740164
Mute #casablanca: https://lists.onap.org/mk?hashtag=casablanca&subid=2740164
Mute #robot: https://lists.onap.org/mk?hashtag=robot&subid=2740164
Group Owner: [email protected]
Unsubscribe: https://lists.onap.org/g/onap-discuss/unsub
[[email protected]]
-=-=-=-=-=-=-=-=-=-=-=-