~corey.bryant/openstack-charm-testing/neutron-for-nova

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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
# vim: set ts=2 et:
openstack-services:
  services:
    mysql:
      branch: lp:charms/mysql
      constraints: mem=1G
      options:
        dataset-size: 50%
    ceph:
      branch: lp:~openstack-charmers/charms/trusty/ceph/next
      num_units: 3
      constraints: mem=1G
      options:
        monitor-count: 3
        fsid: 6547bd3e-1397-11e2-82e5-53567c8d32dc
        monitor-secret: AQCXrnZQwI7KGBAAiPofmKEXKxu5bUzoYLVkbQ==
        osd-devices: /dev/vdb
        osd-reformat: "yes"
        ephemeral-unmount: /mnt
    keystone:
      branch: lp:~openstack-charmers/charms/trusty/keystone/next
      constraints: mem=1G
      options:
        admin-password: openstack
        admin-token: ubuntutesting
    nova-compute:
      branch: lp:~openstack-charmers/charms/trusty/nova-compute/0mq
      num_units: 10
      constraints: mem=8G
      options:
        enable-live-migration: True
        enable-resize: True
    nova-cloud-controller:
      branch: lp:~openstack-charmers/charms/trusty/nova-cloud-controller/0mq
      num_units: 1
      constraints: mem=1G
      options:
        network-manager: Neutron
        quantum-security-groups: "yes"
    neutron-gateway:
      branch: lp:~openstack-charmers/charms/trusty/quantum-gateway/0mq
      constraints: mem=1G
      options:
        instance-mtu: 1300
    cinder:
      branch: lp:~openstack-charmers/charms/trusty/cinder/0mq
      options:
        block-device: "None"
        glance-api-version: 2
      constraints": mem=1G
    glance:
      branch: lp:~openstack-charmers/charms/trusty/glance/0mq
      constraints: mem=1G
    ganglia:
      branch: lp:charms/ganglia
    ganglia-node:
      branch: lp:charms/ganglia-node
  relations:
    - [ keystone, mysql ]
    - [ nova-cloud-controller, mysql ]
    - [ nova-cloud-controller, glance ]
    - [ nova-cloud-controller, keystone ]
    - [ nova-cloud-controller, ganglia-node ]
    - [ nova-compute, nova-cloud-controller ]
    - [ nova-compute, mysql ]
    - [ nova-compute, glance ]
    - [ nova-compute, ceph ]
    - [ nova-compute, ganglia-node ]
    - [ glance, mysql ]
    - [ glance, keystone ]
    - [ glance, ceph ]
    - [ glance, cinder ]
    - [ cinder, mysql ]
    - [ cinder, nova-cloud-controller ]
    - [ cinder, keystone ]
    - [ cinder, ceph ]
    - [ cinder, ganglia-node ]
    - [ neutron-gateway, mysql ]
    - [ neutron-gateway, nova-cloud-controller ]
    - [ neutron-gateway, ganglia-node ]
    - [ "ganglia:master", ganglia-node ]
openstack-icehouse:
  inherits: openstack-services
  services:
    neutron-api:
      branch: lp:~openstack-charmers/charms/trusty/neutron-api/0mq
      constraints: mem=1G
      options:
        neutron-security-groups: True
    neutron-openvswitch:
      branch: lp:~openstack-charmers/charms/trusty/neutron-openvswitch/0mq
  relations:
  - [ neutron-api, mysql ]
  - [ neutron-api, nova-cloud-controller ]
  - [ neutron-api, neutron-openvswitch ]
  - [ neutron-api, keystone ]
  - [ neutron-api, ganglia-node ]
  - [ neutron-openvswitch, nova-compute ]
openstack-icehouse-rmq:
  inherits: openstack-icehouse
  services:
    rabbitmq-server:
      branch: lp:charms/trusty/rabbitmq-server
  relations:
  - [ neutron-api, rabbitmq-server ]
  - [ "neutron-gateway:amqp", rabbitmq-server ]
  - [ neutron-openvswitch, rabbitmq-server ]
  - [ nova-cloud-controller, rabbitmq-server ]
  - [ nova-compute, rabbitmq-server ]
  - [ glance, rabbitmq-server ]
openstack-icehouse-zmq:
  inherits: openstack-icehouse
  services:
    redis:
      branch: lp:charms/redis-master
    openstack-zeromq:
      branch: lp:~openstack-charmers/charms/trusty/openstack-zeromq/trunk
  relations:
  - [ neutron-api, openstack-zeromq ]
  - [ neutron-gateway, openstack-zeromq ]
  - [ neutron-openvswitch, openstack-zeromq ]
  - [ nova-cloud-controller, openstack-zeromq ]
  - [ nova-compute, openstack-zeromq ]
  - [ neutron-gateway, openstack-zeromq ]
  - [ glance, openstack-zeromq ]
  - [ cinder, openstack-zeromq ]
  - [ "openstack-zeromq:redis", "redis:db" ]
# trusty configurations
trusty-juno-zmq:
  inherits: openstack-icehouse-zmq
  series: trusty
  overrides:
    openstack-origin: cloud:trusty-juno
trusty-juno-rmq:
  inherits: openstack-icehouse-rmq
  series: trusty
  overrides:
    openstack-origin: cloud:trusty-juno
# utopic configuration
utopic-juno-zmq:
  inherits: openstack-icehouse-zmq
  series: utopic
utopic-juno-rmq:
  inherits: openstack-icehouse-rmq
  series: utopic