[jira] [Commented] (JCLOUDS-1113) openstack cinder V2 api support.

2018-08-03 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1113?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16568372#comment-16568372 ] Alix Lourme commented on JCLOUDS-1113: -- {quote} Now cinder v3 is available in addition

[jira] [Commented] (JCLOUDS-1113) openstack cinder V2 api support.

2018-08-03 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1113?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16568351#comment-16568351 ] Alix Lourme commented on JCLOUDS-1113: -- Now cinder v3 is available in addition. > openst

[jira] [Commented] (JCLOUDS-1197) About openstack api versions

2018-08-03 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1197?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16568326#comment-16568326 ] Alix Lourme commented on JCLOUDS-1197: -- In JClouds 2.1.0: * Keystone v3 : *yes* (JCLOUDS-114

[jclouds/jclouds-site] JCLOUDS-1414: Keystone authentication improvment (#216)

2018-05-11 Thread Alix Lourme
Following #214, some OpenStack keystone authentication improvments, following @demobox review. You can view, comment on, or merge this pull request online at: https://github.com/jclouds/jclouds-site/pull/216 -- Commit Summary -- * JCLOUDS-1414: Keystone authentication improvment -- File

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-11 Thread Alix Lourme
@demobox : Thanks for the review. I will do it in a // PR (this one merged) after feedback on my remarks. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-11 Thread Alix Lourme
axel3rd commented on this pull request. > +{% highlight java %} +final Properties overrides = new Properties(); +overrides.put(KeystoneProperties.KEYSTONE_VERSION, "2"); +overrides.put(KeystoneProperties.TENANT_NAME, "myTenant"); + +ContextBuilder.newBuilder("openstack-nova") +

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-11 Thread Alix Lourme
axel3rd commented on this pull request. > @@ -92,6 +93,220 @@ There are some differences in terminology between jclouds > and OpenStack that sho +## Keystone v2-v3 authentication + +Openstack Keystone (aka: [OpenStack Identity Service](https://docs.openstack.org/keystone/latest/)) has

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-10 Thread Alix Lourme
So very valuable *2 characters* PR ^^ : #215 -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/jclouds/jclouds-site/pull/214#issuecomment-388060585

[jclouds/jclouds-site] JCLOUDS-1414: Fix "since" version for PROJECT-DOMAIN-XXX props (#215)

2018-05-10 Thread Alix Lourme
[JCLOUDS-1414](https://issues.apache.org/jira/browse/JCLOUDS-1414): Fix minimal version of jclouds for support of `PROJECT-DOMAIN-NAME` & `PROJECT-DOMAIN-ID` properties. You can view, comment on, or merge this pull request online at: https://github.com/jclouds/jclouds-site/pull/215 -- Commit

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-10 Thread Alix Lourme
@nacx : As a "new feature", I didn't thought it was could be integrated in v2.1.x, I will be attentive to the roadmap because this PR doc is perhaps not true: : [Keystone v2-v3 authentication](https://jclouds.apache.org/guides/openstack/#keystone) (*v3: Project-scoped*)

Re: [jclouds/jclouds] OpenStack Keystone V3 - different auth "domains" support (JCLOUDS-1414) (#1204)

2018-05-09 Thread Alix Lourme
> I will do that (your reviews, thanks) this wednesday. About useTenant flag I > will be more explicit and add a unit test to prove the use case. Done, with `useTenant` renamed with [some explanation](https://github.com/jclouds/jclouds/pull/1204/files#diff-918e1e161307a179875339dfa9caceedR109),

Re: [jclouds/jclouds] OpenStack Keystone V3 - different auth "domains" support (JCLOUDS-1414) (#1204)

2018-05-08 Thread Alix Lourme
@nacx : I will do that (your reviews, thanks) this wednesday. About `useTenant` flag I will be more explicit and add a unit test to prove the use case. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub:

Re: [jclouds/jclouds] OpenStack Keystone V3 - different auth "domains" support (JCLOUDS-1414) (#1204)

2018-05-08 Thread Alix Lourme
axel3rd commented on this pull request. >} else if (DOMAIN.equals(parts[0])) { return DomainScope.create(Name.create(parts[1])); } else { return DomainIdScope.create(Id.create(parts[1])); } } + + private Object

[jira] [Commented] (JCLOUDS-1414) OpenStack Keystone V3: Support different "domain" for "identity/user" and "project"

2018-05-07 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16466093#comment-16466093 ] Alix Lourme commented on JCLOUDS-1414: -- PR reference: [#1204|https://github.com/jclouds/jclouds

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-07 Thread Alix Lourme
> Yes ... and perhaps some minor change on properties name in progress ... Done, 1 line changed: overrides.put(KeystoneProperties.PROJECT_DOMAIN_NAME, "default"); // Since jclouds v2.2.0 (see PROJECT_DOMAIN_ID as complement) Linked with

[jclouds/jclouds] OpenStack Keystone V3 - different auth "domains" support (JCLOUDS-1414) (#1204)

2018-05-07 Thread Alix Lourme
Cf. [JCLOUDS-1414](https://issues.apache.org/jira/browse/JCLOUDS-1414) You can view, comment on, or merge this pull request online at: https://github.com/jclouds/jclouds/pull/1204 -- Commit Summary -- * OpenStack Keystone V3 - different auth "domains" support (JCLOUDS-1414) -- File Changes

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-07 Thread Alix Lourme
> Since you reference a new keystone property I'd hold this and merge once the > changes in Keystone are merged and the new property exists. Yes ... and perhaps some minor change on properties name in progress ... -- You are receiving this because you are subscribed to this thread. Reply to

[jira] [Commented] (JCLOUDS-1414) OpenStack Keystone V3: Support different "domain" for "identity/user" and "project"

2018-05-07 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16466030#comment-16466030 ] Alix Lourme commented on JCLOUDS-1414: -- {quote} I've tried to create a wiki page with a default

[jira] [Commented] (JCLOUDS-1414) OpenStack Keystone V3: Support different "domain" for "identity/user" and "project"

2018-05-07 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16465952#comment-16465952 ] Alix Lourme commented on JCLOUDS-1414: -- After reviewing [project-scoped|https://docs.openstack.org

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-07 Thread Alix Lourme
> Perhaps a consensus could be to add a comment before ContextBuilder like > [...]: > One minor comment, but it would help readability if you format the generated > json auth example. Done (without new-line-comma for json, to reduce lines number). Last proposal: [Keystone v2-v3 authentication

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-07 Thread Alix Lourme
> pointing maybe the reader to the authentication section above instead of using I have hesitate to do that ... but the current snippet explicits how to retrieve an API (nova, swift, ...) even if v2 is deprecated (v3 needs more code). So keystone considerations was writted before (hoping that

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-07 Thread Alix Lourme
@andreaturli : Thanks for grammar fix & suggestions. Fixed in [Keystone v2-v3 authentication](https://393f4caa8037a748294f-756fd4e7d22e69a6f0ff4346cb78ae2b.ssl.cf5.rackcdn.com/guides/openstack/#keystone). Except about `KeystoneProperties.KEYSTONE_VERSION` ... not sure about that. -- You are

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-07 Thread Alix Lourme
axel3rd commented on this pull request. > + +Openstack Keystone (aka: [OpenStack Identity Service](https://docs.openstack.org/keystone/latest/)) has major changes between v2 and v3 (detail. [Identity API v2.0 and v3

[jira] [Comment Edited] (JCLOUDS-1414) OpenStack Keystone V3: Support different "domain" for "identity/user" and "project"

2018-05-07 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16465819#comment-16465819 ] Alix Lourme edited comment on JCLOUDS-1414 at 5/7/18 11:55 AM: --- {quote

[jira] [Commented] (JCLOUDS-1414) OpenStack Keystone V3: Support different "domain" for "identity/user" and "project"

2018-05-07 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16465819#comment-16465819 ] Alix Lourme commented on JCLOUDS-1414: -- {quote} Looks good to me, although I'd rather name

Re: [jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-07 Thread Alix Lourme
Some tries about code & list typo, the last looks fine: Openstack [Keystone v2-v3 authentication](https://d6762342ecf65bd47950-3e336ecb7f68d8dda5e5d435de17b0ef.ssl.cf5.rackcdn.com/guides/openstack/#keystone) -- You are receiving this because you are subscribed to this thread. Reply to this

[jclouds/jclouds-site] Documentation about Openstack Keystone v2/v3 usage (#214)

2018-05-07 Thread Alix Lourme
See [JCLOUDS-1414](https://issues.apache.org/jira/browse/JCLOUDS-1414), documentation about Openstack keystone v2/v3 usage You can view, comment on, or merge this pull request online at: https://github.com/jclouds/jclouds-site/pull/214 -- Commit Summary -- * #JCLOUDS-1414: Documentation

[jira] [Commented] (JCLOUDS-1414) OpenStack Keystone V3: Support different "domain" for "identity/user" and "project"

2018-05-01 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16459940#comment-16459940 ] Alix Lourme commented on JCLOUDS-1414: -- Hello [~nacx], {quote} would you like to try going one

[jira] [Commented] (JCLOUDS-1414) OpenStack Keystone V3: Support different "domain" for "identity/user" and "project"

2018-04-30 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16458500#comment-16458500 ] Alix Lourme commented on JCLOUDS-1414: -- After debugging the _domain_ creation for _project_

[jira] [Updated] (JCLOUDS-1414) OpenStack Keystone V3: Support different "domain" for "identity/user" and "project"

2018-04-30 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1414?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Alix Lourme updated JCLOUDS-1414: - Priority: Minor (was: Critical) > OpenStack Keystone V3: Support different &quo

[jira] [Commented] (JCLOUDS-1414) OpenStack Keystone V3: Support different "domain" for "identity/user" and "project"

2018-04-27 Thread Alix Lourme (JIRA)
[ https://issues.apache.org/jira/browse/JCLOUDS-1414?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16456932#comment-16456932 ] Alix Lourme commented on JCLOUDS-1414: -- Hello [~andreaturli], {quote} I'm not sure I understand