From d3f12b75860eb4d0bae4cdb9beeb5c732327f532 Mon Sep 17 00:00:00 2001 From: Adam Gandelman Date: Wed, 10 Aug 2011 08:06:24 -0700 Subject: [PATCH] Checkin config files --- config.yaml | 37 +++++++++++++++++++++++++++++++++++++ nova-compute.yaml | 10 ++++++++++ 2 files changed, 47 insertions(+) create mode 100644 config.yaml create mode 100644 nova-compute.yaml diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..bb7325a --- /dev/null +++ b/config.yaml @@ -0,0 +1,37 @@ +options: + nova-release: + default: distro + type: str + description: Nova PPA from which to install. (distro, trunk, milestone, milestone-proposed) + nova-config: + default: /etc/nova/nova.conf + type: str + description: Full path to nova.conf + rabbit-user: + default: nova + type: str + description: Username used to access rabbitmq queue + rabbit-vhost: + default: nova + type: str + decsription: Rabbitmq vhost + db-user: + default: nova + type: str + description: Username for database access + nova-db: + default: nova + type: str + description: Database name + bridge-interface: + default: br100 + type: str + description: Bridge interface to be configured + bridge-ip: + default: 11.0.0.1 + type: str + description: IP to be assigned to bridge interface + bridge-netmask: + default: 255.255.255.0 + type: str + description: Netmask to be assigned to bridge interface diff --git a/nova-compute.yaml b/nova-compute.yaml new file mode 100644 index 0000000..5137f45 --- /dev/null +++ b/nova-compute.yaml @@ -0,0 +1,10 @@ +nova-compute: + nova-release: trunk + nova-config: /etc/nova/nova.conf + db-user: nova + nova-db: nova + rabbit-user: nova + rabbit-vhost: nova + bridge-interface: br100 + bridge-ip: 11.0.0.2 + bridge-netmask: 255.255.255.0