From 7b7ff0d530c5f28e933602505b66efc4df24e62e Mon Sep 17 00:00:00 2001 From: Andrew Schoen Date: Mon, 29 Jul 2019 15:25:19 -0500 Subject: [PATCH] ceph-volume: when testing disable the dashboard ceph-ansible has started enabling the dashboard by default as of https://github.com/ceph/ceph-ansible/pull/4268 Disabling the dashboard gets us around needing to run the grafana_server role which is required for the dashboard and not needed for ceph-volume functional tests. Signed-off-by: Andrew Schoen --- .../ceph_volume/tests/functional/playbooks/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/ceph-volume/ceph_volume/tests/functional/playbooks/deploy.yml b/src/ceph-volume/ceph_volume/tests/functional/playbooks/deploy.yml index b334968a5a92..c0fe8fea9455 100644 --- a/src/ceph-volume/ceph_volume/tests/functional/playbooks/deploy.yml +++ b/src/ceph-volume/ceph_volume/tests/functional/playbooks/deploy.yml @@ -15,6 +15,7 @@ vars: delegate_facts_host: True + dashboard_enabled: False pre_tasks: # If we can't get python2 installed before any module is used we will fail @@ -85,6 +86,8 @@ gather_facts: false become: True any_errors_fatal: true + vars: + dashboard_enabled: False tasks: - import_role: name: ceph-defaults -- 2.47.3