[jclouds] Adds windows ACL code for file permissions, fixes build. (#733)

2015-04-22 Thread Zack Shoylev
You can view, comment on, or merge this pull request online at: https://github.com/jclouds/jclouds/pull/733 -- Commit Summary -- * Adds windows ACL code for file permissions, fixes build. -- File Changes -- M apis/filesystem/src/main/java/org/jclouds/filesystem/strategy/internal/File

[jira] [Created] (JCLOUDS-892) GCE: Compute abstraction should use one network for all groups

2015-04-22 Thread Daniel Broudy (JIRA)
Daniel Broudy created JCLOUDS-892: - Summary: GCE: Compute abstraction should use one network for all groups Key: JCLOUDS-892 URL: https://issues.apache.org/jira/browse/JCLOUDS-892 Project: jclouds

Re: [jclouds] Fixes AWS EC2 virtualization types of hardware profiles (#732)

2015-04-22 Thread Alex Heneveld
@aledsage i think that's an old checkin. closing and reopening. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/732#issuecomment-95238874

Re: [jclouds] Fixes AWS EC2 virtualization types of hardware profiles (#732)

2015-04-22 Thread Aled Sage
@ahgittin see check style failures at https://jclouds.ci.cloudbees.com/job/jclouds-pull-requests/1717/org.apache.jclouds.provider$aws-ec2/violations/file/src/test/java/org/jclouds/aws/ec2/compute/AWSEC2ComputeServiceApiMockTest.java/ These are caused by lack of white space around "+". --- Reply

Re: [jclouds] Fixes AWS EC2 virtualization types of hardware profiles (#732)

2015-04-22 Thread Alex Heneveld
Note https://github.com/ahgittin/jclouds/commit/384f94557017b13327bce3b170186094f30aefee#diff-9daaac923918a5d9ff5df58b753c6dc1R221 -- I've marked `t2` deprecated because it requires a VPC. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/732#issuecom

Re: [jclouds] Fixes AWS EC2 virtualization types of hardware profiles (#732)

2015-04-22 Thread Alex Heneveld
I believe the last commit fixes the outstanding issues. --- Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds/pull/732#issuecomment-95175094

Re: [jclouds] Fixes AWS EC2 virtualization types of hardware profiles (#732)

2015-04-22 Thread Alex Heneveld
> @@ -43,7 +43,14 @@ > public RegionAndName apply(Image from) { > checkState(from.getLocation() != null, > "in ec2, image locations cannot be null; typically, > they are Region-scoped"); > -return new RegionAndName(from.getLocation().getId()

Re: [jclouds] Fixes AWS EC2 virtualization types of hardware profiles (#732)

2015-04-22 Thread Alex Heneveld
> @@ -139,6 +135,20 @@ public EC2HardwareBuilder > virtualizationType(VirtualizationType virtualizationTy >return this; > } > > + public EC2HardwareBuilder virtualizationTypes(VirtualizationType > ...virtualizationTypes) { > + Preconditions.checkArgument(virtualizationTypes.l

Re: [jclouds] Fixes AWS EC2 virtualization types of hardware profiles (#732)

2015-04-22 Thread Alex Heneveld
> @@ -139,6 +135,20 @@ public EC2HardwareBuilder > virtualizationType(VirtualizationType virtualizationTy >return this; > } > > + public EC2HardwareBuilder virtualizationTypes(VirtualizationType > ...virtualizationTypes) { > + Preconditions.checkArgument(virtualizationTypes.l

Re: [jclouds] Fixes AWS EC2 virtualization types of hardware profiles (#732)

2015-04-22 Thread Ignasi Barrera
> @@ -43,7 +43,14 @@ > public RegionAndName apply(Image from) { > checkState(from.getLocation() != null, > "in ec2, image locations cannot be null; typically, > they are Region-scoped"); > -return new RegionAndName(from.getLocation().getId()

Re: [jclouds] Fixes AWS EC2 virtualization types of hardware profiles (#732)

2015-04-22 Thread Ignasi Barrera
> @@ -139,6 +135,20 @@ public EC2HardwareBuilder > virtualizationType(VirtualizationType virtualizationTy >return this; > } > > + public EC2HardwareBuilder virtualizationTypes(VirtualizationType > ...virtualizationTypes) { > + Preconditions.checkArgument(virtualizationTypes.l

Re: [jclouds] Fixes AWS EC2 virtualization types of hardware profiles (#732)

2015-04-22 Thread Ignasi Barrera
> @@ -139,6 +135,20 @@ public EC2HardwareBuilder > virtualizationType(VirtualizationType virtualizationTy >return this; > } > > + public EC2HardwareBuilder virtualizationTypes(VirtualizationType > ...virtualizationTypes) { > + Preconditions.checkArgument(virtualizationTypes.l

[jira] [Commented] (JCLOUDS-889) listImages don't consider `hvm` vs `paravirtual`

2015-04-22 Thread Alex Heneveld (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14506952#comment-14506952 ] Alex Heneveld commented on JCLOUDS-889: --- [~yaronr] i've not addressed Volumes > li

[jira] [Commented] (JCLOUDS-889) listImages don't consider `hvm` vs `paravirtual`

2015-04-22 Thread Alex Heneveld (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14506937#comment-14506937 ] Alex Heneveld commented on JCLOUDS-889: --- fixed in https://github.com/jclouds/jcloud

[jclouds] Fixes AWS EC2 virtualization types of hardware profiles (#732)

2015-04-22 Thread Alex Heneveld
New generation hardware instance types prefer HVM, with some not supporting Paravirtual. The code used to assume all AWS Hardware instance types were PV, causing the failure described at https://issues.apache.org/jira/browse/JCLOUDS-889 . This also adds a `boolean deprecated` to `Hardware`, de

[jira] [Commented] (JCLOUDS-889) listImages don't consider `hvm` vs `paravirtual`

2015-04-22 Thread Yaron Rosenbaum (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14506828#comment-14506828 ] Yaron Rosenbaum commented on JCLOUDS-889: - +1. Also with regard to Volumes, Devic

[jira] [Updated] (JCLOUDS-889) listImages don't consider `hvm` vs `paravirtual`

2015-04-22 Thread Ignasi Barrera (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-889?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Ignasi Barrera updated JCLOUDS-889: --- Labels: aws-ec2 (was: ) > listImages don't consider `hvm` vs `paravirtual` > ---

[jira] [Created] (JCLOUDS-891) Add CloudSigma Miami region

2015-04-22 Thread Ignasi Barrera (JIRA)
Ignasi Barrera created JCLOUDS-891: -- Summary: Add CloudSigma Miami region Key: JCLOUDS-891 URL: https://issues.apache.org/jira/browse/JCLOUDS-891 Project: jclouds Issue Type: New Feature

[jira] [Created] (JCLOUDS-890) Chef bootstrap fails if no attributes are defined

2015-04-22 Thread Ignasi Barrera (JIRA)
Ignasi Barrera created JCLOUDS-890: -- Summary: Chef bootstrap fails if no attributes are defined Key: JCLOUDS-890 URL: https://issues.apache.org/jira/browse/JCLOUDS-890 Project: jclouds Issue

[jira] [Commented] (JCLOUDS-889) listImages don't consider `hvm` vs `paravirtual`

2015-04-22 Thread Alex Heneveld (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-889?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14506642#comment-14506642 ] Alex Heneveld commented on JCLOUDS-889: --- This looks like a bug in `EC2HardwareBuild

Build failed in Jenkins: jclouds #3062

2015-04-22 Thread jenkins-no-reply
See -- [...truncated 34048 lines...] [JENKINS] Archiving to org.apache.jclouds.pro

Build failed in Jenkins: jclouds ยป jclouds Rackspace Next Generation Cloud Block Storage UK provider #3062

2015-04-22 Thread jenkins-no-reply
See -- Started calculate disk usage of build Finished Calculation of disk usage of build in 0 seconds Started calculate disk usage of workspace F