]>
git.apps.os.sepia.ceph.com Git - ceph-ansible.git/log
Sébastien Han [Fri, 25 Aug 2017 16:00:03 +0000 (18:00 +0200)]
handler: default to empty array if task skipped
with_items is evaluated before the when condition so if the task that
registers the 'results' is skipped the task will fail with:
{"failed": true, "msg": "'dict object' has no attribute 'results'"}
Defaulting to an empty array fixes the issue.
Reverts:
abdd66619e1d5c94f74e994bff667b5ccc6b529f
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1482061
Signed-off-by: Sébastien Han <seb@redhat.com>
Sébastien Han [Fri, 25 Aug 2017 12:54:09 +0000 (14:54 +0200)]
Merge pull request #1811 from ceph/push-galaxy
contrib: do not rework if tag exist
Sébastien Han [Fri, 25 Aug 2017 10:15:34 +0000 (12:15 +0200)]
contrib: do not rework if tag exist
We now compare local tags versus remote tags and do nothing if they both
exist.
Signed-off-by: Sébastien Han <seb@redhat.com>
Sébastien Han [Thu, 24 Aug 2017 22:17:08 +0000 (00:17 +0200)]
Merge pull request #1810 from ceph/config-meta
update meta for ansible galaxy
Sébastien Han [Thu, 24 Aug 2017 22:04:29 +0000 (00:04 +0200)]
update meta for ansible galaxy
Closes: https://github.com/ceph/ceph-ansible/issues/1637
Signed-off-by: Sébastien Han <seb@redhat.com>
Sébastien Han [Thu, 24 Aug 2017 21:49:41 +0000 (23:49 +0200)]
Merge pull request #1808 from ceph/role-path
ceph-mon: detect ANSIBLE_ROLES_PATH if present
Sébastien Han [Thu, 24 Aug 2017 16:43:51 +0000 (18:43 +0200)]
Merge pull request #1809 from ceph/no-sudo-fetch-dir
ceph-config: when using local_action set become: false
Andrew Schoen [Thu, 24 Aug 2017 15:05:46 +0000 (10:05 -0500)]
ceph-config: when using local_action set become: false
There should be no need to use sudo when writing or using these files.
It creates an issue when the user running ansible-playbook does not
have sudo privs.
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Sébastien Han [Thu, 24 Aug 2017 14:19:39 +0000 (16:19 +0200)]
ceph-mon: detect ANSIBLE_ROLES_PATH if present
Some deployments can't copy infrastructure playbooks outside of the
infrastructure-playbooks directory. Thus they use ANSIBLE_ROLES_PATH to
overcome this. However some roles have 'playbook_dir' hardcoded, which
results in wrong path since the execution comes from
infrastructure-playbooks. Basically the role triggered by a playbook
from infrastructure-playbooks believes that the roles are in
infrastructure-playbooks/roles. This commit fixes that.
Signed-off-by: Sébastien Han <seb@redhat.com>
Alfredo Deza [Thu, 24 Aug 2017 13:24:00 +0000 (09:24 -0400)]
Merge pull request #1807 from ceph/rpm-build-fix
rpm update the DOC section to point to rst
Alfredo Deza [Thu, 24 Aug 2017 13:18:17 +0000 (09:18 -0400)]
rpm update the DOC section to point to rst
Signed-off-by: Alfredo Deza <adeza@redhat.com>
Sébastien Han [Thu, 24 Aug 2017 11:42:06 +0000 (13:42 +0200)]
Merge pull request #1806 from ceph/resync-group
resync groups_vars
Sébastien Han [Thu, 24 Aug 2017 11:40:36 +0000 (13:40 +0200)]
resync groups_vars
Signed-off-by: Sébastien Han <seb@redhat.com>
Sébastien Han [Thu, 24 Aug 2017 07:28:22 +0000 (09:28 +0200)]
site: delegate fact to all the hosts
Before this patch we couldn't use --limit properly to only interact with
a particular set of hosts. We basically always required to have ceph-mon
role being played to properly get facts and then build the ceph.conf.
Now, the current running host will get the facts from the machines that
are not part of the current play. This is achieved with the help of the
new option delegate_facts, for more info see:
http://docs.ansible.com/ansible/latest/playbooks_delegation.html#delegated-facts
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1482067
Signed-off-by: Sébastien Han <seb@redhat.com>
Andrew Schoen [Tue, 22 Aug 2017 19:42:32 +0000 (14:42 -0500)]
ceph-config: write ceph_conf_overrides_temp to fetch_directory
because /tmp is not always writable, but we can assume that the
fetch_directory will be
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Sébastien Han [Mon, 21 Aug 2017 15:17:20 +0000 (17:17 +0200)]
ceph-config: add missing meta and files for the galaxy
Signed-off-by: Sébastien Han <seb@redhat.com>
Guillaume Abrioux [Fri, 4 Aug 2017 14:57:46 +0000 (16:57 +0200)]
Introduce new role ceph-config.
This will give us more flexibility and the possibility to deploy a client node
for an external ceph-cluster.
related BZ:
https://bugzilla.redhat.com/show_bug.cgi?id=
1469426
Fixes: #1670
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
Guillaume Abrioux [Wed, 9 Aug 2017 12:57:39 +0000 (14:57 +0200)]
tests: Update tests according to `ceph-config` role implementation
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
Sébastien Han [Wed, 23 Aug 2017 17:09:49 +0000 (19:09 +0200)]
ceph-mon: remove hardcoded ipv4 in containers
Before this commit we were forcing ipv4 which might not be available.
Now setting ip_version to ipv4 or ipv6 will give you the right support.
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1484189
Signed-off-by: Sébastien Han <seb@redhat.com>
Sébastien Han [Wed, 23 Aug 2017 10:31:15 +0000 (12:31 +0200)]
rolling update: skip pg check if num_pgs = 0
In our test case we don't have any pgs, thus the check fails. The check
always returns an empty array, which makes the comparaison failing.
Signed-off-by: Sébastien Han <seb@redhat.com>
Alfredo Deza [Wed, 23 Aug 2017 21:16:32 +0000 (17:16 -0400)]
Merge pull request #1799 from ceph/lvm-vg-lv
ceph-osd: ceph-volume requires --data to be in vg/lv format
Andrew Schoen [Wed, 23 Aug 2017 18:43:31 +0000 (13:43 -0500)]
ceph-osd: ceph-volume requires --data to be in vg/lv format
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Alfredo Deza [Wed, 23 Aug 2017 18:28:29 +0000 (14:28 -0400)]
Merge pull request #1797 from ceph/purge-lvm
adds purge support for the lvm_osds osd scenario
Sébastien Han [Wed, 23 Aug 2017 17:47:26 +0000 (19:47 +0200)]
Merge pull request #1788 from ceph/improve-switch
switch-from-non-containerized-to-containerized: simplify
Sébastien Han [Tue, 22 Aug 2017 14:43:01 +0000 (16:43 +0200)]
switch-from-non-containerized-to-containerized: simplify
This commit eases the use of the
infrastructure-playbooks/switch-from-non-containerized-to-containerized-ceph-daemons.yml
playbook. We basically run it with a couple of pre-tasks and then we let
the playbook run the docker roles.
It obviously expect to have proper variables configured in order to
work.
Signed-off-by: Sébastien Han <seb@redhat.com>
Andrew Schoen [Wed, 23 Aug 2017 14:12:40 +0000 (09:12 -0500)]
purge-cluster: adds support for purging lvm osds
This also adds a new testing scenario for purging lvm osds
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Wed, 23 Aug 2017 13:59:57 +0000 (08:59 -0500)]
ceph-osd: restructure lvm_volumes variable for more flexiblity
The lvm_volumes variable is now a list of dictionaries that represent
each OSD you'd like to deploy using ceph-volume. Each dictionary must
have the following keys: data, journal and data_vg. Each dictionary also
can optionaly provide a journal_vg key.
The 'data' key represents the lv name used for the OSD and the 'data_vg'
key is the vg name that the given lv resides on. The 'journal' key is
either an lv, device or partition. The 'journal_vg' key is optional and
must be the vg name for the journal lv if given. This key is mainly used
for purging of the journal lv if purge-cluster.yml is run.
For example:
lvm_volumes:
- data: data_lv1
journal: journal_lv1
data_vg: vg1
journal_vg: vg2
- data: data_lv2
journal: /dev/sdc
data_vg: vg1
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Sébastien Han [Wed, 23 Aug 2017 13:34:44 +0000 (15:34 +0200)]
Merge pull request #1796 from ceph/resync-groupvars
resync group_vars
Sébastien Han [Wed, 23 Aug 2017 13:33:48 +0000 (15:33 +0200)]
resync group_vars
Signed-off-by: Sébastien Han <seb@redhat.com>
Sébastien Han [Wed, 23 Aug 2017 13:33:08 +0000 (15:33 +0200)]
Merge pull request #1731 from SirishaGuduru/rgw-civetwebIP-conf
Common: changed civetweb line in rgw section(conf)
Sébastien Han [Wed, 23 Aug 2017 10:40:01 +0000 (12:40 +0200)]
Merge pull request #1784 from ceph/fix-restart-osd-container
ceph-defaults: fix handler for osd container
SirishaGuduru [Mon, 7 Aug 2017 09:23:32 +0000 (14:53 +0530)]
Common: changed civetweb line in rgw section(conf)
Resolves issue: Multiple RGW Ceph.conf Issue #1258
In multi-RGW setup, in ceph.conf the RGW sections
contain identical bind IP in civetweb line. So this
modification fixes that issue and puts the right IP
for each RGW.
Signed-off-by: SirishaGuduru SGuduru@walmartlabs.com
Modified ceph-defaults and ran generate_group_vars_sample.sh
group_vars/osds.yml.sample and group_vars/rhcs.yml.sample are
not part of the changes. But they got modified when
generate_group_vars_sample.sh is ran to generate group_vars/
all.yml.sample.
Uncommented added variables in ceph-defaults
Updated tests by adding value for radosgw_interface
Added radosgw_interface to centos cluster tests
Modified ceph-rgw role,rebased and ran generate_group_vars_sample.sh
In ceph-rgw role removed check_mandatory_vars.yml.
Rebased on master.
Ran generate_group_vars_sample.sh and then the below files got
modified.
Sébastien Han [Wed, 23 Aug 2017 09:26:05 +0000 (11:26 +0200)]
Merge pull request #1625 from ceph/wip-rbd-mirror-keys
rbd-mirror should use per-host user id keyring
Jason Dillaman [Fri, 23 Jun 2017 18:54:50 +0000 (14:54 -0400)]
rbd-mirror should use per-host user id keyring
The rbd-mirror daemon will be HA under luminous and new daemon health
features require a way to uniquely identify rbd-mirror instances.
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
Jason Dillaman [Fri, 11 Aug 2017 12:31:55 +0000 (08:31 -0400)]
distribute rbd bootstrap key if available
Signed-off-by: Jason Dillaman <dillaman@redhat.com>
Sébastien Han [Tue, 22 Aug 2017 21:56:36 +0000 (23:56 +0200)]
Merge pull request #1778 from ceph/fix-1770
purge: add ability to purge bluestore osd
Sébastien Han [Tue, 22 Aug 2017 17:44:48 +0000 (19:44 +0200)]
Merge pull request #1786 from ceph/re-arrange-skipped
mon, osd: fix skipped condition
Sébastien Han [Tue, 22 Aug 2017 17:41:31 +0000 (19:41 +0200)]
Merge pull request #1789 from mistur/master
fix radosgw-admin call with another cluster name than "ceph"
Sébastien Han [Tue, 22 Aug 2017 12:10:10 +0000 (14:10 +0200)]
mon, osd: fix skipped condition
To be properly evaluated the "skipped" conditions must always have the
first place on the list of condition, otherwise the other conditions are
evaluated before and make the task fail.
Closes: https://github.com/ceph/ceph-ansible/issues/1733
Signed-off-by: Sébastien Han <seb@redhat.com>
Andrew Schoen [Tue, 22 Aug 2017 15:50:32 +0000 (10:50 -0500)]
Merge pull request #1781 from ceph/ceph-volume-tests-cli
ceph-volume executable tests and testinfra API update
Yoann Moulin [Tue, 22 Aug 2017 14:57:12 +0000 (16:57 +0200)]
fix radosgw-admin call with another cluster name than "ceph"
Sébastien Han [Tue, 22 Aug 2017 14:42:08 +0000 (16:42 +0200)]
Merge pull request #1779 from gfidente/tripleo_switch_to_containerized
TripleO switch to containers
Sébastien Han [Tue, 22 Aug 2017 13:36:21 +0000 (15:36 +0200)]
Merge pull request #1772 from ceph/docs-update
documentation update for osd scenarios and basic installation/usage
Sébastien Han [Tue, 22 Aug 2017 13:32:39 +0000 (15:32 +0200)]
Merge pull request #1654 from andymcc/master
Allow ceph-mon systemd overrides to be specified
Giulio Fidente [Tue, 22 Aug 2017 11:06:01 +0000 (13:06 +0200)]
Default cluster to ceph in switch to containers
Giulio Fidente [Tue, 22 Aug 2017 11:03:55 +0000 (13:03 +0200)]
Parse ceph_docker_registry in switch to containers
Defaults it to docker.io as it was for backward compatibility.
Giulio Fidente [Tue, 22 Aug 2017 11:01:03 +0000 (13:01 +0200)]
Assume mon_docker_privileged false in switch to containers
Sébastien Han [Tue, 22 Aug 2017 09:56:05 +0000 (11:56 +0200)]
ceph-defaults: fix handler for osd container
Problem: task "check for a ceph socket in containerized deployment" will
be skipped if we are not an OSD.
with_items are still evaluated before when conditions so if the task was
skipped the dict will be empty and then fail.
Adding a "not skipped" condition skips the execution of the task.
Closes: https://bugzilla.redhat.com/show_bug.cgi?id=1482061
Signed-off-by: Sébastien Han <seb@redhat.com>
Sébastien Han [Tue, 22 Aug 2017 09:40:27 +0000 (11:40 +0200)]
Merge pull request #1783 from ceph/remove-dup-var
resync group_vars files
Sébastien Han [Tue, 22 Aug 2017 09:31:49 +0000 (11:31 +0200)]
resync group_vars files
Signed-off-by: Sébastien Han <seb@redhat.com>
Alfredo Deza [Mon, 21 Aug 2017 19:43:17 +0000 (15:43 -0400)]
tests/rgw: update tests to use new host fixture
Signed-off-by: Alfredo Deza <adeza@redhat.com>
Alfredo Deza [Mon, 21 Aug 2017 19:43:03 +0000 (15:43 -0400)]
tests/osd add tests for ceph-volume* executables
Signed-off-by: Alfredo Deza <adeza@redhat.com>
Alfredo Deza [Mon, 21 Aug 2017 19:42:46 +0000 (15:42 -0400)]
tests/osd: update tests to use new host fixture
Signed-off-by: Alfredo Deza <adeza@redhat.com>
Alfredo Deza [Mon, 21 Aug 2017 19:42:24 +0000 (15:42 -0400)]
tests/mons: update tests to use new host fixture
Signed-off-by: Alfredo Deza <adeza@redhat.com>
Alfredo Deza [Mon, 21 Aug 2017 19:41:58 +0000 (15:41 -0400)]
tests/install: update tests to use new host fixture
Signed-off-by: Alfredo Deza <adeza@redhat.com>
Alfredo Deza [Mon, 21 Aug 2017 18:07:43 +0000 (14:07 -0400)]
tests/conftest: update node fixture for new testinfra API
Signed-off-by: Alfredo Deza <adeza@redhat.com>
Giulio Fidente [Mon, 21 Aug 2017 16:32:40 +0000 (18:32 +0200)]
Consume public_network vs ceph_mon_docker_subnet
In the switch to containers migration there were broken references
to ceph_mon_docker_subnet variable, replaced with public_network.
Also fixes references to ceph_mon_docker_extra_env setting for it
a default as it could be undefined.
Giulio Fidente [Mon, 21 Aug 2017 16:32:08 +0000 (18:32 +0200)]
Extend set_uid fact to support RH Ceph images
Sébastien Han [Mon, 21 Aug 2017 16:08:18 +0000 (18:08 +0200)]
purge: add ability to purge bluestore osd
We now purge block db and/or wal partitions if we find any.
Closes: https://github.com/ceph/ceph-ansible/issues/1770
Signed-off-by: Sébastien Han <seb@redhat.com>
Sébastien Han [Mon, 21 Aug 2017 08:23:21 +0000 (10:23 +0200)]
Merge pull request #1695 from fullerdj/wip-djf-docker-multimds
ceph-mds: Enable multimds under docker
Sébastien Han [Mon, 21 Aug 2017 08:20:44 +0000 (10:20 +0200)]
Merge pull request #1762 from ceph/install_pkg_rbdmirror
ceph-common: install base package to provide ceph CLI
Andrew Schoen [Fri, 18 Aug 2017 16:08:56 +0000 (11:08 -0500)]
docs: add examples for collocated and non-collocated osd scenarios
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Fri, 18 Aug 2017 16:06:59 +0000 (11:06 -0500)]
docs: move testing/glossary after index in glossary.rst
We want the usage docs before the testing docs on this page.
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Thu, 17 Aug 2017 16:29:07 +0000 (11:29 -0500)]
docs: remove the old README and link to the hosted docs
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Thu, 17 Aug 2017 16:25:56 +0000 (11:25 -0500)]
docs: add docs for dev contributions
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Thu, 17 Aug 2017 16:13:55 +0000 (11:13 -0500)]
docs: add docs for ceph_conf_overrides usage
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Thu, 17 Aug 2017 16:09:37 +0000 (11:09 -0500)]
docs: add links to example videos
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Thu, 17 Aug 2017 15:53:24 +0000 (10:53 -0500)]
docs: collocated and non-collocated scenario docs
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Thu, 17 Aug 2017 15:23:59 +0000 (10:23 -0500)]
docs: docs for installation and basic config
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Guillaume Abrioux [Sat, 12 Aug 2017 15:41:44 +0000 (17:41 +0200)]
common: install ceph-common on all nodes
This commits force ceph-common to be installed early in deployment on
nodes.
For instance, ceph-rbdmirror doesn't have the CLI installed while it is
needed for some tasks which uses it to set some facts.
Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>
Andy McCrae [Wed, 5 Jul 2017 13:47:48 +0000 (14:47 +0100)]
Allow ceph service systemd overrides to be specified
ceph services can fail to start under certain circumstances (for
example, when running in a container) because the default systemd
service configuration causes namespace issues.
To work around this we can override the system service settings by
placing an overrides file in the ceph-<service>@.service.d directory.
This can be generic so as to allow any potential changes required to
the ceph-<service> service files.
The overrides file is only setup when the
"ceph_<service>_systemd_overrides" config_template override variable is
specified.
The available service systemd override files are as follows:
ceph_mds_systemd_overrides
ceph_mgr_systemd_overrides
ceph_mon_systemd_overrides
ceph_osd_systemd_overrides
ceph_rbd_mirror_systemd_overrides
ceph_rgw_systemd_overrides
Guillaume Abrioux [Thu, 10 Aug 2017 19:54:15 +0000 (21:54 +0200)]
Merge pull request #1759 from fultonj/master
Set the permissions mode on all of the OpenStack keys
John Fulton [Thu, 10 Aug 2017 17:50:08 +0000 (13:50 -0400)]
Set the permissions mode on all of the OpenStack keys
The original fix to issue #1755 only set the permissions on
the monitors to which the key was copied, but not the original
monitor where the key was created. Thus, we use a separate task
to set the permission of the key.
Guillaume Abrioux [Thu, 10 Aug 2017 15:39:23 +0000 (17:39 +0200)]
Merge pull request #1756 from fultonj/master
Allow user to specify the mode of the openstack keys
John Fulton [Wed, 9 Aug 2017 20:52:18 +0000 (20:52 +0000)]
Allow user to specify the mode of the openstack keys
The openstack_keys structure now supports a key called mode
whose value is a string that one could pass to chmod to set
the mode of the key file. The ansible file module applies the
mode to all openstack keys with this property.
Fixes: #1755
Guillaume Abrioux [Wed, 9 Aug 2017 16:10:56 +0000 (18:10 +0200)]
Merge pull request #1560 from ceph/wip-rev-ansible-testing
change ansible environment to 2.3 release
Gregory Meno [Mon, 22 May 2017 18:13:04 +0000 (11:13 -0700)]
change ansible environment to 2.3 release
Signed-off-by: Gregory Meno <gmeno@redhat.com>
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Guillaume Abrioux [Tue, 8 Aug 2017 17:42:00 +0000 (19:42 +0200)]
Merge pull request #1750 from ceph/lvm-test-update
tests: do not use /dev/sda in the lvm scenario
Andrew Schoen [Fri, 4 Aug 2017 20:57:56 +0000 (15:57 -0500)]
tests: do not use /dev/sda in the lvm scenario
When you udpate to the latest version of the centos/7 box it always puts
the OS on /dev/sda, so do not use it as an OSD.
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Fri, 4 Aug 2017 20:45:53 +0000 (15:45 -0500)]
Merge pull request #1745 from ceph/tmp-path-fix
ceph-common: render ceph_conf_overrides into fetch_directory
Andrew Schoen [Fri, 4 Aug 2017 16:14:29 +0000 (11:14 -0500)]
ceph-common: render ceph_conf_overrides into fetch_directory
Writing into /tmp is not always allowed, but we can assume the
fetch_directory is writable.
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Sébastien Han [Fri, 4 Aug 2017 15:31:26 +0000 (17:31 +0200)]
Merge pull request #1716 from ceph/lvm-osds
adds a new OSD scenario to create OSDs with ceph-volume
Douglas Fuller [Wed, 19 Jul 2017 18:56:28 +0000 (18:56 +0000)]
ceph-mds: Enable multimds under docker
This is under the MDS role instead of the mon role because that role
does not create the filesystem under docker.
Signed-off-by: Douglas Fuller <dfuller@redhat.com>
Andrew Schoen [Thu, 3 Aug 2017 16:49:18 +0000 (11:49 -0500)]
ceph-defaults: fix containerized osd restarts
This needs to check `containerized_deployment` because
socket_osd_container is undefined otherwise.
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Thu, 3 Aug 2017 15:43:05 +0000 (10:43 -0500)]
ceph-common: move release-rhs.yml after ceph_version is set
These tasks needs to be run after we set ceph_version or
they fail because it's undefined.
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Thu, 3 Aug 2017 22:03:04 +0000 (17:03 -0500)]
ceph-osd: devices is not required when osd_scenario == lvm
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Thu, 3 Aug 2017 15:08:34 +0000 (10:08 -0500)]
lvm: update scenario for new osd_scenario variable
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Thu, 27 Jul 2017 15:04:53 +0000 (10:04 -0500)]
lvm-osds: reorder mandatory vars checks
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Wed, 26 Jul 2017 16:26:57 +0000 (11:26 -0500)]
lvm-osds: check for osd_objectstore == 'filestore'
ceph-volume currently only has support for filestore, not bluestore
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Wed, 26 Jul 2017 16:23:32 +0000 (11:23 -0500)]
lvm-osds: make task name and files consistent
Removes capitilization and newlines to keep these files consistent in
style with the existing tasks.
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Wed, 26 Jul 2017 15:28:53 +0000 (10:28 -0500)]
lvm-osds: update group_vars/osds.yml.sample
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Wed, 26 Jul 2017 14:29:50 +0000 (09:29 -0500)]
tests: do not use sudo with dev_setup.yml
This causes problems when the tests are run locally and not in the CI
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Tue, 25 Jul 2017 21:48:13 +0000 (16:48 -0500)]
lvm_osds: ensure osd daemons are started
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Tue, 25 Jul 2017 19:37:25 +0000 (14:37 -0500)]
tests: lvm_osds does not have devices defined
This means that our tests needs to use the lvm_volumes dictionary
instead of devices.
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Tue, 25 Jul 2017 18:46:22 +0000 (13:46 -0500)]
tests: adds an lvm_osds testing scenario
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Wed, 19 Jul 2017 19:15:44 +0000 (14:15 -0500)]
docs: add docs for the lvm_osds OSD scenario
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Andrew Schoen [Wed, 19 Jul 2017 15:05:42 +0000 (10:05 -0500)]
adds a new 'lvm_osds' osd scenario
This scenario will create OSDs using ceph-volume and is only available
in ceph releases greater than Luminous.
Signed-off-by: Andrew Schoen <aschoen@redhat.com>
Sébastien Han [Thu, 3 Aug 2017 21:06:46 +0000 (23:06 +0200)]
Merge pull request #1743 from ceph/rhcs-yml
generate_group_vars_sample: rhcs.yml.sample
Sébastien Han [Thu, 3 Aug 2017 20:37:12 +0000 (22:37 +0200)]
generate_group_vars_sample: rhcs.yml.sample
Add a pre-configured bare minimum rhcs.yml.sample that can save
configuration steps.
Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=1478071
Signed-off-by: Sébastien Han <seb@redhat.com>
Sébastien Han [Thu, 3 Aug 2017 20:45:31 +0000 (22:45 +0200)]
Merge pull request #1734 from ceph/debian-repo
common: automate setting up online repositories for ceph deployments …