-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ceph#23532 from alfredodeza/wip-rm24960
ceph-volume: expand auto engine for single type devices on filestore Reviewed-by: Andrew Schoen <[email protected]>
- Loading branch information
Showing
57 changed files
with
1,377 additions
and
204 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
115 changes: 114 additions & 1 deletion
115
src/ceph-volume/ceph_volume/devices/lvm/strategies/filestore.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1 change: 1 addition & 0 deletions
1
...lume/ceph_volume/tests/functional/batch/centos7/bluestore/single-type-dmcrypt/Vagrantfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../Vagrantfile |
23 changes: 23 additions & 0 deletions
23
...e/ceph_volume/tests/functional/batch/centos7/bluestore/single-type-dmcrypt/group_vars/all
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
|
||
ceph_dev: True | ||
cluster: ceph | ||
public_network: "192.168.3.0/24" | ||
cluster_network: "192.168.4.0/24" | ||
monitor_interface: eth1 | ||
osd_objectstore: "bluestore" | ||
osd_scenario: lvm | ||
dmcrypt: true | ||
ceph_origin: 'repository' | ||
ceph_repository: 'dev' | ||
copy_admin_key: false | ||
devices: | ||
- /dev/sdb | ||
- /dev/sdc | ||
os_tuning_params: | ||
- { name: kernel.pid_max, value: 4194303 } | ||
- { name: fs.file-max, value: 26234859 } | ||
ceph_conf_overrides: | ||
global: | ||
osd_pool_default_pg_num: 8 | ||
osd_pool_default_size: 1 |
8 changes: 8 additions & 0 deletions
8
...eph-volume/ceph_volume/tests/functional/batch/centos7/bluestore/single-type-dmcrypt/hosts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[mons] | ||
mon0 | ||
|
||
[osds] | ||
osd0 | ||
|
||
[mgrs] | ||
mon0 |
1 change: 1 addition & 0 deletions
1
...-volume/ceph_volume/tests/functional/batch/centos7/bluestore/single-type-dmcrypt/test.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../playbooks/test_bluestore_dmcrypt.yml |
Oops, something went wrong.