From bd391dc5d93efb443ec2448796077cf819144c3a Mon Sep 17 00:00:00 2001 From: Jordan Pittier Date: Sun, 23 Apr 2017 12:44:37 +0200 Subject: [PATCH] Deprecate the forbid_global_implied_dsr cfg option The config option ``forbid_global_implied_dsr`` from the ``IdentityFeature`` group is now deprecated. This feature flag was introduced to support testing of old OpenStack versions which are not supported anymore. Change-Id: Ib5dbb2e4a5d3d05a18e30b890b316c0669bf4229 --- ...e-config-forbid_global_implied_dsr-e64cfa66e6e3ded5.yaml | 5 +++++ tempest/config.py | 6 +++++- 2 files changed, 10 insertions(+), 1 deletion(-) create mode 100644 releasenotes/notes/deprecate-config-forbid_global_implied_dsr-e64cfa66e6e3ded5.yaml diff --git a/releasenotes/notes/deprecate-config-forbid_global_implied_dsr-e64cfa66e6e3ded5.yaml b/releasenotes/notes/deprecate-config-forbid_global_implied_dsr-e64cfa66e6e3ded5.yaml new file mode 100644 index 0000000000..2b63402f38 --- /dev/null +++ b/releasenotes/notes/deprecate-config-forbid_global_implied_dsr-e64cfa66e6e3ded5.yaml @@ -0,0 +1,5 @@ +--- +deprecations: + - The config option ``forbid_global_implied_dsr`` from the ``IdentityFeature`` + group is now deprecated. This feature flag was introduced to support + testing of old OpenStack versions which are not supported anymore. diff --git a/tempest/config.py b/tempest/config.py index 00c69b0141..fe2ba5481f 100644 --- a/tempest/config.py +++ b/tempest/config.py @@ -223,7 +223,11 @@ IdentityFeatureGroup = [ cfg.BoolOpt('forbid_global_implied_dsr', default=False, help='Does the environment forbid global roles implying ' - 'domain specific ones?'), + 'domain specific ones?', + deprecated_for_removal=True, + deprecated_reason="This feature flag was introduced to " + "support testing of old OpenStack versions, " + "which are not supported anymore"), cfg.BoolOpt('security_compliance', default=False, help='Does the environment have the security compliance '