Fix glance/cinder test.py input names
This commit is contained in:
@@ -6,5 +6,5 @@ from solar.core.log import log
|
|||||||
def test(resource):
|
def test(resource):
|
||||||
log.debug('Testing cinder_api_puppet')
|
log.debug('Testing cinder_api_puppet')
|
||||||
requests.get(
|
requests.get(
|
||||||
'http://%s:%s' % (resource.args['ip'].value, resource.args['port'].value)
|
'http://%s:%s' % (resource.args['ip'].value, resource.args['service_port'].value)
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ input:
|
|||||||
value: '127.0.0.1'
|
value: '127.0.0.1'
|
||||||
auth_url:
|
auth_url:
|
||||||
schema: str
|
schema: str
|
||||||
value: 'http://localhost:5000/v2.0'
|
value: 'http://{{auth_host}}:{{auth_port}}/v2.0'
|
||||||
auth_port:
|
auth_port:
|
||||||
schema: int
|
schema: int
|
||||||
value: 35357
|
value: 35357
|
||||||
|
|||||||
@@ -6,5 +6,5 @@ from solar.core.log import log
|
|||||||
def test(resource):
|
def test(resource):
|
||||||
log.debug('Testing glance_registry_puppet')
|
log.debug('Testing glance_registry_puppet')
|
||||||
requests.get(
|
requests.get(
|
||||||
'http://%s:%s' % (resource.args['ip'].value, resource.args['port'].value)
|
'http://%s:%s' % (resource.args['ip'].value, resource.args['bind_port'].value)
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user