
* sync charm-helpers to classic charms * change openstack-origin/source default to zed * align testing with zed * add new zed bundles * add zed bundles to tests.yaml * add zed tests to osci.yaml and .zuul.yaml * update build-on and run-on bases * add bindep.txt for py310 * sync tox.ini and requirements.txt for ruamel * use charmcraft_channel 2.0/stable * drop reactive plugin overrides * move interface/layer env vars to charmcraft.yaml Change-Id: Ieb1ef7b7ab76775f5769621a6a7cbcfb18c40b7f
100 lines
1.6 KiB
YAML
100 lines
1.6 KiB
YAML
options:
|
|
source: &source distro
|
|
|
|
series: kinetic
|
|
|
|
comment:
|
|
- 'machines section to decide order of deployment. database sooner = faster'
|
|
machines:
|
|
'0':
|
|
'1':
|
|
'2':
|
|
'3':
|
|
'4':
|
|
'5':
|
|
'6':
|
|
'7':
|
|
'8':
|
|
'9':
|
|
|
|
applications:
|
|
ceph-radosgw:
|
|
charm: ../../ceph-radosgw.charm
|
|
num_units: 1
|
|
options:
|
|
source: *source
|
|
to:
|
|
- '0'
|
|
|
|
secondary-ceph-radosgw:
|
|
charm: ../../ceph-radosgw.charm
|
|
num_units: 1
|
|
options:
|
|
source: *source
|
|
to:
|
|
- '1'
|
|
|
|
ceph-osd:
|
|
charm: ch:ceph-osd
|
|
num_units: 3
|
|
constraints: "mem=2048"
|
|
storage:
|
|
osd-devices: 'cinder,10G'
|
|
options:
|
|
source: *source
|
|
osd-devices: '/srv/ceph /dev/test-non-existent'
|
|
to:
|
|
- '2'
|
|
- '6'
|
|
- '7'
|
|
channel: latest/edge
|
|
|
|
secondary-ceph-osd:
|
|
charm: ch:ceph-osd
|
|
num_units: 3
|
|
constraints: "mem=2048"
|
|
storage:
|
|
osd-devices: 'cinder,10G'
|
|
options:
|
|
source: *source
|
|
osd-devices: '/srv/ceph /dev/test-non-existent'
|
|
to:
|
|
- '3'
|
|
- '8'
|
|
- '9'
|
|
channel: latest/edge
|
|
|
|
ceph-mon:
|
|
charm: ch:ceph-mon
|
|
num_units: 1
|
|
options:
|
|
monitor-count: 1
|
|
source: *source
|
|
to:
|
|
- '4'
|
|
channel: latest/edge
|
|
|
|
secondary-ceph-mon:
|
|
charm: ch:ceph-mon
|
|
num_units: 1
|
|
options:
|
|
monitor-count: 1
|
|
source: *source
|
|
to:
|
|
- '5'
|
|
channel: latest/edge
|
|
|
|
relations:
|
|
- - 'ceph-osd:mon'
|
|
- 'ceph-mon:osd'
|
|
|
|
- - 'ceph-radosgw:mon'
|
|
- 'ceph-mon:radosgw'
|
|
|
|
- - 'secondary-ceph-osd:mon'
|
|
- 'secondary-ceph-mon:osd'
|
|
|
|
- - 'secondary-ceph-radosgw:mon'
|
|
- 'secondary-ceph-mon:radosgw'
|
|
|