
Update the charmcraft.yaml file to use base and platforms, only allowing noble support. - Update osci.yaml to use the charmcraft 3.x/beta - Add noble/oracular to charmhelpers - Drop non-noble tests Change-Id: I34324235b9b839d9c888a80c70243ef27d49da99
100 lines
1.6 KiB
YAML
100 lines
1.6 KiB
YAML
options:
|
|
source: &source distro
|
|
|
|
series: noble
|
|
|
|
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'
|
|
|