Fix sample_default for host_routes option

The host_routes option sample default was missing
the subnet prefix for the destination ip network.

Closes-Bug: #1830093
Change-Id: I9bb3160f1bb50b410ec9f9b6751463b847d8a920
This commit is contained in:
Harald Jensås 2019-05-22 19:22:33 +02:00
parent 875bbc74ee
commit cc6ddee223
1 changed files with 1 additions and 1 deletions

View File

@ -386,7 +386,7 @@ class UndercloudConfig(StandaloneConfig):
item_type=cfg.types.Dict(bounds=True),
bounds=True,
default=[],
sample_default=('[{destination: 10.10.10.0, '
sample_default=('[{destination: 10.10.10.0/24, '
'nexthop: 192.168.24.1}]'),
help=HOST_ROUTES_HELP_STR),
]