Update Ranger service endpoints

Change-Id: I096918c9b245391c05f32a98350ce5bfa6aa9117
This commit is contained in:
stewie925 2019-03-13 10:39:00 -07:00
parent 25705b7509
commit 4520efebe2
7 changed files with 19 additions and 17 deletions

View File

@ -1,3 +1,5 @@
import orm.base_config as config
from orm.services.customer_manager.cms_rest.controllers.v1 import root as v1 from orm.services.customer_manager.cms_rest.controllers.v1 import root as v1
from pecan import expose from pecan import expose
@ -20,7 +22,7 @@ class RootController(object):
"id": "v1", "id": "v1",
"links": [ "links": [
{ {
"href": "http://localhost:7080/" "href": config.cms['base_url']
} }
] ]
} }

View File

@ -31,8 +31,6 @@ database = {
'connection_string': config.db_connect 'connection_string': config.db_connect
} }
application_root = 'http://localhost:{0}'.format(server['port'])
api = { api = {
'uuid_server': { 'uuid_server': {
'base': config.uuid['base_url'], 'base': config.uuid['base_url'],

View File

@ -1,6 +1,7 @@
from orm.services.flavor_manager.fms_rest.controllers.v1.v1 import V1Controller import orm.base_config as config
from pecan import conf, expose from orm.services.flavor_manager.fms_rest.controllers.v1.v1 import V1Controller
from pecan import expose
from webob.exc import status_map from webob.exc import status_map
@ -8,12 +9,11 @@ class RootController(object):
v1 = V1Controller() v1 = V1Controller()
@expose(template='json') @expose(template='json')
def get(self): def _default(self):
"""Method to handle GET / """Method to handle GET /
prameters: None prameters: None
return: dict describing flavor command version information return: dict describing flavor command version information
""" """
return { return {
"versions": { "versions": {
"values": [ "values": [
@ -22,7 +22,7 @@ class RootController(object):
"id": "v1", "id": "v1",
"links": [ "links": [
{ {
"href": conf.application_root "href": config.fms['base_url']
} }
] ]
} }

View File

@ -1,5 +1,5 @@
import logging import logging
import orm.base_config as config
import orm.services.id_generator.uuidgen.controllers.v1.root as root import orm.services.id_generator.uuidgen.controllers.v1.root as root
from pecan import expose from pecan import expose
from pecan.rest import RestController from pecan.rest import RestController
@ -26,7 +26,7 @@ class RootController(RestController):
"id": "v1", "id": "v1",
"links": [ "links": [
{ {
"href": "http://localhost:8090/" "href": config.uuid['base_url']
} }
] ]
} }

View File

@ -30,8 +30,6 @@ database = {
} }
application_root = config.ims['base_url']
api = { api = {
'uuid_server': { 'uuid_server': {
'base': config.uuid['base_url'], 'base': config.uuid['base_url'],

View File

@ -1,5 +1,7 @@
import orm.base_config as config
from orm.services.image_manager.ims.controllers.v1.v1 import V1Controller from orm.services.image_manager.ims.controllers.v1.v1 import V1Controller
from pecan import conf, expose from pecan import expose
from webob.exc import status_map from webob.exc import status_map
@ -7,7 +9,7 @@ class RootController(object):
v1 = V1Controller() v1 = V1Controller()
@expose(template='json') @expose(template='json')
def get(self): def _default(self):
"""Method to handle GET / """Method to handle GET /
prameters: None prameters: None
return: dict describing image command version information return: dict describing image command version information
@ -21,7 +23,7 @@ class RootController(object):
"id": "v1", "id": "v1",
"links": [ "links": [
{ {
"href": conf.application_root "href": config.ims['base_url']
} }
] ]
} }

View File

@ -1,8 +1,10 @@
from configuration import ConfigurationController from configuration import ConfigurationController
from lcp_controller import LcpController from lcp_controller import LcpController
from logs import LogsController from logs import LogsController
from orm.services.region_manager.rms.controllers.v2 import root
import orm.base_config as config
from orm.services.region_manager.rms.controllers.v2 import root
from pecan import expose from pecan import expose
@ -27,7 +29,7 @@ class RootController(object):
"id": "v2", "id": "v2",
"links": [ "links": [
{ {
"href": "http://localhost:8080/" "href": config.rms['base_url']
} }
] ]
} }