From: Guillaume Abrioux Date: Thu, 12 Nov 2020 14:19:42 +0000 (+0100) Subject: main: followup on pr 6012 X-Git-Tag: v6.0.0alpha3~59 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2fa17520c425117f87048a1d555c2e73c9e6cf6e;p=ceph-ansible.git main: followup on pr 6012 This tag can be set at the play level. Signed-off-by: Guillaume Abrioux --- diff --git a/site-container.yml.sample b/site-container.yml.sample index fe1bb775b..0106654b8 100644 --- a/site-container.yml.sample +++ b/site-container.yml.sample @@ -270,6 +270,7 @@ become: True gather_facts: false any_errors_fatal: true + tags: 'ceph_client' tasks: # pre-tasks for following imports - - name: set ceph client install 'In Progress' @@ -282,19 +283,18 @@ - import_role: name: ceph-defaults - tags: ['ceph_update_config', 'ceph_client'] + tags: ['ceph_update_config'] - import_role: name: ceph-facts - tags: ['ceph_update_config', 'ceph_client'] + tags: ['ceph_update_config'] - import_role: name: ceph-handler - tags: ['ceph_update_config', 'ceph_client'] + tags: ['ceph_update_config'] - import_role: name: ceph-config - tags: ['ceph_update_config', 'ceph_client'] + tags: ['ceph_update_config'] - import_role: name: ceph-client - tags: ['ceph_client'] # post-tasks for preceding imports - - name: set ceph client install 'Complete' diff --git a/site.yml.sample b/site.yml.sample index dcb620205..efa432990 100644 --- a/site.yml.sample +++ b/site.yml.sample @@ -259,6 +259,7 @@ gather_facts: false become: True any_errors_fatal: true + tags: 'ceph_client' pre_tasks: - name: set ceph client install 'In Progress' run_once: true @@ -271,19 +272,18 @@ tasks: - import_role: name: ceph-defaults - tags: ['ceph_update_config', 'ceph_client'] + tags: ['ceph_update_config'] - import_role: name: ceph-facts - tags: ['ceph_update_config', 'ceph_client'] + tags: ['ceph_update_config'] - import_role: name: ceph-handler - tags: ['ceph_update_config', 'ceph_client'] + tags: ['ceph_update_config'] - import_role: name: ceph-config - tags: ['ceph_update_config', 'ceph_client'] + tags: ['ceph_update_config'] - import_role: name: ceph-client - tags: ['ceph_client'] post_tasks: - name: set ceph client install 'Complete'