diff --git a/etc/default_catalog.templates b/etc/default_catalog.templates index 09dee53497..106d1cfe92 100644 --- a/etc/default_catalog.templates +++ b/etc/default_catalog.templates @@ -16,6 +16,11 @@ catalog.RegionOne.volumev3.adminURL = http://localhost:8776/v3 catalog.RegionOne.volumev3.internalURL = http://localhost:8776/v3 catalog.RegionOne.volumev3.name = Volume Service V3 +catalog.RegionOne.image.publicURL = http://localhost:9292 +catalog.RegionOne.image.adminURL = http://localhost:9292 +catalog.RegionOne.image.internalURL = http://localhost:9292 +catalog.RegionOne.image.name = Image Service + catalog.RegionOne.network.publicURL = http://localhost:9696 catalog.RegionOne.network.adminURL = http://localhost:9696 catalog.RegionOne.network.internalURL = http://localhost:9696 diff --git a/keystone/catalog/backends/templated.py b/keystone/catalog/backends/templated.py index 64bfb630a2..3370ef8e1b 100644 --- a/keystone/catalog/backends/templated.py +++ b/keystone/catalog/backends/templated.py @@ -83,6 +83,8 @@ class Catalog(base.CatalogDriverBase): def __init__(self, templates=None): super(Catalog, self).__init__() + LOG.warning('The templated catalog driver has been deprecated and ' + 'will be removed in a future release.') if templates: self.templates = templates else: diff --git a/releasenotes/notes/deprecate-templated-catalog-driver-f811a6040abdc4a8.yaml b/releasenotes/notes/deprecate-templated-catalog-driver-f811a6040abdc4a8.yaml new file mode 100644 index 0000000000..2264ab6a5a --- /dev/null +++ b/releasenotes/notes/deprecate-templated-catalog-driver-f811a6040abdc4a8.yaml @@ -0,0 +1,5 @@ +--- +deprecations: + - | + The templated catalog driver has been deprecated and will be removed in + a future release.