[GitHub] cloudstack issue #1876: CLOUDSTACK-9715: Update somaxconn value to default v...

2017-02-13 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1876
  
travis failure not related. merging


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack pull request #1818: CLOUDSTACK-9655 The template which is registe...

2017-02-13 Thread karuturi
Github user karuturi commented on a diff in the pull request:

https://github.com/apache/cloudstack/pull/1818#discussion_r100771599
  
--- Diff: ui/scripts/templates.js ---
@@ -1447,7 +1447,11 @@
  label: 
'label.action.delete.template',
  messages: {
  confirm: 
function(args) {
- return 
'message.action.delete.template';
+ 
if(args.context.templates[0].crossZones == true) {
+ return 'This 
is a cross zone template and will be deleted from all the zones. Are you sure 
you want to proceed?';
--- End diff --

used an existing message from properties


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1847: CLOUDSTACK-9691: Fixed unhandeled excetion in list s...

2017-02-13 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1847
  
@anshul1886 can you and @nvazquez work together and create a single PR?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1876: CLOUDSTACK-9715: Update somaxconn value to default v...

2017-02-13 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1876
  
merging. simple config change.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1183: Marvin test to verify that adding TCP ports 500,4500...

2017-02-13 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1183
  
failures are note related. merging


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack pull request #928: CLOUDSTACK-8950 Hypervisor Parameter check is ...

2017-02-13 Thread karuturi
Github user karuturi commented on a diff in the pull request:

https://github.com/apache/cloudstack/pull/928#discussion_r100753379
  
--- Diff: server/src/com/cloud/template/TemplateAdapterBase.java ---
@@ -293,9 +298,15 @@ public TemplateProfile 
prepare(GetUploadParamsForTemplateCmd cmd) throws Resourc
 zoneId = -1L;
 }
 
+HypervisorType hypervisorType = 
HypervisorType.getType(cmd.getHypervisor());
+if(hypervisorType == HypervisorType.None) {
+throw new InvalidParameterValueException("Hypervisor Type: " + 
cmd.getHypervisor() + " is invalid. Supported Hypervisor types are "
+ + 
EnumUtils.listValues(HypervisorType.values()).replace("None, ", ""));
+}
--- End diff --

@GabrielBrascher there is lot of duplicate code between the methods. A 
proper cleanup has to be planned. Cant take up now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1938: CLOUDSTACK-9780: Fixed the default JAVA_HOME value t...

2017-02-12 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1938
  
@borisstoyanov can you post ubuntu test results?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: [GitHub] cloudstack issue #1741: Updated StrongSwan VPN Implementation

2017-02-10 Thread Rajani Karuturi
I planning to create first RC end of feb(in 20 days).

~ Rajani

http://cloudplatform.accelerite.com/

On February 10, 2017 at 2:24 PM, Daan Hoogland
(daan.hoogl...@shapeblue.com) wrote:

sorry to keep you guys waiting, I am struggling my way back in
and am working on this (and a lot) will keep you posted. @Rajani,
what is the ETA that I must meet to get this in 4.10?

daan.hoogl...@shapeblue.com
www.shapeblue.com ( http://www.shapeblue.com )
53 Chandos Place, Covent Garden, Utrecht Utrecht 3531
VENetherlands
@shapeblue

-Original Message-
From: jayapalu [mailto:g...@git.apache.org]
Sent: vrijdag 10 februari 2017 09:27
To: dev@cloudstack.apache.org
Subject: [GitHub] cloudstack issue #1741: Updated StrongSwan VPN
Implementation

Github user jayapalu commented on the issue:

https://github.com/apache/cloudstack/pull/1741

@swill I have tested this PR with systemvm template with
strongswan installed long back. The s2s vpn worked fine.
LGTM from my side.

---
If your project is set up for it, you can reply to this email
and have your reply appear on GitHub as well. If your project
does not have this feature enabled and wishes so, or if the
feature is enabled but not working, please contact infrastructure
at infrastruct...@apache.org or file a JIRA ticket with INFRA.
---

[GitHub] cloudstack issue #1282: CLOUDSTACK-9200: Fixed failed to delete snapshot if ...

2017-02-09 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1282
  
@Slair1 Its missing required reviews and tests.(We have a huge backlog. any 
help in code review/test run is welcome). please refer to 
https://cwiki.apache.org/confluence/display/CLOUDSTACK/Release+principles+for+Apache+CloudStack+4.6+and+up


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1727: CLOUDSTACK-9539: Support changing Service offering f...

2017-02-09 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1727
  
Its an enhancement. It should be for the next major release which is 
4.10(on master branch)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1697: CLOUDSTACK-4858 Honors the snapshot.backup.rightafte...

2017-02-08 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1697
  
I think the conflicts were on VolumeOrchestrator.java and 
TemplateManagerImplTest.java


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


apidocs build failure

2017-02-08 Thread Rajani Karuturi
Hi all,

All the apidocs builds[1] are failing after the recent java 8
change. Can anyone having access fix it? Or should we talk to
INFRA about it?

Error message:

[INFO]
-
[ERROR] COMPILATION ERROR : [INFO]
-
[ERROR] javac: invalid target release: 1.8 Usage: javac use -help
for a list of possible options

[1] https://builds.apache.org/job/cloudstack-apidocs-master/

Thanks

~ Rajani

http://cloudplatform.accelerite.com/

Re: GSoC projects

2017-02-08 Thread Rajani Karuturi
I added two:

CLOUDSTACK-8310 - commit to commit db upgrades and db version
control

CLOUDSTACK-9777 - decouple cloudstack UI

Thanks,

~ Rajani

http://cloudplatform.accelerite.com/

On February 9, 2017 at 9:12 AM, Rafael Weingärtner
(rafaelweingart...@gmail.com) wrote:

Hi guys,
Do you find interesting integrating ACS with OpenID Connect
identity
providers?

Today ACS supports SAML; therefore, it can be used in federated
systems
that are created using Shibboleth or OpenAM. OpenID Connect is
an
alternative to SAML to create federations. Would you like to see
ACS
supporting OpenID Connect protocol?

I have been helping two students with their undergraduate
thesis. They are
creating an integration between ACS and OpenID Connect protocol
(it is an
authentication plugin, like the one created for SAML). It seems
that this
could be an interesting opportunity to push this integration
further and to
add another competitive advantage to ACS (BTW: OpenStack already
supports
OpenId Connect).

I could speak with them and work out their application with this
proposal.

On Wed, Feb 8, 2017 at 9:57 AM, Rene Moser 
wrote:

On 02/08/2017 02:46 PM, Syed Ahmed wrote:

I want to propose another topic to relplace our old and crummy
console

with

a NoVNC console. Long time ago I developed a prototype and the
results

were

very promising [2]. I have opened a JIRA ticket for this as well
[1]

That would be AWESOME!

--
Rafael Weingärtner

[GitHub] cloudstack issue #844: [4.10] CLOUDSTACK-7985: assignVM in Advanced zone wit...

2017-02-08 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/844
  
merging


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1697: CLOUDSTACK-4858 Honors the snapshot.backup.rightafte...

2017-02-08 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1697
  
@nathanejohnson @kiwiflyer  There were some conflicts while merging to 
master. I went ahead and resolved as they are minor conflicts. Please verify 
that everything is fine on master.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1697: CLOUDSTACK-4858 Honors the snapshot.backup.rightafte...

2017-02-07 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1697
  
merging this to 4.9+ branches


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1644: Honors the snapshot.backup.rightafter configuration ...

2017-02-07 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1644
  
A separate PR for master is not required. #1697 will be forward merged.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1905: CLOUDSTACK-9738: [Vmware] Optimize vm expunge proces...

2017-02-07 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1905
  
Thanks for the clarification. Its a nice enhancement. LGTM for the changes.
Marvin tests are always welcome :) 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1892: CLOUDSTACK-9731: Hardcoded label appears on the Add ...

2017-02-07 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1892
  
trivial. merged


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: PRs for 4.10

2017-02-07 Thread Rajani Karuturi
@milamber I will soon merge the localization PRs

@will Yes. that would be great addition to 4.10. Its pending from
a long time.

@sergey 1913 has open questions. Can you answer them please? rest
I will take a look.

PS: based on the pattern(17*[0,2,4,8,]7) I also checked 1707. I
will add it to my PR list :)

Thanks,

~ Rajani

http://cloudplatform.accelerite.com/

On February 8, 2017 at 2:23 AM, Sergey Levitskiy
(sergey.levits...@autodesk.com) wrote:

I would like to include :
PR1727 CLOUDSTACK-9539: Support changing Service offering for
instance with VM Snapshots
PR1747 CLOUDSTACK-9574: Redesign storage views
PR1767 CLOUDSTACK-9457: Allow retrieval and modification of VM
and template details via API and UI
They have all tests green and just need another LGTM

2 optimization PRs will be nice to add as well:
PR1905 CLOUDSTACK-9738: [Vmware] Optimize vm expunge process for
instances with vm snapshots
PR1913 CLOUDSTACK-9752: [Vmware] Optimization of volume
attachment to vm

PRs for 4.10

2017-02-07 Thread Rajani Karuturi
Hi all,
If you know of any PRs which meet the below criteria, please mail them to
me.
1. No open questions.
2. Has two LGTMs
3. Has CI test results.

~Rajani
http://cloudplatform.accelerite.com


[GitHub] cloudstack issue #1913: CLOUDSTACK-9752: [Vmware] Optimization of volume att...

2017-02-06 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1913
  
@sateesh-chodapuneedi @SudharmaJain Can you provide your feedback? I think 
you guys worked on a similar fix


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1905: CLOUDSTACK-9738: Optimize vm expunge process for ins...

2017-02-06 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1905
  
Hi @nvazquez 
Did the behavior in step2 change with this PR or is it same as earlier?
Can you please add the testing already done?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1905: CLOUDSTACK-9738: Optimize vm expunge process for ins...

2017-02-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1905
  
@blueorangutan test


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1905: CLOUDSTACK-9738: Optimize vm expunge process for ins...

2017-02-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1905
  
@blueorangutan package


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1890: [4.9] CLOUDSTACK-9712: FIX issue on preshared key if...

2017-02-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1890
  
LGTM merging


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1913: CLOUDSTACK-9752: [Vmware] Optimization of volume att...

2017-02-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1913
  
@blueorangutan test centos7 vmware-60u2


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1871: [4.9] CLOUDSTACK-9692: Fix password server issue in ...

2017-02-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1871
  
merging this now. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1913: CLOUDSTACK-9752: [Vmware] Optimization of volume att...

2017-02-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1913
  
@blueorangutan help


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1890: [4.9] CLOUDSTACK-9712: FIX issue on preshared key if...

2017-02-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1890
  
@blueorangutan test


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1871: [4.9] CLOUDSTACK-9692: Fix password server issue in ...

2017-02-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1871
  
@rhtyd thanks


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1890: [4.9] CLOUDSTACK-9712: FIX issue on preshared key if...

2017-02-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1890
  
@blueorangutan package


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1871: [4.9] CLOUDSTACK-9692: Fix password server issue in ...

2017-02-01 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1871
  
@rhtyd can you post the results of the previous test run?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1900: CLOUDSTACK-8862: Introduced new state attaching for ...

2017-02-01 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1900
  
@ProjectMoon @anshul1886  #1898 and #1900 are for the same bug. Can you 
please collaborate and put a single PR?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1898: CLOUDSTACK-8862: Lock on volume before attempting to...

2017-02-01 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1898
  
@ProjectMoon @anshul1886  you are working on the same bug. Can you please 
collaborate and put a single PR?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1847: CLOUDSTACK-9691: Fixed unhandeled excetion in list s...

2017-02-01 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1847
  
@sateesh-chodapuneedi @anshul1886 @mike-tutkowski 
whats the relation with #1735? Is one of them required or both?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1921: Dockerfile: Upgrade base distro to Ubuntu 16.04, fix...

2017-01-30 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1921
  
docker specific. merging.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1920: Change the README link for event page to the current...

2017-01-30 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1920
  
+1 merging


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1905: CLOUDSTACK-9738: Optimize vm expunge process for ins...

2017-01-30 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1905
  
There are some conflicts after the latest merge. Can you resolve them? 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #977: [4.10] CLOUDSTACK-8746: VM Snapshotting implementatio...

2017-01-30 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/977
  
great effort from everyone in terms of code, testing and discussion. 
Overall, all the comments are addressed and has test runs. I am merging this 
now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1700: CLOUDSTACK-9359: IPv6 for Basic Networking

2017-01-26 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1700
  
LGTM. Test results are good. I am merging this now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1749: CLOUDSTACK-9619: Updates for SAN-assisted snapshots

2017-01-26 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1749
  
LGTM. From the discussion, looks like the test failures are unrelated to 
this PR. merging this now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1904: CLOUDSTACK-9729: Use latest Nuage client.

2017-01-26 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1904
  
LGTM merging now


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: RM for 4.10/master

2017-01-25 Thread Rajani Karuturi
1749 - I think is ready to merge(It already has CI results). I
will take a final look and merge.

1904 - It is nuage plugin specific changes. I have no way to test
them. I am going to merge it tomorrow(if anyone has any concerns
with merge, please raise them on the PR and I will wait)

I am looking at the list of PR sorted by reviews at
http://acs:a...@acspr.ena.net + a mix of Jira.

Thanks,

~ Rajani

http://cloudplatform.accelerite.com/

On January 25, 2017 at 2:22 PM, Frank Maximus
(frank.maxi...@nuagenetworks.net) wrote:

I want to also highlight our plug-in update, which resolves a
ClassNotFoundException, occurring after the update to the latest
version of
Amazon aws client.

https://github.com/apache/cloudstack/pull/1904

Once we have our own test infrastructure ready for 1.8, we will
post our
test results.

Regards,
Frank

On Wed, 25 Jan 2017 04:17 Tutkowski, Mike,
<mike.tutkow...@netapp.com>
wrote:

Hi Rajani,

I’m not sure when you’ll be building your list of PRs to put
into 4.10, but
could you consider this one (it addresses an issue that went
into 4.10 with
PR 1600)?

https://github.com/apache/cloudstack/pull/1749

Thanks!
Mike

On 1/24/17, 4:49 PM, "Rajani Karuturi" <raj...@apache.org>
wrote:

We are facing some issues with our intenral CI post java8
changes. It might take a couple of days to resolve.

I will start merging the PRs once that is done. Meanwhile, I
will
start reviewing the PRs.

I am tentatively looking at creating RC at the end of Feb.

Thanks,

~ Rajani

http://cloudplatform.accelerite.com/

On January 19, 2017 at 8:34 PM, Simon Weller (swel...@ena.com)
wrote:

Great, thanks Rajani!


From: Rajani Karuturi <raj...@apache.org>
Sent: Thursday, January 19, 2017 1:15 AM
To: dev@cloudstack.apache.org
Subject: Re: RM for 4.10/master

Yes. thats true. Offlate I was busy with $dayjob activities and
wasnt able to give it enough time.

Starting next week, I will start working on it.

@Rohit, Is it possible to give me access to run CI?

~ Rajani

http://cloudplatform.accelerite.com/

On January 18, 2017 at 11:13 PM, Simon Weller (swel...@ena.com)
wrote:

I think Rajani had originally volunteered to be RM for 4.10 a
couple of months back.


From: Sergey Levitskiy <sergey.levits...@autodesk.com>
Sent: Wednesday, January 18, 2017 11:34 AM
To: dev@cloudstack.apache.org
Subject: Re: RM for 4.10/master

There are many PR in the merge ready state or require
BlueOrangutan testing. Are there volunteers for 4.10 RM role?

On 1/16/17, 4:46 AM, "Rohit Yadav" <rohit.ya...@shapeblue.com>
wrote:

All,

I will be on holidays after 18th January and have other work
commitments, I won't be able to contribute much time on RM work.

Please feel free to take up RM responsibilities for 4.10
release, as per our schedule we wanted to freeze it by end of
this month. I can work with the new RM and help them use
@blueorangutan and Trillian for test related work.

Regards.

rohit.ya...@shapeblue.com
www.shapeblue.com<http://www.shapeblue.com 
( http://www.shapeblue.com<http://www.shapeblue.com )
( http://www.shapeblue.com<http://www.shapeblue.com )
( http://www.shapeblue.com<http://www.shapeblue.com )>
ShapeBlue - The CloudStack Company<http://www.shapeblue.com/>
www.shapeblue.com<http://www.shapeblue.com 
( http://www.shapeblue.com<http://www.shapeblue.com )
( http://www.shapeblue.com<http://www.shapeblue.com )>
( http://www.shapeblue.com )
Introduction Upgrading CloudStack can sometimes be a little
daunting - but as the 5P's proverb goes - Proper Planning
Prevents Poor Performance.

53 Chandos Place, Covent Garden, London WC2N 4HSUK
@shapeblue

Re: RM for 4.10/master

2017-01-24 Thread Rajani Karuturi
We are facing some issues with our intenral CI post java8
changes. It might take a couple of days to resolve.

I will start merging the PRs once that is done. Meanwhile, I will
start reviewing the PRs.

I am tentatively looking at creating RC at the end of Feb.

Thanks,

~ Rajani

http://cloudplatform.accelerite.com/

On January 19, 2017 at 8:34 PM, Simon Weller (swel...@ena.com)
wrote:

Great, thanks Rajani!


From: Rajani Karuturi <raj...@apache.org>
Sent: Thursday, January 19, 2017 1:15 AM
To: dev@cloudstack.apache.org
Subject: Re: RM for 4.10/master

Yes. thats true. Offlate I was busy with $dayjob activities and
wasnt able to give it enough time.

Starting next week, I will start working on it.

@Rohit, Is it possible to give me access to run CI?

~ Rajani

http://cloudplatform.accelerite.com/

On January 18, 2017 at 11:13 PM, Simon Weller (swel...@ena.com)
wrote:

I think Rajani had originally volunteered to be RM for 4.10 a
couple of months back.


From: Sergey Levitskiy <sergey.levits...@autodesk.com>
Sent: Wednesday, January 18, 2017 11:34 AM
To: dev@cloudstack.apache.org
Subject: Re: RM for 4.10/master

There are many PR in the merge ready state or require
BlueOrangutan testing. Are there volunteers for 4.10 RM role?

On 1/16/17, 4:46 AM, "Rohit Yadav" <rohit.ya...@shapeblue.com>
wrote:

All,

I will be on holidays after 18th January and have other work
commitments, I won't be able to contribute much time on RM work.

Please feel free to take up RM responsibilities for 4.10
release, as per our schedule we wanted to freeze it by end of
this month. I can work with the new RM and help them use
@blueorangutan and Trillian for test related work.

Regards.

rohit.ya...@shapeblue.com
www.shapeblue.com<http://www.shapeblue.com 
( http://www.shapeblue.com<http://www.shapeblue.com )
( http://www.shapeblue.com<http://www.shapeblue.com )>
ShapeBlue - The CloudStack Company<http://www.shapeblue.com/>
www.shapeblue.com<http://www.shapeblue.com 
( http://www.shapeblue.com<http://www.shapeblue.com )> 
( http://www.shapeblue.com )
Introduction Upgrading CloudStack can sometimes be a little
daunting - but as the 5P's proverb goes - Proper Planning
Prevents Poor Performance.

53 Chandos Place, Covent Garden, London WC2N 4HSUK
@shapeblue

[GitHub] cloudstack issue #1241: CLOUDSTACK-9162: Unable to add VPN user via API with...

2017-01-22 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1241
  
@blueorangutan help


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: RM for 4.10/master

2017-01-18 Thread Rajani Karuturi
Yes. thats true. Offlate I was busy with $dayjob activities and
wasnt able to give it enough time.

Starting next week, I will start working on it.

@Rohit, Is it possible to give me access to run CI?

~ Rajani

http://cloudplatform.accelerite.com/

On January 18, 2017 at 11:13 PM, Simon Weller (swel...@ena.com)
wrote:

I think Rajani had originally volunteered to be RM for 4.10 a
couple of months back.


From: Sergey Levitskiy 
Sent: Wednesday, January 18, 2017 11:34 AM
To: dev@cloudstack.apache.org
Subject: Re: RM for 4.10/master

There are many PR in the merge ready state or require
BlueOrangutan testing. Are there volunteers for 4.10 RM role?

On 1/16/17, 4:46 AM, "Rohit Yadav" 
wrote:

All,

I will be on holidays after 18th January and have other work
commitments, I won't be able to contribute much time on RM work.

Please feel free to take up RM responsibilities for 4.10
release, as per our schedule we wanted to freeze it by end of
this month. I can work with the new RM and help them use
@blueorangutan and Trillian for test related work.

Regards.

rohit.ya...@shapeblue.com
www.shapeblue.com
ShapeBlue - The CloudStack Company
www.shapeblue.com ( http://www.shapeblue.com )
Introduction Upgrading CloudStack can sometimes be a little
daunting - but as the 5P's proverb goes - Proper Planning
Prevents Poor Performance.

53 Chandos Place, Covent Garden, London WC2N 4HSUK
@shapeblue

[GitHub] cloudstack issue #1888: CLOUDSTACK-9710: Switch to JRE1.8

2017-01-05 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1888
  
code LGTM. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: [VOTE] Apache Cloudstack 4.9.2.0 (RC2)

2017-01-04 Thread Rajani Karuturi
+1 (binding)

Did basic manual tests(create templates, launch vm, networks
etc.) on fresh install of 4.9.2 with xen 6.2

Did not see any issues.

Thanks,

~ Rajani

http://cloudplatform.accelerite.com/

On January 3, 2017 at 12:35 PM, Rohit Yadav (bhais...@apache.org)
wrote:

Hi All,

I've created a 4.9.2.0 release (RC2), with the following
artifacts up for a
vote:

Git Branch and Commit SH:
https://git-wip-us.apache.org/repos/asf?p=cloudstack.git;a=shortlog;h=refs/heads/4.9.2.0-RC20170103T1228
Commit: dfc39c1f088dc9979a53bd0de4dfd0e5b266bd0f

Source release (checksums and signatures are available at the
same
location):
https://dist.apache.org/repos/dist/dev/cloudstack/4.9.2.0/

PGP release keys (signed using 0EE3D884):
https://dist.apache.org/repos/dist/release/cloudstack/KEYS

Vote will be open for 72 hours.

For sanity in tallying the vote, can PMC members please be sure
to indicate
"(binding)" with their vote?

[ ] +1 approve
[ ] +0 no opinion
[ ] -1 disapprove (and reason why)

Regards.

[GitHub] cloudstack issue #1841: CLOUDSTACK-9684 Invalid zone id error while listing ...

2017-01-04 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1841
  
@blueorangutan test centos7 vmware-60u2


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1841: CLOUDSTACK-9684 Invalid zone id error while listing ...

2017-01-04 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1841
  
@blueorangutan help


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1832: CLOUDSTACK-9652 Job framework - Cancelling async job...

2017-01-03 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1832
  
@rhtyd I dont buy that argument. Just for the ease of revert or cherry-pick 
we shouldnt commit all the changes together. The revert or cherry-pick quickly 
becomes irrelevant as more code gets committed on top of it. I would like to 
commit them as is. 
regarding the conflicts, will resolve them as soon as I get time. right 
now, busy with $dayjob.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1880: CLOUDSTACK-9720: [VMware] template_spool_ref table i...

2016-12-30 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1880
  
@blueorangutan test centos7 vmware-55u3


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1849: CLOUDSTACK-9690: Scale CentOS7 VM fails with error

2016-12-29 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1849
  
@blueorangutan package


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1880: CLOUDSTACK-9720: [VMware] template_spool_ref table i...

2016-12-29 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1880
  
@blueorangutan package



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1879: CLOUDSTACK-9719: [VMware] VR loses DHCP settings and...

2016-12-29 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1879
  
@blueorangutan test centos7 vmware-55u3


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1879: CLOUDSTACK-9719: [VMware] VR loses DHCP settings and...

2016-12-29 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1879
  
@blueorangutan help


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: Request for Jira access - ticket assignment permissions

2016-12-23 Thread Rajani Karuturi
you are in

~ Rajani

http://cloudplatform.accelerite.com/

On December 21, 2016 at 4:14 PM, Adwait Patankar
(adwait_patan...@accelerite.com) wrote:

Hi,

I'm trying to assign a bug in Jira to myself. However, it
doesn't look like I have the appropriate permissions.

Can someone please grant the assignment permissions to me? My
username is "adwaitpatankar".

Regards,

Adwait

Adwait Patankar

Principal Product Engineer | CloudPlatform |
www.accelerite.com

DISCLAIMER
==
This e-mail may contain privileged and confidential information
which is the property of Accelerite, a Persistent Systems
business. It is intended only for the use of the individual or
entity to which it is addressed. If you are not the intended
recipient, you are not authorized to read, retain, copy, print,
distribute or use this message. If you have received this
communication in error, please notify the sender and delete all
copies of this message. Accelerite, a Persistent Systems business
does not accept any liability for virus infected mails.

[GitHub] cloudstack issue #1832: CLOUDSTACK-9652 Job framework - Cancelling async job...

2016-12-19 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1832
  
@marcaurele out for the next three days. will get back
@rhtyd marvin test is in progress. I will take it up in a separate PR. 
Regarding squashing, a humongous commit would be difficult. I already 
grouped them into individual logical units.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1832: CLOUDSTACK-9652 Job framework - Cancelling async job...

2016-12-15 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1832
  
@marcaurele The thread which is running the job gets killed due to 
OperationCancelledException. But, if any command is already sent and is being 
executed on hypervisor, that wont be cancelled. check for the changes in 
AgentAttache where this new exception is thrown.
For example, if a deployvm is cancelled and the command is already sent to 
hypervisor, the vm will continue to launch on hypervisor. but, on cloudstack 
side, the threads and the jobs will be cleanedup and cancelled. Eventually, vm 
sync will sync the states. There can be instances when the job cancellation was 
successful but, the vm is in running state after sometime. 
The cancellation should be used with caution only by admin keeping in mind 
that some resource cleanup on hypervisor might be required. 
This will only unblock the jobs in cloudstack which are waiting for a long 
time for a certain job to complete.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #873: CLOUDSTACK-8896: allocated percentage of storage pool...

2016-12-15 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/873
  
@rhtyd will do in coming days (though I dont see a reason for the stress on 
log message leaving aside logic)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack pull request #1832: cloudstack-9652 Job framework - Cancelling as...

2016-12-15 Thread karuturi
GitHub user karuturi opened a pull request:

https://github.com/apache/cloudstack/pull/1832

cloudstack-9652 Job framework - Cancelling async jobs

enabled  cancellation of long running or subsequent queued up async jobs


You can merge this pull request into a Git repository by running:

$ git pull https://github.com/Accelerite/cloudstack CLOUDSTACK-9652

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cloudstack/pull/1832.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #1832


commit 1099b3eb1adbb4dd028a86877986e3ac7771
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Date:   2016-12-13T11:55:44Z

CLOUDSTACK-9652: added new cancel async job api

commit d9f4f6e898f063096d4bace46753b179c0bb68dc
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Date:   2016-07-12T05:45:32Z

CLOUDSTACK-9652 unittests for cancelAsyncJob cmd

commit 5093e592b7e71978f50ae8007c1da985758d6efd
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Date:   2016-12-14T09:35:37Z

CLOUDSTACK-9652 API to find long running jobs

added listlongrunnningjobs api

added listqueuedupasyncjobs api

commit 649f5b9237b85c1c2aba67065b13261ec4930487
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Date:   2016-12-14T10:14:24Z

CLOUDSTACK-9652 Cleanup at Agent Layer

Throwing an exception in agentattache incase the job is cancelled. The
top layers should handle the exception and take necessary action for
cleaning of resources.

commit cebbd36f94914f144f5cd9b016467d18f02c222c
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Date:   2016-12-14T10:34:12Z

CLOUDSTACK-9652 Annotating async APIs as cancellable or not

commit e2df57ca6ba642cf120295cf805d04881e7c14cf
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Date:   2016-12-14T11:43:53Z

CLOUDSTACK-9652: added OperationCancelledException for a cancelled job

Added exception handling at various agent commands for this new
checked exception.

commit ebfc75879deb9b7de775fe9d92f361d432852b91
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Date:   2016-07-22T09:38:11Z

CLOUDSTACK-9652 cancelling a job in queue should not throw exception

check the state of the parent job before submitting the worker thread.
starting work thread only if parent job is not done.

commit adb19cb2788706b66e7a1454327d541b2ba0eeae
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Date:   2016-12-15T09:53:43Z

CLOUDSTACK-9652 cleaning up async jobs on graceful MS shutdown




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1711: XenServer 7 Support

2016-12-13 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1711
  
@blueorangutan test centos7 xenserver-65sp1


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1711: XenServer 7 Support

2016-12-13 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1711
  
@blueorangutan help



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1711: XenServer 7 Support

2016-12-08 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1711
  
Yes. I think its ready code wise. since the last test run, lot of code 
changes happened. If we can run one more round of tests, that would be good.

regarding squashing, 
Please don't do that. The three commits are different and cannot be merged 
to a single commit. probably, we can get rid of the merge commit.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack pull request #1818: CLOUDSTACK-9655 The template which is registe...

2016-12-06 Thread karuturi
GitHub user karuturi opened a pull request:

https://github.com/apache/cloudstack/pull/1818

CLOUDSTACK-9655 The template which is registered in all zones will be 
deleted by deleting 1 template on any zone

added extra warning message if it's a cross-zone template ("This is a
cross zone template and will be deleted from all the zones. Are you sure
you want to proceed?").

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/Accelerite/cloudstack CLOUDSTACK-9655

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cloudstack/pull/1818.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #1818


commit d6a430990c899f95b5181ae1fd53df9ea7d57b07
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Date:   2016-12-06T10:55:01Z

CLOUDSTACK-9655 The template which is registered in all zones will be
deleted by deleting 1 template on any zone

added extra warning message if it's a cross-zone template ("This is a
cross zone template and will be deleted from all the zones. Are you sure
you want to proceed?").




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


Re: JIRA access please

2016-12-05 Thread Rajani Karuturi
you should be able to assign now.

~ Rajani
http://cloudplatform.accelerite.com/

On December 6, 2016 at 10:04 AM, Rashmi Dixit
(rashmi_di...@accelerite.com) wrote:
Hi,

I created a bug in JIRA and would like to assign it to myself.
However, it doesn't look like I have the appropriate rights. Can
someone please grant them to me? My username is "rashmi.dixit".

Thanks!
Rashmi

Rashmi Dixit
Principal Product Engineer | CloudPlatform | www.accelerite.com 
( http://www.accelerite.com )

DISCLAIMER
==
This e-mail may contain privileged and confidential information
which is the property of Accelerite, a Persistent Systems
business. It is intended only for the use of the individual or
entity to which it is addressed. If you are not the intended
recipient, you are not authorized to read, retain, copy, print,
distribute or use this message. If you have received this
communication in error, please notify the sender and delete all
copies of this message. Accelerite, a Persistent Systems business
does not accept any liability for virus infected mails.

[GitHub] cloudstack issue #1711: XenServer 7 Support

2016-12-04 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1711
  
managed to create a PR by clicking more buttons.. somehow, it didn't show 
your fork on search

https://github.com/syed/cloudstack/pull/6


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1711: XenServer 7 Support

2016-12-04 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1711
  
@syed I cannot find your repo to create a PR.

![image](https://cloud.githubusercontent.com/assets/186833/20875605/10c4f0c8-bae2-11e6-8747-a60c5a300c19.png)
 
I updated the changes Here 
https://github.com/Accelerite/cloudstack/commits/xenserver7

If you can just download the patch from 
https://github.com/Accelerite/cloudstack/commit/fd77c2a690b56843266724cb94d6e43356a03091.patch
 and add it to your xenserver7 branch, it will show up in this PR.



---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1809: CLOUDSTACK-9646: No usage is generated for uploaded ...

2016-12-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1809
  
@rhtyd in progress


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack pull request #1809: CLOUDSTACK-9646: No usage is generated for up...

2016-12-02 Thread karuturi
GitHub user karuturi opened a pull request:

https://github.com/apache/cloudstack/pull/1809

CLOUDSTACK-9646: No usage is generated for uploaded templates/volumes from 
local

published usage events on successful upload of template or volume.

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/Accelerite/cloudstack CLOUDSTACK-9646

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cloudstack/pull/1809.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #1809


commit 1f7b4624008094a059428dbaf4784fbd9e881130
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Date:   2016-09-07T06:51:23Z

CLOUDSTACK-9646: No usage is generated for uploaded templates/volumes from 
local

published usage events on successful upload of template or volume.




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #828: CLOUDSTACK-8854: Apple Mac OS/X VM get created withou...

2016-12-01 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/828
  
@blueorangutan test centos6 vmware-55u3


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #828: CLOUDSTACK-8854: Apple Mac OS/X VM get created withou...

2016-12-01 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/828
  
@blueorangutan help


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack pull request #1794: added more guest os

2016-11-28 Thread karuturi
GitHub user karuturi opened a pull request:

https://github.com/apache/cloudstack/pull/1794

added more guest os

centos 6.6, centos 6.7, rhel 6.6, rhel 6.7, windows server 2016, rhel
7.2, centos 7.2

You can merge this pull request into a Git repository by running:

$ git pull https://github.com/Accelerite/cloudstack guest-os

Alternatively you can review and apply these changes as the patch at:

https://github.com/apache/cloudstack/pull/1794.patch

To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:

This closes #1794


commit af0d37b945f7620c15391ef5c829b42c88398091
Author: Rajani Karuturi <rajani.karut...@accelerite.com>
Date:   2016-11-28T11:42:09Z

added more guest os

centos 6.6, centos 6.7, rhel 6.6, rhel 6.7, windows server 2016, rhel
7.2, centos 7.2




---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1700: CLOUDSTACK-9359: IPv6 for Basic Networking

2016-11-28 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1700
  
@blueorangutan test matrix


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1700: CLOUDSTACK-9359: IPv6 for Basic Networking

2016-11-16 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1700
  
@blueorangutan test matrix


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1578: CLOUDSTACK-9401 : Support for Internal DNS in Nuage ...

2016-11-15 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1578
  
none of the test failures are related and it has enough LGTMs. I am merging 
this now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1578: CLOUDSTACK-9401 : Support for Internal DNS in Nuage ...

2016-11-15 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1578
  
@rhtyd Can you comment on the test failures? looks like the failures are 
not related to this pr.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1748: KVM enhancements for managed storage

2016-11-07 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1748
  
Thanks @mike-tutkowski. Will take a look at #1749


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1749: Updates for SAN-assisted snapshots

2016-11-07 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1749
  
@blueorangutan test matrix


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1745: CLOUDSTACK-9503: Increased the VR script timeout. Mo...

2016-11-04 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1745
  
@blueorangutan test matrix


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1745: CLOUDSTACK-9503: Increased the VR script timeout. Mo...

2016-11-04 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1745
  
@blueorangutan help


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1745: CLOUDSTACK-9503: Increased the VR script timeout. Mo...

2016-11-04 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1745
  
@blueorangutan test matrix component/test_routers.py 
component/test_acl_isolatednetwork.py component/test_add_remove_network.py 
component/test_network_offering.py component/test_persistent_networks.py


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #873: CLOUDSTACK-8896: allocated percentage of storage pool...

2016-11-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/873
  
I tried rebasing to 4.8 but there were conflicts. rebased it against 4.9


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1600: Support Backup of Snapshots for Managed Storage

2016-11-02 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1600
  
Looks like all the issues are resolved and the tests are good. I am merging 
this now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1739: Fix xapi pluginlib for XenServer 7

2016-10-27 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1739
  
PR #1711 has this and bunch of other changes needed for XS7 support.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1615: CLOUDSTACK-9438: Fix for CLOUDSTACK-9252 - Make NFS ...

2016-10-26 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1615
  
reran the test for delete account and it passes.
`Test for delete account ... === TestName: test_delete_account | Status : 
SUCCESS ===
ok`
merging this PR now


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1615: CLOUDSTACK-9438: Fix for CLOUDSTACK-9252 - Make NFS ...

2016-10-26 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1615
  
@blueorangutan test


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1615: CLOUDSTACK-9438: Fix for CLOUDSTACK-9252 - Make NFS ...

2016-10-25 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1615
  
ok. Thank you. 


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1716: CLOUDSTACK-9555 when a template is deleted and then ...

2016-10-25 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1716
  
@yvsubhash Can you check why travis failed? (force push to re run it if its 
a false alarm)


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1615: CLOUDSTACK-9438: Fix for CLOUDSTACK-9252 - Make NFS ...

2016-10-25 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1615
  
@rhtyd any update on the tests?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1642: CLOUDSTACK-9504: System VMs on Managed Storage

2016-10-25 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1642
  
yes. I am merging this now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1451: CLOUDSTACK-9319: Use timeout when applying config to...

2016-10-25 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1451
  
Code LGTM.

BVTs are good(iso failures are URL access issues and not related to this 
PR).

merging this now


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1615: CLOUDSTACK-9438: Fix for CLOUDSTACK-9252 - Make NFS ...

2016-10-25 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1615
  
@blueorangutan @rhtyd any update on the tests? Is the job running?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1615: CLOUDSTACK-9438: Fix for CLOUDSTACK-9252 - Make NFS ...

2016-10-24 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1615
  
@blueorangutan test centos7 vmware-60u2


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1615: CLOUDSTACK-9438: Fix for CLOUDSTACK-9252 - Make NFS ...

2016-10-24 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1615
  
@blueorangutan help


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1624: Fixes regarding VOLUME_DELETE events resulting from ...

2016-10-24 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1624
  
It is now fwd merged to all the branches. Thanks


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1642: CLOUDSTACK-9504: System VMs on Managed Storage

2016-10-24 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1642
  
@blueorangutan @rhtyd How are we on this PR? are the failures related? Or 
can I go ahead and merge this?


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1624: Fixes regarding VOLUME_DELETE events resulting from ...

2016-10-22 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1624
  
This is pushed to 4.8 but not merged fwd. 
looks like 4.8 is not fwd merged for some commits and there are conflicts 
now. Need to investigate further. Will continue on monday.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


[GitHub] cloudstack issue #1624: Fixes regarding VOLUME_DELETE events resulting from ...

2016-10-22 Thread karuturi
Github user karuturi commented on the issue:

https://github.com/apache/cloudstack/pull/1624
  
Iso failures are due to URL access issues. All good here. merging this now.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---


<    1   2   3   4   5   6   7   8   9   10   >