Merge lp:~dweaver/orange-box-examples/orange-box-examples into lp:~kirkland/orange-box-examples/trunk

Proposed by Darryl Weaver
Status: Merged
Merged at revision: 21
Proposed branch: lp:~dweaver/orange-box-examples/orange-box-examples
Merge into: lp:~kirkland/orange-box-examples/trunk
Diff against target: 95 lines (+38/-4)
6 files modified
usr/lib/orange-box/examples/infrastructure/precise/infrastructure-bundle.yaml (+1/-1)
usr/lib/orange-box/examples/infrastructure/trusty/infrastructure-bundle.yaml (+1/-1)
usr/lib/orange-box/examples/openstack/icehouse/precise/icehouseOB.yaml (+1/-1)
usr/lib/orange-box/examples/openstack/icehouse/precise/integrate-infrastructure.sh (+17/-0)
usr/lib/orange-box/examples/openstack/icehouse/trusty/icehouseOB.yaml (+1/-1)
usr/lib/orange-box/examples/openstack/icehouse/trusty/integrate-infrastructure.sh (+17/-0)
To merge this branch: bzr merge lp:~dweaver/orange-box-examples/orange-box-examples
Reviewer Review Type Date Requested Status
Dustin Kirkland  Pending
Review via email: mp+228571@code.launchpad.net

Description of the change

Adding integrate-infrastructure.sh to combine openstack with infrastructure services.
Changing tags to physical and virtual.

To post a comment you must log in.
21. By Dustin Kirkland 

* usr/lib/orange-box/examples/infrastructure/precise/infrastructure-
  bundle.yaml, usr/lib/orange-
  box/examples/infrastructure/trusty/infrastructure-bundle.yaml,
  usr/lib/orange-
  box/examples/openstack/icehouse/precise/icehouseOB.yaml,
  usr/lib/orange-box/examples/openstack/icehouse/precise/integrate-
  infrastructure.sh, usr/lib/orange-
  box/examples/openstack/icehouse/trusty/icehouseOB.yaml,
  usr/lib/orange-box/examples/openstack/icehouse/trusty/integrate-
  infrastructure.sh:
  - Adding integrate-infrastructure.sh to combine openstack with
    infrastructure services.
  - Changing tags to physical and virtual.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'usr/lib/orange-box/examples/infrastructure/precise/infrastructure-bundle.yaml'
--- usr/lib/orange-box/examples/infrastructure/precise/infrastructure-bundle.yaml 2014-07-24 01:20:29 +0000
+++ usr/lib/orange-box/examples/infrastructure/precise/infrastructure-bundle.yaml 2014-07-28 20:32:55 +0000
@@ -9,7 +9,7 @@
9 nagios: 9 nagios:
10 branch: "lp:charms/nagios"10 branch: "lp:charms/nagios"
11 num_units: 111 num_units: 1
12 constraints: tags=nagios12 constraints: tags=virtual
13 expose: true13 expose: true
14 annotations: 14 annotations:
15 "gui-x": "-680"15 "gui-x": "-680"
1616
=== modified file 'usr/lib/orange-box/examples/infrastructure/trusty/infrastructure-bundle.yaml'
--- usr/lib/orange-box/examples/infrastructure/trusty/infrastructure-bundle.yaml 2014-07-24 01:20:29 +0000
+++ usr/lib/orange-box/examples/infrastructure/trusty/infrastructure-bundle.yaml 2014-07-28 20:32:55 +0000
@@ -9,7 +9,7 @@
9 nagios: 9 nagios:
10 branch: "lp:charms/nagios"10 branch: "lp:charms/nagios"
11 num_units: 111 num_units: 1
12 constraints: tags=nagios12 constraints: tags=virtual
13 expose: true13 expose: true
14 annotations: 14 annotations:
15 "gui-x": "-680"15 "gui-x": "-680"
1616
=== modified file 'usr/lib/orange-box/examples/openstack/icehouse/precise/icehouseOB.yaml'
--- usr/lib/orange-box/examples/openstack/icehouse/precise/icehouseOB.yaml 2014-07-25 18:07:05 +0000
+++ usr/lib/orange-box/examples/openstack/icehouse/precise/icehouseOB.yaml 2014-07-28 20:32:55 +0000
@@ -38,7 +38,7 @@
38 "neutron-gateway":38 "neutron-gateway":
39 charm: "cs:precise/quantum-gateway-21"39 charm: "cs:precise/quantum-gateway-21"
40 num_units: 140 num_units: 1
41 constraints: tags=neutron41 constraints: tags=virtual
42 options:42 options:
43 ext-port: eth143 ext-port: eth1
44 instance-mtu: 140044 instance-mtu: 1400
4545
=== added file 'usr/lib/orange-box/examples/openstack/icehouse/precise/integrate-infrastructure.sh'
--- usr/lib/orange-box/examples/openstack/icehouse/precise/integrate-infrastructure.sh 1970-01-01 00:00:00 +0000
+++ usr/lib/orange-box/examples/openstack/icehouse/precise/integrate-infrastructure.sh 2014-07-28 20:32:55 +0000
@@ -0,0 +1,17 @@
1#!/bin/bash
2
3set -e
4
5echo "Adding relationships to infrastructure services"
6
7services="mysql rabbitmq nova-cloud-controller nova-compute cinder glance neutron-gateway openstack-dashboard ceph ceph-radosgw mongodb ceilometer heat keystone"
8
9for service in $services
10do
11 juju add-relation $service nagios
12 juju add-relation $service nrpe
13 juju add-relation $service landscape-client
14 juju add-relation $service ganglia-node
15
16done
17echo "Finished"
018
=== modified file 'usr/lib/orange-box/examples/openstack/icehouse/trusty/icehouseOB.yaml'
--- usr/lib/orange-box/examples/openstack/icehouse/trusty/icehouseOB.yaml 2014-07-25 18:07:05 +0000
+++ usr/lib/orange-box/examples/openstack/icehouse/trusty/icehouseOB.yaml 2014-07-28 20:32:55 +0000
@@ -38,7 +38,7 @@
38 "neutron-gateway":38 "neutron-gateway":
39 charm: "cs:trusty/quantum-gateway-3"39 charm: "cs:trusty/quantum-gateway-3"
40 num_units: 140 num_units: 1
41 constraints: tags=neutron41 constraints: tags=virtual
42 options:42 options:
43 ext-port: eth143 ext-port: eth1
44 instance-mtu: 140044 instance-mtu: 1400
4545
=== added file 'usr/lib/orange-box/examples/openstack/icehouse/trusty/integrate-infrastructure.sh'
--- usr/lib/orange-box/examples/openstack/icehouse/trusty/integrate-infrastructure.sh 1970-01-01 00:00:00 +0000
+++ usr/lib/orange-box/examples/openstack/icehouse/trusty/integrate-infrastructure.sh 2014-07-28 20:32:55 +0000
@@ -0,0 +1,17 @@
1#!/bin/bash
2
3set -e
4
5echo "Adding relationships to infrastructure services"
6
7services="mysql rabbitmq nova-cloud-controller nova-compute cinder glance neutron-gateway openstack-dashboard ceph ceph-radosgw mongodb ceilometer heat keystone"
8
9for service in $services
10do
11 juju add-relation $service nagios
12 juju add-relation $service nrpe
13 juju add-relation $service landscape-client
14 juju add-relation $service ganglia-node
15
16done
17echo "Finished"

Subscribers

People subscribed via source and target branches