aboutsummaryrefslogtreecommitdiff
path: root/cloud-deploy/openstack-config.yaml
blob: 65dbd8d8e9c4f7c17af62e1b392d6dc4db25f237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
keystone:
   # Set this here for testing only, otherwise randomly 
   # generated and stored on-disk on keystone node
   admin-password: 'admin'
   admin-token: 'admin'
   debug: 'true'
   log-level: DEBUG

nova-cloud-controller:
   #openstack-origin: cloud:trusty-icehouse
   network-manager: 'FlatDHCPManager'
   
cinder-api:
   enable-services: api, scheduler

cinder:
   # block-device must be a free writable block device on cinder-volume host
   block-device: '/srv/cinder.data|750G'
   glance-api-version: 2

openstack-dashboard:
   #openstack-origin: cloud:trusty-icehouse
   offline-compression: 'yes'
   secret: linaro
   ubuntu-theme: 'no'

nova-compute:
   # public_interface needs to be set to the interface that VM traffic is to go over
   # nova will setup iptables rules to NAT the traffic directed to the assigned
   # floating ip address to this interface

   config-flags: 'vnc_enabled=False,public_interface=juju-br0'

   # flat-interface needs to be set to the interface that openstack-internal traffic
   # is to go over.  This is the interface on the node running nova-compute that will
   # be assigned an internal IP address
   flat-interface: eth0

   # set to 'yes' to make nova-network run on the same node as nova-compute
   multi-host: 'yes'

   enable-live-migration: 'False'
   migration-auth-type: "none"
   virt-type: kvm
   enable-resize: 'False'