summaryrefslogtreecommitdiff
path: root/designate/conf/gdnsd.py
diff options
context:
space:
mode:
Diffstat (limited to 'designate/conf/gdnsd.py')
-rw-r--r--designate/conf/gdnsd.py15
1 files changed, 12 insertions, 3 deletions
diff --git a/designate/conf/gdnsd.py b/designate/conf/gdnsd.py
index 0b25e06c..31615abf 100644
--- a/designate/conf/gdnsd.py
+++ b/designate/conf/gdnsd.py
@@ -22,12 +22,21 @@ GDNSD_GROUP = cfg.OptGroup(
GDNSD_OPTS = [
cfg.StrOpt('gdnsd_cmd_name',
help='gdnsd executable path or rootwrap command name',
- default='gdnsd'),
+ default='gdnsd',
+ deprecated_for_removal=True,
+ deprecated_since='Antelope(2023.1)',
+ deprecated_reason='The agent framework is deprecated.'),
cfg.StrOpt('confdir_path',
help='gdnsd configuration directory path',
- default='/etc/gdnsd'),
+ default='/etc/gdnsd',
+ deprecated_for_removal=True,
+ deprecated_since='Antelope(2023.1)',
+ deprecated_reason='The agent framework is deprecated.'),
cfg.StrOpt('query_destination', default='127.0.0.1',
- help='Host to query when finding zones'),
+ help='Host to query when finding zones',
+ deprecated_for_removal=True,
+ deprecated_since='Antelope(2023.1)',
+ deprecated_reason='The agent framework is deprecated.'),
]