blob: 5ab8e4b07fab47abaf307382b447fa561c74c7e3 [file] [log] [blame]
okozachenko093ce9e2021-04-01 22:47:39 +03001from oslo_config import cfg
okozachenkoca2b37a2021-05-06 20:38:02 +03002from staffeln.common import constants
okozachenko24bfc9e2021-05-04 15:20:11 +03003from staffeln.i18n import _
4
okozachenko093ce9e2021-04-01 22:47:39 +03005conductor_group = cfg.OptGroup(
Susanta Gautam73a52bb2021-04-27 16:01:11 +05456 "conductor",
7 title="Conductor Options",
okozachenko24bfc9e2021-05-04 15:20:11 +03008 help=_("Options under this group are used " "to define Conductor's configuration."),
okozachenko093ce9e2021-04-01 22:47:39 +03009)
10
okozachenkoaf073202021-04-06 16:56:51 +030011backup_opts = [
12 cfg.IntOpt(
Susanta Gautam73a52bb2021-04-27 16:01:11 +054513 "backup_workers",
okozachenkob8f9e2e2021-04-07 20:02:42 +030014 default=1,
okozachenko1203fa747f22022-05-16 20:13:54 +100015 help=_(
16 "The maximum number of backup processes to "
17 "fork and run. Default to number of CPUs on the host."
18 ),
Susanta Gautam73a52bb2021-04-27 16:01:11 +054519 ),
okozachenko093ce9e2021-04-01 22:47:39 +030020 cfg.IntOpt(
okozachenko2d765182021-05-05 18:22:54 +030021 "backup_service_period",
okozachenko168c0702021-05-06 22:56:37 +030022 default=30,
okozachenko2d765182021-05-05 18:22:54 +030023 min=10,
okozachenko24bfc9e2021-05-04 15:20:11 +030024 help=_("The time of bakup period, the unit is one minute."),
Susanta Gautam73a52bb2021-04-27 16:01:11 +054525 ),
okozachenko32a692e2021-04-13 10:47:05 +030026 cfg.StrOpt(
okozachenkoca2b37a2021-05-06 20:38:02 +030027 "backup_cycle_timout",
okozachenko1203ef49f952022-05-16 22:27:28 +100028 regex=(
29 r"((?P<years>\d+?)y)?((?P<months>\d+?)mon)?((?P<weeks>\d+?)w)?"
30 r"((?P<days>\d+?)d)?((?P<hours>\d+?)h)?((?P<minutes>\d+?)min)?((?P<seconds>\d+?)s)?"
31 ),
okozachenkoca2b37a2021-05-06 20:38:02 +030032 default=constants.DEFAULT_BACKUP_CYCLE_TIMEOUT,
okozachenko1203fa747f22022-05-16 20:13:54 +100033 help=_(
34 "The duration while the backup cycle waits backups."
35 "<YEARS>y<MONTHS>mon<WEEKS>w<DAYS>d<HOURS>h<MINUTES>min<SECONDS>s."
36 ),
okozachenkoca2b37a2021-05-06 20:38:02 +030037 ),
38 cfg.StrOpt(
Susanta Gautam73a52bb2021-04-27 16:01:11 +054539 "backup_metadata_key",
okozachenko24bfc9e2021-05-04 15:20:11 +030040 help=_("The key string of metadata the VM, which requres back up, has"),
Susanta Gautam73a52bb2021-04-27 16:01:11 +054541 ),
ricolin031f06b2022-11-13 09:18:57 +080042 cfg.StrOpt(
43 "retention_metadata_key",
44 regex=(
45 r"((?P<years>\d+?)y)?((?P<months>\d+?)mon)?((?P<weeks>\d+?)w)?"
46 r"((?P<days>\d+?)d)?((?P<hours>\d+?)h)?((?P<minutes>\d+?)min)?((?P<seconds>\d+?)s)?"
47 ),
48 help=_("The key string of metadata the VM, which use as backup retention period."),
49 ),
okozachenko120302950702022-10-22 03:34:16 +110050 cfg.IntOpt(
51 "full_backup_depth",
52 default=2,
53 min=1,
54 help=_("Number of incremental backups between full backups."),
55 ),
okozachenko093ce9e2021-04-01 22:47:39 +030056]
57
okozachenkoaf073202021-04-06 16:56:51 +030058rotation_opts = [
okozachenko093ce9e2021-04-01 22:47:39 +030059 cfg.IntOpt(
Susanta Gautam73a52bb2021-04-27 16:01:11 +054560 "rotation_workers",
okozachenko32a692e2021-04-13 10:47:05 +030061 default=1,
okozachenko1203fa747f22022-05-16 20:13:54 +100062 help=_(
63 "The maximum number of rotation processes to "
64 "fork and run. Default to number of CPUs on the host."
65 ),
Susanta Gautam73a52bb2021-04-27 16:01:11 +054566 ),
okozachenko32a692e2021-04-13 10:47:05 +030067 cfg.IntOpt(
okozachenko2d765182021-05-05 18:22:54 +030068 "retention_service_period",
69 default=20,
70 min=10,
okozachenko6d277e32021-05-05 20:23:32 +030071 help=_("The period of the retention service, the unit is one second."),
okozachenko2d765182021-05-05 18:22:54 +030072 ),
73 cfg.IntOpt(
74 "rotation_workers",
okozachenko093ce9e2021-04-01 22:47:39 +030075 default=1,
okozachenko1203fa747f22022-05-16 20:13:54 +100076 help=_(
77 "The maximum number of rotation processes to "
78 "fork and run. Default to number of CPUs on the host."
79 ),
okozachenko2d765182021-05-05 18:22:54 +030080 ),
81 cfg.StrOpt(
82 "retention_time",
okozachenko1203ef49f952022-05-16 22:27:28 +100083 regex=(
84 r"((?P<years>\d+?)y)?((?P<months>\d+?)mon)?((?P<weeks>\d+?)w)?"
85 r"((?P<days>\d+?)d)?((?P<hours>\d+?)h)?((?P<minutes>\d+?)min)?((?P<seconds>\d+?)s)?"
86 ),
okozachenko6d277e32021-05-05 20:23:32 +030087 default="2w3d",
okozachenko1203fa747f22022-05-16 20:13:54 +100088 help=_(
89 "The time of retention period, the for mat is "
90 "<YEARS>y<MONTHS>mon<WEEKS>w<DAYS>d<HOURS>h<MINUTES>min<SECONDS>s."
91 ),
Susanta Gautam73a52bb2021-04-27 16:01:11 +054592 ),
okozachenko093ce9e2021-04-01 22:47:39 +030093]
94
okozachenkoaf073202021-04-06 16:56:51 +030095CONDUCTOR_OPTS = (backup_opts, rotation_opts)
96
okozachenko093ce9e2021-04-01 22:47:39 +030097
98def register_opts(conf):
99 conf.register_group(conductor_group)
okozachenkob8f9e2e2021-04-07 20:02:42 +0300100 conf.register_opts(backup_opts, group=conductor_group)
okozachenko32a692e2021-04-13 10:47:05 +0300101 conf.register_opts(rotation_opts, group=conductor_group)
okozachenko093ce9e2021-04-01 22:47:39 +0300102
103
104def list_opts():
Susanta Gautam73a52bb2021-04-27 16:01:11 +0545105 return {"DEFAULT": rotation_opts, conductor_group: backup_opts}