Add missing port parameter for nova puppet

Signed-off-by: Bogdan Dobrelya <bdobrelia@mirantis.com>
This commit is contained in:
Bogdan Dobrelya
2015-07-29 13:54:39 +02:00
parent 08b4bb7f02
commit 67d3d751b1
2 changed files with 5 additions and 4 deletions

View File

@@ -298,10 +298,7 @@ def deploy():
'internalurl': 'http://{{internal_ip}}:{{internal_port}}/v2/%(tenant_id)s',
'publicurl': 'http://{{public_ip}}:{{public_port}}/v2/%(tenant_id)s',
'description': 'OpenStack Compute Service',
'type': 'compute',
'public_port': 8774,
'internal_port': 8774,
'admin_port': 8774})[0]
'type': 'compute'})[0]
signals.connect(node1, nova_puppet)
signals.connect(node1, nova_db)

View File

@@ -225,6 +225,10 @@ input:
schema: str!
value:
port:
schema: int!
value: 8774
git:
schema: {repository: str!, branch: str!}
value: {repository: 'https://github.com/openstack/puppet-nova', branch: '5.1.0'}