~plumgrid-team/charms/bundles/plumgrid-ons/single-controller

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
146
147
148
149
150
151
152
test:
  series: 'trusty'
  relations:
  - - neutron-iovisor
    - plumgrid-edge
  - - plumgrid-director
    - plumgrid-edge
  - - neutron-iovisor
    - plumgrid-director
  - - plumgrid-director
    - plumgrid-gateway
  - - neutron-iovisor
    - plumgrid-gateway
  - - neutron-iovisor
    - neutron-plumgrid-plugin
  - - nova-cloud-controller
    - nova-compute
  - - glance
    - nova-compute
  - - nova-compute
    - rabbitmq-server
  - - mysql
    - nova-compute
  - - cinder
    - mysql
  - - glance
    - mysql
  - - keystone
    - mysql
  - - mysql
    - neutron-api
  - - mysql
    - nova-cloud-controller
  - - cinder
    - nova-cloud-controller
  - - nova-cloud-controller
    - rabbitmq-server
  - - glance
    - nova-cloud-controller
  - - keystone
    - nova-cloud-controller
  - - neutron-api
    - nova-cloud-controller
  - - cinder
    - rabbitmq-server
  - - neutron-api
    - rabbitmq-server
  - - cinder
    - keystone
  - - glance
    - keystone
  - - keystone
    - neutron-api
  - - keystone
    - neutron-plumgrid-plugin
  - - keystone
    - openstack-dashboard
  - - neutron-api
    - neutron-plumgrid-plugin
  - - cinder
    - glance
  services:
    cinder:
      charm: cs:trusty/cinder
      num_units: 1
      options:
        openstack-origin: cloud:trusty-juno
      to: 'lxc:0'
    glance:
      charm: cs:trusty/glance
      num_units: 1
      options:
        openstack-origin: cloud:trusty-juno
      to: 'lxc:0'
    keystone:
      charm: cs:trusty/keystone
      num_units: 1
      options:
        admin-password: plumgrid
        openstack-origin: cloud:trusty-juno
      to: 'lxc:0'
    mysql:
      charm: cs:trusty/mysql
      num_units: 1
      to: 'lxc:0'
    neutron-api:
      charm: cs:~plumgrid-team/trusty/neutron-api
      num_units: 1
      options:
        neutron-plugin: plumgrid
        neutron-security-groups: false
        openstack-origin: cloud:trusty-juno
        plumgrid-password: plumgrid
        plumgrid-username: plumgrid
        plumgrid-virtual-ip: 192.168.100.250
      to: 'lxc:0'
    neutron-iovisor:
      charm: cs:~plumgrid-team/trusty/neutron-iovisor
      num_units: 3
      options:
        install_keys: 'null' 
        install_sources: 'ppa:plumgrid-team/test'
      to: [0, nova-compute=0, nova-compute=1]
    neutron-plumgrid-plugin:
      charm: cs:~plumgrid-team/trusty/neutron-plumgrid-plugin
      num_units: 1
      options:
        install_keys: 'null'
        install_sources: 'ppa:plumgrid-team/test'
    nova-cloud-controller:
      charm: cs:trusty/nova-cloud-controller
      num_units: 1
      options:
        console-access-protocol: novnc
        network-manager: Neutron
        openstack-origin: cloud:trusty-juno
        quantum-security-groups: 'yes'
      to: 'lxc:0'
    nova-compute:
      charm: cs:~plumgrid-team/trusty/nova-compute
      num_units: 2
      options:
        enable-live-migration: true
        enable-resize: true
        migration-auth-type: ssh
        openstack-origin: cloud:trusty-juno
    openstack-dashboard:
      charm: cs:trusty/openstack-dashboard
      num_units: 1
      options:
        openstack-origin: cloud:trusty-juno
      to: 'lxc:0'
    plumgrid-director:
      charm: cs:~plumgrid-team/trusty/plumgrid-director
      num_units: 1
      options:
        plumgrid-virtual-ip: 192.168.100.250
      to: '0'
    plumgrid-edge:
      charm: cs:~plumgrid-team/trusty/plumgrid-edge
      num_units: 1
      to: nova-compute=0
    plumgrid-gateway:
      charm: cs:~plumgrid-team/trusty/plumgrid-gateway
      num_units: 1
      options:
        external-interface: eth1
      to: nova-compute=1
    rabbitmq-server:
      charm: cs:trusty/rabbitmq-server
      num_units: 1
      to: 'lxc:0'