]> git.apps.os.sepia.ceph.com Git - ceph-ansible.git/commitdiff
validate.py: Fix alphabetical order on uca
authorGabriel Ramirez <gabrielramirez1109@gmail.com>
Tue, 25 Jun 2019 04:52:11 +0000 (21:52 -0700)
committerGuillaume Abrioux <gabrioux@redhat.com>
Tue, 25 Jun 2019 14:25:17 +0000 (16:25 +0200)
Alphabetized ceph_repository_uca keys due to errors validating when
using UCA/queens repository on Ubuntu 16.04

An exception occurred during task execution. To see the full
traceback, use -vvv. The error was:
SchemaError: -> ceph_stable_repo_uca  schema item is not
alphabetically ordered

Closes: #4154
Signed-off-by: Gabriel Ramirez <gabrielramirez1109@gmail.com>
plugins/actions/validate.py

index a473aa68652d86e92ecd5db11c6602f60656f3c5..dbe4a303877ef925884d77a1116fe740e570e1e4 100644 (file)
@@ -259,9 +259,9 @@ ceph_repository_dev = (
 ceph_repository_custom = ("ceph_custom_repo", types.string)
 
 ceph_repository_uca = (
-    ("ceph_stable_repo_uca", types.string),
     ("ceph_stable_openstack_release_uca", types.string),
     ("ceph_stable_release_uca", types.string),
+    ("ceph_stable_repo_uca", types.string),
 )
 
 monitor_options = (