diff --git a/config.yaml b/config.yaml new file mode 100644 index 00000000..3883c38c --- /dev/null +++ b/config.yaml @@ -0,0 +1,41 @@ +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 + network-manager: + default: FlatManager + type: str + description: Network manager for nova-network + 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-cloud-controller.yaml b/nova-cloud-controller.yaml new file mode 100644 index 00000000..c3199dcc --- /dev/null +++ b/nova-cloud-controller.yaml @@ -0,0 +1,11 @@ +nova-cloud-controller: + nova-release: trunk + nova-config: /etc/nova/nova.conf + db-user: nova + nova-db: nova + rabbit-user: nova + rabbit-vhost: nova + network-manager: FlatManager + bridge-interface: br100 + bridge-ip: 11.0.0.1 + bridge-netmask: 255.255.255.0