Merge "Nova: (fix bug) get ip address from interface"

This commit is contained in:
Zuul 2018-08-28 11:25:20 +00:00 committed by Gerrit Code Review
commit 4af8bf91e6

View File

@ -27,7 +27,7 @@ chown ${NOVA_USER_UID} /var/lib/nova /var/lib/nova/instances
migration_interface="{{- .Values.conf.libvirt.live_migration_interface -}}"
if [[ -n $migration_interface ]]; then
# determine ip dynamically based on interface provided
migration_address=$(ip r | grep $migration_interface | grep -v default | awk '{print $9}')
migration_address=$(ip a s $migration_interface | grep 'inet ' | awk '{print $2}' | awk -F "/" '{print $1}')
fi
touch /tmp/pod-shared/nova-libvirt.conf