else
controllername=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployment.yaml`
cloudname=`awk 'NR==1{print substr($1, 1, length($1)-1)}' deployment.yaml`
- juju bootstrap $controllername $cloudname --debug --to bootstrap.maas
+ juju bootstrap --config agent-version=2.1-beta4 $controllername $cloudname --debug --to bootstrap.maas
fi
{% if opnfv.storage_dict.ceph is defined %}
- ceph:
- charm: "./{{ ubuntu.release }}/ceph"
+ ceph-mon:
+ charm: "./{{ ubuntu.release }}/ceph-mon"
num_units: {{ unit_ceph_qty() }}
+{% if os.service.bindings %}
+ bindings:
+{% if opnfv.spaces_dict.public is defined %}
+ public: public-api
+{% else %}
+ public: internal-api
+{% endif %}
+{% if opnfv.spaces_dict.storage is defined %}
+ cluster: cluster-stor
+{% else %}
+ cluster: internal-api
+{% endif %}
+{% endif %}
options:
monitor-count: {{ unit_ceph_qty() }}
- fsid: 5a791d94-980b-11e4-b6f6-3c970e8b1cf7
- monitor-secret: AQAi5a9UeJXUExAA+By9u+GPhl8/XiUQ4nwI3A==
+ fsid: ecbb8960-0e21-11e2-b495-83a88f44db01
+ monitor-secret: AQD1P2xQiKglDhAA4NGUF5j38Mhq56qwz+45wg==
{% if ubuntu.release == 'trusty' and os.release < 'newton' %}
source: "cloud:{{ ubuntu.release }}-updates/{{ os.release }}"
{% elif ubuntu.release == 'xenial' and os.release >= 'newton' %}
{% endif %}
{% if os.network.ipv6 %}
prefer-ipv6: {{ os.network.ipv6 }}
-{% endif %}
-{% if opnfv.spaces_dict.storage is defined %}
- #ceph-cluster-network: {{ opnfv.spaces_dict.storage.cidr }}
{% endif %}
to:
{% if os.hyperconverged %}
{% endif %}
{% else %}
num_units: 3
+{% endif %}
+{% if os.service.bindings %}
+ bindings:
+{% if opnfv.spaces_dict.public is defined %}
+ public: public-api
+{% else %}
+ public: internal-api
+{% endif %}
+{% if opnfv.spaces_dict.storage is defined %}
+ cluster: cluster-stor
+{% else %}
+ cluster: internal-api
+{% endif %}
{% endif %}
options:
osd-devices: {{ opnfv.storage_dict.ceph.disk }}
{% endif %}
options:
region: {{ os.region }}
- use-embedded-webserver: true
operator-roles: "Member,admin"
{% if ubuntu.release == 'trusty' and os.release < 'newton' %}
source: "cloud:{{ ubuntu.release }}-updates/{{ os.release }}"
{% if os.service.bindings %}
bindings:
internal: internal-api
+ shared-db: internal-api
{% if opnfv.spaces_dict.data is defined %}
admin: admin-api
{% else %}
mysql:
charm: "./{{ ubuntu.release }}/percona-cluster"
num_units: {{ unit_qty() }}
+{% if os.service.bindings %}
+ bindings:
+ shared-db: internal-api
+{% endif %}
options:
{% if os.ha.mode == 'ha' %}
innodb-buffer-pool-size: 10G
{% else %}
innodb-buffer-pool-size: 1G
{% endif %}
- max-connections: 20000
+ max-connections: 2000
root-password: {{ get_password('mysql_root') }}
sst-password: {{ get_password('mysql_sst') }}
{% if os.network.ipv6 %}
neutron-openvswitch:
charm: ./{{ ubuntu.release }}/neutron-openvswitch
- options:
{% if opnfv.spaces_dict.data is defined %}
{% if os.service.bindings %}
bindings:
data: admin-api
+ options:
+{% else %}
+ options:
{% endif %}
+{% else %}
+ options:
{% endif %}
{% if os.network.dpdk %}
enable-dpdk: true
data-port: br-ex:{{ opnfv.ext_port }}
{% endif %}
{% else %}
- ext-port: {{ opnfv.ext_port }}
+ ext-port: {{ opnfv.ext_port }}
{% endif %}
{% endif %}
{# Empty block to avoid bad block trim #}
- [ 'nova-compute:ephemeral-backend', 'scaleio-openstack:ephemeral-backend' ]
{% else %}
- [ 'cinder-ceph:storage-backend', 'cinder:storage-backend' ]
- - [ 'ceph:client', 'nova-compute:ceph' ]
- - [ 'ceph:client', 'cinder-ceph:ceph' ]
- - [ 'ceph:client', 'glance:ceph' ]
- - [ 'ceph-osd:mon', 'ceph:osd' ]
- - [ 'ceph-radosgw:mon', 'ceph:radosgw' ]
+ - [ 'ceph-mon:client', 'nova-compute:ceph' ]
+ - [ 'ceph-mon:client', 'cinder-ceph:ceph' ]
+ - [ 'ceph-mon:client', 'glance:ceph' ]
+ - [ 'ceph-osd:mon', 'ceph-mon:osd' ]
+ - [ 'ceph-radosgw:mon', 'ceph-mon:radosgw' ]
- [ 'ceph-radosgw:identity-service', 'keystone:identity-service' ]
{% if os.service.congress %}
- [ 'congress:shared-db', 'mysql:shared-db' ]
git clone https://github.com/openstack/charm-hacluster.git $distro/hacluster
git clone https://github.com/openstack/charm-ceilometer.git $distro/ceilometer
git clone https://github.com/openstack/charm-ceilometer-agent.git $distro/ceilometer-agent
-git clone https://github.com/openstack/charm-ceph-mon.git $distro/ceph
+git clone https://github.com/openstack/charm-ceph-mon.git $distro/ceph-mon
git clone https://github.com/openstack/charm-ceph-osd.git $distro/ceph-osd
git clone https://github.com/openstack/charm-ceph-radosgw.git $distro/ceph-radosgw
git clone https://github.com/openstack/charm-cinder.git $distro/cinder
git clone -b stable/16.10 https://github.com/openstack/charm-hacluster.git $distro/hacluster
git clone -b stable/16.10 https://github.com/openstack/charm-ceilometer.git $distro/ceilometer
git clone -b stable/16.10 https://github.com/openstack/charm-ceilometer-agent.git $distro/ceilometer-agent
-git clone -b stable/16.10 https://github.com/openstack/charm-ceph-mon.git $distro/ceph
+git clone -b stable/16.10 https://github.com/openstack/charm-ceph-mon.git $distro/ceph-mon
git clone -b stable/16.10 https://github.com/openstack/charm-ceph-osd.git $distro/ceph-osd
git clone -b stable/16.10 https://github.com/openstack/charm-ceph-radosgw.git $distro/ceph-radosgw
git clone -b stable/16.10 https://github.com/openstack/charm-cinder.git $distro/cinder
git clone -b stable/16.10 https://github.com/openstack/charm-hacluster.git $distro/hacluster
git clone -b stable/16.10 https://github.com/openstack/charm-ceilometer.git $distro/ceilometer
git clone -b stable/16.10 https://github.com/openstack/charm-ceilometer-agent.git $distro/ceilometer-agent
-git clone -b stable/16.10 https://github.com/openstack/charm-ceph-mon.git $distro/ceph
+git clone -b stable/16.10 https://github.com/openstack/charm-ceph-mon.git $distro/ceph-mon
git clone -b stable/16.10 https://github.com/openstack/charm-ceph-osd.git $distro/ceph-osd
git clone -b stable/16.10 https://github.com/openstack/charm-ceph-radosgw.git $distro/ceph-radosgw
git clone -b stable/16.10 https://github.com/openstack/charm-cinder.git $distro/cinder
#bzr branch lp:~sdn-charmers/charms/$distro/ceilometer/ceilometer-plugin $distro/ceilometer
#git clone -b stable/16.10 https://github.com/openstack/charm-ceilometer.git $distro/ceilometer
#git clone -b stable/16.10 https://github.com/openstack/charm-ceilometer-agent.git $distro/ceilometer-agent
-git clone -b stable/16.10 https://github.com/openstack/charm-ceph-mon.git $distro/ceph
+git clone -b stable/16.10 https://github.com/openstack/charm-ceph-mon.git $distro/ceph-mon
git clone -b stable/16.10 https://github.com/openstack/charm-ceph-osd.git $distro/ceph-osd
git clone -b stable/16.10 https://github.com/openstack/charm-ceph-radosgw.git $distro/ceph-radosgw
git clone -b stable/16.10 https://github.com/openstack/charm-cinder.git $distro/cinder