From 05ab3a7d505a14a5d3c55d409da3a1d2bf3c3902 Mon Sep 17 00:00:00 2001 From: Guillaume Abrioux Date: Mon, 15 Mar 2021 19:53:21 +0100 Subject: [PATCH] validate: update `ceph_repository_community` check this updates the `ceph_repository_community` check in `ceph-validate` with the right ceph release expected. Signed-off-by: Guillaume Abrioux (cherry picked from commit 47b9b75ace037a7673453b64d401d5dc7c77cdd7) --- roles/ceph-validate/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/roles/ceph-validate/tasks/main.yml b/roles/ceph-validate/tasks/main.yml index b6d33a690..36e7e8653 100644 --- a/roles/ceph-validate/tasks/main.yml +++ b/roles/ceph-validate/tasks/main.yml @@ -19,11 +19,11 @@ - name: validate ceph_repository_community fail: - msg: "ceph_stable_release must be either 'nautilus' or 'octopus'" + msg: "ceph_stable_release must be 'pacific'" when: - ceph_origin == 'repository' - ceph_repository == 'community' - - ceph_stable_release not in ['nautilus', 'octopus'] + - ceph_stable_release not in ['pacific'] - name: validate ceph_repository_type fail: -- 2.39.5