[GitHub] [cloudstack] rakgenius commented on issue #3775: New feature: Acquire specific public IP for network

2019-12-30 Thread GitBox
rakgenius commented on issue #3775: New feature: Acquire specific public IP for 
network
URL: https://github.com/apache/cloudstack/pull/3775#issuecomment-569618245
 
 
   @andrijapanicsb I have created a new PR in 
https://github.com/apache/cloudstack/pull/3790


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [cloudstack] rakgenius commented on issue #3775: New feature: Acquire specific public IP for network

2019-12-30 Thread GitBox
rakgenius commented on issue #3775: New feature: Acquire specific public IP for 
network
URL: https://github.com/apache/cloudstack/pull/3775#issuecomment-569616573
 
 
   @andrijapanicsb I will make a new PR to fix this issue.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [cloudstack] rakgenius commented on issue #3775: New feature: Acquire specific public IP for network

2019-12-24 Thread GitBox
rakgenius commented on issue #3775: New feature: Acquire specific public IP for 
network
URL: https://github.com/apache/cloudstack/pull/3775#issuecomment-568713208
 
 
   > @rakgenius I think you have a seat near to Wei's? ;)
   
   @DaanHoogland :P I sit next to him :)


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [cloudstack] rakgenius commented on issue #3775: New feature: Acquire specific public IP for network

2019-12-23 Thread GitBox
rakgenius commented on issue #3775: New feature: Acquire specific public IP for 
network
URL: https://github.com/apache/cloudstack/pull/3775#issuecomment-568510736
 
 
   @anuragaw @DaanHoogland can this be merged?


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [cloudstack] rakgenius commented on issue #3775: New feature: Acquire specific public IP for network

2019-12-20 Thread GitBox
rakgenius commented on issue #3775: New feature: Acquire specific public IP for 
network
URL: https://github.com/apache/cloudstack/pull/3775#issuecomment-567969213
 
 
   > > > Code looks good. Haven't tested though.
   > > > One question - When the IP Address requested is invalid or unavailable 
in `user_ip_address` do we add that reason in exception or log it? (could'nt 
see it).
   > > 
   > > 
   > > The dropdown displays only the "Free" IP's available in that particular 
network or VPC. If there are not free IP in that network/VPC then it wont 
display the drop down list
   > 
   > But that doesn't cover API usage outside UI @rakgenius , which is how a 
large number of users access CS.
   
   @anuragaw  Just tested it and if the IP is already allocated, it will throw 
```Insufficient address capacity``` exception
   
   
   ```
   (local) 🐵 > associate ipaddress 
networkid=6efa8597-d5e8-4bf6-8686-3db26d568ed1 ipaddress=10.11.113.150
   
   {
 "accountid": "9c185c1d-00b2-11ea-a7cf-069f8fac",
 "cmd": 
"org.apache.cloudstack.api.command.admin.address.AssociateIPAddrCmdByAdmin",
 "completed": "2019-12-20T15:38:35+",
 "created": "2019-12-20T15:38:35+",
 "jobid": "ca7f3410-a1be-43ec-880e-448facff96c7",
 "jobinstanceid": "f7a584ca-8a3c-4f72-b647-c92ed31397aa",
 "jobinstancetype": "IpAddress",
 "jobprocstatus": 0,
 "jobresult": {
   "ipaddress": {
 "account": "test",
 "allocated": "2019-12-20T15:38:35+",
 "associatednetworkname": "test",
 "domain": "test",
 "fordisplay": true,
 "forvirtualnetwork": true,
 "id": "f7a584ca-8a3c-4f72-b647-c92ed31397aa",
 "ipaddress": "10.11.113.150",
 "isportable": false,
 "issourcenat": false,
 "isstaticnat": false,
 "issystem": false,
 "state": "Allocating",
 "tags": [],
 "vlanname": "vlan://untagged",
 "zonename": "zone113-2"
   }
 },
 "jobresultcode": 0,
 "jobresulttype": "object",
 "jobstatus": 1
   }
   ```
   
   
   ```
   (local) 🐵 > associate ipaddress 
networkid=6efa8597-d5e8-4bf6-8686-3db26d568ed1 ipaddress=10.11.113.150
   Error 533: Insufficient address capacity
   ```
   
   ```
   2019-12-20 15:42:35,163 WARN  [c.c.n.IpAddressManagerImpl] 
(qtp858242339-18:ctx-9d0b2eb1 ctx-a86c335b) (logid:5b743076) Unable to get ip 
address in  zone id=1, vlanId id=[1]: requested ip 10.11.113.150 is not 
available
   2019-12-20 15:42:35,264 TRACE [o.a.c.a.c.u.a.AssociateIPAddrCmd] 
(qtp858242339-18:ctx-9d0b2eb1 ctx-a86c335b) (logid:5b743076) 
com.cloud.exception.InsufficientAddressCapacityException: Insufficient address 
capacityScope=interface com.cloud.dc.DataCenter; id=1
   2019-12-20 15:42:35,264 INFO  [c.c.a.ApiServer] 
(qtp858242339-18:ctx-9d0b2eb1 ctx-a86c335b) (logid:5b743076) Insufficient 
address capacity
   ```


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [cloudstack] rakgenius commented on issue #3775: New feature: Acquire specific public IP for network

2019-12-20 Thread GitBox
rakgenius commented on issue #3775: New feature: Acquire specific public IP for 
network
URL: https://github.com/apache/cloudstack/pull/3775#issuecomment-567939292
 
 
   > Code looks good. Haven't tested though.
   > 
   > One question - When the IP Address requested is invalid or unavailable in 
`user_ip_address` do we add that reason in exception or log it? (could'nt see 
it).
   
   The dropdown displays only the "Free" IP's available in that particular 
network or VPC. If there are not free IP in that network/VPC then it wont 
display the drop down list


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [cloudstack] rakgenius commented on issue #3775: New feature: Acquire specific public IP for network

2019-12-20 Thread GitBox
rakgenius commented on issue #3775: New feature: Acquire specific public IP for 
network
URL: https://github.com/apache/cloudstack/pull/3775#issuecomment-567938446
 
 
   > Can I specify a public IP when creating an isolated network or VPC?
   
   If you comment out the first diff in network.js then you can specify any 
free IP in that network or VPC


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services