Deprecate the identity-feature-enabled.reseller config option.
All supported version of OpenStack now supports the 'reseller'
[1] feature. So let's deprecate the related feature flag.
[1]: http://specs.openstack.org/openstack/keystone-specs/specs/kilo/reseller.html
Change-Id: Ia86c6f351919bddf2611524bf0b143aa09dbddee
diff --git a/tempest/config.py b/tempest/config.py
index 0e45f2e..16d6faf 100644
--- a/tempest/config.py
+++ b/tempest/config.py
@@ -220,8 +220,11 @@
# TODO(rodrigods): Remove the reseller flag when Kilo and Liberty is end
# of life.
cfg.BoolOpt('reseller',
- default=False,
- help='Does the environment support reseller?'),
+ default=True,
+ help='Does the environment support reseller?',
+ deprecated_for_removal=True,
+ deprecated_reason="All supported version of OpenStack now "
+ "supports the 'reseller' feature"),
cfg.BoolOpt('security_compliance',
default=False,
help='Does the environment have the security compliance '