Ensure the nova items needed are in the keystone component configuration

This commit is contained in:
Joshua Harlow 2012-08-22 18:41:27 -07:00
parent 1b9dd4fe7f
commit 00aae60fac
2 changed files with 15 additions and 0 deletions

View File

@ -25,4 +25,17 @@ glance:
api_port: "$(glance:api_port)"
protocol: "$(glance:protocol)"
reg_port: "$(glance:reg_port)"
nova:
api_host: "$(nova:api_host)"
api_port: "$(nova:api_port)"
s3_host: "$(nova:s3_host)"
s3_port: "$(nova:s3_port)"
volume_host: "$(nova:volume_host)"
volume_port: "$(nova:volume_port)"
ec2_host: "$(nova:ec2_host)"
ec2_port: "$(nova:ec2_port)"
ec2_admin_host: "$(nova:ec2_admin_host)"
ec2_admin_port: "$(nova:ec2_admin_port)"
protocol: "$(nova:protocol)"
...

2
tools/interp.py → tools/component-config.py Normal file → Executable file
View File

@ -1,3 +1,5 @@
#!/usr/bin/env python
import os
import sys