nitin-maharana commented on a change in pull request #2295: CLOUDSTACK-10109:
Enable dedication of public IPs to SSVM and CPVM
URL: https://github.com/apache/cloudstack/pull/2295#discussion_r148519700
##########
File path: server/src/com/cloud/network/guru/PublicNetworkGuru.java
##########
@@ -115,7 +115,11 @@ protected PublicNetworkGuru() {
protected void getIp(NicProfile nic, DataCenter dc, VirtualMachineProfile
vm, Network network) throws InsufficientVirtualNetworkCapacityException,
InsufficientAddressCapacityException, ConcurrentOperationException {
if (nic.getIPv4Address() == null) {
- PublicIp ip = _ipAddrMgr.assignPublicIpAddress(dc.getId(), null,
vm.getOwner(), VlanType.VirtualNetwork, null, null, false);
+ boolean forSystemVms = false;
+ if (vm.getType().equals(VirtualMachine.Type.ConsoleProxy) ||
vm.getType().equals(VirtualMachine.Type.SecondaryStorageVm)) {
+ forSystemVms = true;
Review comment:
@nvazquez, I just went with the flow and found out there already exists a
column name ("is_system") in user_ip_address table. Can you please see if you
can make use of that instead of creating a new one ("forsystemvms").
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services