diff options
author | Narinder Gupta <narinder.gupta@canonical.com> | 2016-07-07 23:24:02 -0500 |
---|---|---|
committer | Narinder Gupta <narinder.gupta@canonical.com> | 2016-07-07 23:27:24 -0500 |
commit | 5e5881112d62c2089dd13b805682cfe2e9b878b5 (patch) | |
tree | 68ede785a3a49cd55fb305abe1458d7efaf77b28 /ci/bundle_tpl | |
parent | f22e7ac163e30b07bb1582d55c40123ef23a735f (diff) |
trying different option as delpoyment failed.
Change-Id: I037057b59b2dd89f146cf65de03a2fe0053d19be
Signed-off-by: Narinder Gupta <narinder.gupta@canonical.com>
Diffstat (limited to 'ci/bundle_tpl')
-rw-r--r-- | ci/bundle_tpl/bundle.yaml | 13 | ||||
-rw-r--r-- | ci/bundle_tpl/mysql.yaml | 2 | ||||
-rw-r--r-- | ci/bundle_tpl/nova-cloud-controller.yaml | 2 |
3 files changed, 12 insertions, 5 deletions
diff --git a/ci/bundle_tpl/bundle.yaml b/ci/bundle_tpl/bundle.yaml index 713a6931..62047fba 100644 --- a/ci/bundle_tpl/bundle.yaml +++ b/ci/bundle_tpl/bundle.yaml @@ -1,9 +1,12 @@ # vim: set ts=2 et: -{{ ubuntu.release }}-{{ os.release }}: +{{ ubuntu.release }}-{{ os.release }}-nodes: inherits: openstack-phase1 overrides: {% include 'phase2-overrides.yaml' %} +{{ ubuntu.release }}-{{ os.release }}: + inherits: openstack-phase2 + openstack-phase1: services: nodes: @@ -45,12 +48,16 @@ openstack-phase1: {% if os.ha.mode == 'ha' %} {% include 'haclusters.yaml' %} {% endif %} -{% include 'subordinate.yaml' %} relations: - [ 'ntp:juju-info', 'nodes:juju-info' ] {% if os.ha.mode == 'ha' %} {% include 'harelations.yaml' %} {% endif %} -{% include 'relations.yaml' %} +openstack-phase2: + inherits: openstack-phase1 + relations: +{% include 'relations.yaml' %} + services: +{% include 'subordinate.yaml' %} diff --git a/ci/bundle_tpl/mysql.yaml b/ci/bundle_tpl/mysql.yaml index 2c618b20..110140e9 100644 --- a/ci/bundle_tpl/mysql.yaml +++ b/ci/bundle_tpl/mysql.yaml @@ -2,7 +2,7 @@ charm: "local:{{ ubuntu.release }}/percona-cluster" num_units: {{ unit_qty() }} options: - innodb-buffer-pool-size: 2G + innodb-buffer-pool-size: 100M #lp1366997-workaround: true max-connections: 20000 root-password: {{ get_password('mysql_root') }} diff --git a/ci/bundle_tpl/nova-cloud-controller.yaml b/ci/bundle_tpl/nova-cloud-controller.yaml index 20e9bf4f..1dfc47ec 100644 --- a/ci/bundle_tpl/nova-cloud-controller.yaml +++ b/ci/bundle_tpl/nova-cloud-controller.yaml @@ -2,7 +2,7 @@ charm: "local:{{ ubuntu.release }}/nova-cloud-controller" num_units: {{ unit_qty() }} options: - console-access-protocol: novnc + #console-access-protocol: novnc neutron-external-network: ext-net service-guard: true {% if opnfv.domain is defined %} |