-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Configure target IP addresses for LVM backend
Configure the cinder-volume service's target_ip_address and target_secondary_ip_addresses using addresses in the network attachment status. This is necessary in order for EDPM compute nodes to be able to make volume attachment requests (via iSCSI or NVMe/TCP) over the storage network. Jira: OSP-28445
- Loading branch information
Showing
3 changed files
with
71 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,8 @@ | ||
[backend_defaults] | ||
{{ if (index . "TargetIpAddress") -}} | ||
target_ip_address = {{ .TargetIpAddress }} | ||
{{ end -}} | ||
{{ if (index . "TargetSecondaryIpAddresses") -}} | ||
target_secondary_ip_addresses = {{ .TargetSecondaryIpAddresses }} | ||
{{ end -}} | ||
use_multipath_for_image_xfer = true |