summaryrefslogtreecommitdiff
path: root/designate/conf/bind9.py
diff options
context:
space:
mode:
Diffstat (limited to 'designate/conf/bind9.py')
-rw-r--r--designate/conf/bind9.py35
1 files changed, 28 insertions, 7 deletions
diff --git a/designate/conf/bind9.py b/designate/conf/bind9.py
index beee8696..6d6b0f2a 100644
--- a/designate/conf/bind9.py
+++ b/designate/conf/bind9.py
@@ -21,16 +21,37 @@ BIND9_GROUP = cfg.OptGroup(
)
BINS9_OPTS = [
- cfg.StrOpt('rndc_host', default='127.0.0.1', help='RNDC Host'),
- cfg.IntOpt('rndc_port', default=953, help='RNDC Port'),
+ cfg.StrOpt('rndc_host', default='127.0.0.1', help='RNDC Host',
+ deprecated_for_removal=True,
+ deprecated_since='Antelope(2023.1)',
+ deprecated_reason='The agent framework is deprecated.'),
+ cfg.IntOpt('rndc_port', default=953, help='RNDC Port',
+ deprecated_for_removal=True,
+ deprecated_since='Antelope(2023.1)',
+ deprecated_reason='The agent framework is deprecated.'),
cfg.StrOpt('rndc_config_file',
- help='RNDC Config File'),
- cfg.StrOpt('rndc_key_file', help='RNDC Key File'),
- cfg.IntOpt('rndc_timeout', default=0, min=0, help='RNDC command timeout'),
+ help='RNDC Config File',
+ deprecated_for_removal=True,
+ deprecated_since='Antelope(2023.1)',
+ deprecated_reason='The agent framework is deprecated.'),
+ cfg.StrOpt('rndc_key_file', help='RNDC Key File',
+ deprecated_for_removal=True,
+ deprecated_since='Antelope(2023.1)',
+ deprecated_reason='The agent framework is deprecated.'),
+ cfg.IntOpt('rndc_timeout', default=0, min=0, help='RNDC command timeout',
+ deprecated_for_removal=True,
+ deprecated_since='Antelope(2023.1)',
+ deprecated_reason='The agent framework is deprecated.'),
cfg.StrOpt('zone_file_path', default='$state_path/zones',
- help='Path where zone files are stored'),
+ help='Path where zone files are stored',
+ 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.'),
]