neutron/releasenotes/notes/pluggable-ipam-is-default-15c2ee15dc5b4a7b.yaml
Pavel Bondar 625de54de3 Switch to pluggable IPAM implementation
This patch does unconditional switch from non-pluggable IPAM to
pluggable IPAM for all deployments during upgrade to Neutron.

Pluggable IPAM is enabled by pointing ipam_driver default to reference
driver. User who manually set ipam_driver in neutron.conf will continue
to use ipam_driver of their choice.

During upgrade data is migrated from non-pluggable IPAM tables to
pluggable IPAM tables using alembic_migration. Availability ranges
(IPAvailabilityRange) is no longer used to calculate next available ip
address, so migration for this table is not included.

Migration is covered with functional tests. Dataset with subnets,
allocation pools and ip allocations is loaded prior to migration.
Once migration is completed ipam related tables are checked
if data is migrated properly.

Built-in IPAM implementation becomes obsolete and is planned to be
removed in upcoming commits.

UpgradeImpact
Closes-Bug: #1516156
Change-Id: I1d633810bd16f1bec7bbca57522e9ad3f7745ea2
2016-08-17 03:12:32 -06:00

13 lines
588 B
YAML

---
prelude: >
The internal pluggable IPAM implementation -- added in the Liberty release
-- is now the default for both old and new deployments. Old deployments
are unconditionally switched to pluggable IPAM during upgrade.
Old non-pluggable IPAM is deprecated and removed from code base.
upgrade:
- During upgrade 'internal' ipam driver becomes default for 'ipam_driver'
config option and data is migrated to new tables using alembic migration.
deprecations:
- The non-pluggable ipam implementatios is deprecated and will be removed in
Newton release cycle.