You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@cloudstack.apache.org by Rohit Yadav <ro...@shapeblue.com> on 2014/11/03 07:46:03 UTC

[VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Hi All,

I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for a vote:

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

List of changes:
https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3

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

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

Testing procedure:
https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure

This release aims to provide better parameter and filter completion, error handling and utf8/unicode support in CloudMonkey and therefore needs testing efforts in these areas. UTF-8 encoded string parameters usage needs to be tested in API calls, shell and piped calls, for example:

$ create user account=admin username=रोहित lastname=यादव firstname=रोहित email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
$ list users | grep रोहित

The vote will be open till Wednesday (72 hours). Please test this release and give your vote. Thanks.

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,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab

Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
I have fixed the issues that Geoff reported and have tested the scripts he shared with me. They work for me now soI’m calling off this voting round now. Will start a new one shortly.

> On 03-Nov-2014, at 10:18 pm, Rohit Yadav <ro...@shapeblue.com> wrote:
>
> Hi Geoff,
>
> I’ve fixed the issues now, please check with latest 5.3 branch. I’ll wait for your confirmation to start a new voting round.
>
> There are some comments from my side;
>
> - Launching will take longer time if username/password is used, because in non-interpreted or terminal mode, for every command it will first login, get a sessionkey and use it for executing the request. If you use apikey/secretkey, only one API request is sent.
>
> - When you grep, please put the things you’re grep-ing on in quotes, it’s more of a general rule to accommodate different shells (other than bash). The following works inside of cloudmonkey and on bash, but fails on zsh (tested on OSX):
>   cloudmonkey <command> | grep ^id\ =
> The following works on all three places (in cloudmonkey, in shell/bash and in zsh):
>    cloudmonkey <command> | grep “^id ="
>
> - While executing things in bash/script consider using the shell function $(put commands here) to execute things in background to get result instead of the `putting things in backquotes`, as $(is much safer).
>
> - About the slash issue (escaping blanks, as in "\ “), don’t double box strings with spaces. So, don’t do something like arg=‘“some value with space”’. I checked the scripts, you’re sending values in double quotes (“) inside single quotes (‘). This tells the default shell lexical parser to treat the inside of ‘’ (single quotes strings) as it is; which means the double quotes are part of the arg value you’re passing.
>
> For example from your script;
>
> $cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Tiny - 1vCPU, 256MB RAM"' memory=256 name='"Tiny"' offerha=true
>
> In the above, the displaytext is boxed by '’ quotes which contains a string with double quotes ".
>
> - Not sure about the query asyncjobresult issue, it could be that the ACS mgmt server is taking time, or the timeout period is low. Did you find that it timeouts before the set timeout value (in the server profile)? If so, can you share the logs with me?
>
>> On 03-Nov-2014, at 8:25 pm, Geoff Higginbottom <ge...@shapeblue.com> wrote:
>>
>> -1 from me for the following reasons:
>>
>> 1. Can no longer clear the Username and Password settings from the config using the set commands - I initially connect with these, then auto configure the API & Secret Key, then delete the old username and password settings using:
>>
>> #cloudmonkey set username
>> #cloudmonkey set password
>>
>> But it throws an error about not allowing blank values and does not clear the values from the config file (it works in earlier versions)
>>
>> 2.  Launching now takes a lot longer, suspect an authentication issue
>>
>> 3. A number of my scripts which have worked for all previous versions now no longer work, in particular anything with spaces in seems to fail:
>>
>> e.g.  This line used to work, but now it fails
>> offeringid1=`$cli list serviceofferings name='"Small Instance"' | grep ^id\ = | awk '{print $3}'`
>> If I rename the offering using the UI to Small_Instance (to remove the space) then it works
>>
>> e.g. This line used to work
>> $cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Ultra Tiny - 1vCPU, 128MB RAM"' memory=128 name='"Ultra Tiny"' offerha=true
>> Now it generates a Compute Offering with a name of "Ultra\ Tiny" and a description of "Ultra\ Tiny\ -\ 1vCPU,\ 128MB\ RAM" - note the \ before every space
>>
>> 4.  query asyncjobresult is timing out when running in a script
>>
>> Some of these errors may be caused by errors in my scripts, but I have been using these very scripts for testing for some time now and they have always worked OK with earlier versions of CloudMonkey
>>
>> Regards
>>
>> Geoff Higginbottom
>>
>> D: +44 20 3603 0542 | S: +44 20 3603 0540 | M: +447968161581
>>
>> geoff.higginbottom@shapeblue.com
>>
>> -----Original Message-----
>> From: Nux! [mailto:nux@li.nux.ro]
>> Sent: 03 November 2014 11:55
>> To: users@cloudstack.apache.org
>> Cc: dev@cloudstack.apache.org
>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>
>> Meh, facepalm! Yes, config is from 5.2.
>> "set paramcompletion true" solved it.
>>
>> Basic tests passed, +1 from me! :-)
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
>> ----- Original Message -----
>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>> To: dev@cloudstack.apache.org
>>> Cc: users@cloudstack.apache.org
>>> Sent: Monday, 3 November, 2014 11:40:40
>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round
>>> #4)
>>
>>> Hey,
>>>
>>> Looks like autocompletion is working (tab tab), make sure you set
>>> paramcompletion to true. Were you using 5.2.0 or older config file?
>>>
>>>> On 03-Nov-2014, at 5:06 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>
>>>> Rohit,
>>>>
>>>> I do have that module and I have install the -devel packages as well
>>>> before reinstalling cloudmonkey, still nothing.
>>>> http://img.nux.ro/s7L-Selection_046.png
>>>>
>>>> Any more pointers?
>>>>
>>>> Lucian
>>>>
>>>> --
>>>> Sent from the Delta quadrant using Borg technology!
>>>>
>>>> Nux!
>>>> www.nux.ro
>>>>
>>>> ----- Original Message -----
>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>> To: users@cloudstack.apache.org
>>>>> Cc: dev@cloudstack.apache.org
>>>>> Sent: Monday, 3 November, 2014 11:07:27
>>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>> (round #4)
>>>>
>>>>> Hi Lucian,
>>>>>
>>>>> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
>>>>> python-setuptools, python-pip, readline and readline-devel or
>>>>> readline-develop (please check names before you try it) on it and retry?
>>>>>
>>>>> It is possible that the CentOS machine you’re on has no readline installed.
>>>>> After checking that, just open python and import readline;
>>>>>
>>>>> $ python
>>>>>> import readline
>>>>>
>>>>> If this fails, it’s not cloudmonkey but a dependency that is not
>>>>> available on your machine. If you get issues, please report the errors.
>>>>>
>>>>>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>>
>>>>>> Rohit,
>>>>>>
>>>>>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no
>>>>>> go, no autocompletion. This is my CentOS 7 workstation, yesterday
>>>>>> on my laptop it was working fine (also CentOS 7).
>>>>>> Perhaps I'm missing some python module? Any one in particular I
>>>>>> should watch out for?
>>>>>>
>>>>>> Lucian
>>>>>>
>>>>>> --
>>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>>
>>>>>> Nux!
>>>>>> www.nux.ro
>>>>>>
>>>>>> ----- Original Message -----
>>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>>> To: dev@cloudstack.apache.org
>>>>>>> Cc: users@cloudstack.apache.org
>>>>>>> Sent: Monday, 3 November, 2014 10:28:00
>>>>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>>>> (round #4)
>>>>>>
>>>>>>> Hi Lucian,
>>>>>>>
>>>>>>> Can you start by removing ~/.cloudmonkey/cache or run sync again?
>>>>>>> Old caches
>>>>>>> (5.2.0 and before) don’t have cached keys that are used to
>>>>>>> autocomplete filter= arg on an API.
>>>>>>>
>>>>>>> If you can reproduce the issue, can you share where you are using
>>>>>>> this, Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>>>>>
>>>>>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>>>>
>>>>>>>> Hi Rohit,
>>>>>>>>
>>>>>>>> Is it me or autocompletion is broken in this one?
>>>>>>>>
>>>>>>>> --
>>>>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>>>>
>>>>>>>> Nux!
>>>>>>>> www.nux.ro
>>>>>>>>
>>>>>>>> ----- Original Message -----
>>>>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>>>>>> Cc: users@cloudstack.apache.org
>>>>>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>>>>>> (round #4)
>>>>>>>>
>>>>>>>>> Hi All,
>>>>>>>>>
>>>>>>>>> I've created a 5.3.0 release of CloudMonkey, with the following
>>>>>>>>> artifacts up for a vote:
>>>>>>>>>
>>>>>>>>> Git Branch and Commit SH:
>>>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>>>> .git;a=shortlog;h=refs/heads/5.3
>>>>>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>>>>>
>>>>>>>>> List of changes:
>>>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>>>> .git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>>>>>
>>>>>>>>> Source release (checksums and signatures are available at the
>>>>>>>>> same
>>>>>>>>> location):
>>>>>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.
>>>>>>>>> 3.0/
>>>>>>>>>
>>>>>>>>> PGP release keys (signed using 0EE3D884):
>>>>>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>>>>>
>>>>>>>>> Testing procedure:
>>>>>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonk
>>>>>>>>> ey+Release+test+procedure
>>>>>>>>>
>>>>>>>>> This release aims to provide better parameter and filter
>>>>>>>>> completion, error handling and utf8/unicode support in
>>>>>>>>> CloudMonkey and therefore needs testing efforts in these areas.
>>>>>>>>> UTF-8 encoded string parameters usage needs to be tested in API calls, shell and piped calls, for example:
>>>>>>>>>
>>>>>>>>> $ create user account=admin username=रोहित lastname=यादव
>>>>>>>>> firstname=रोहित email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>>>>>> $ list users | grep रोहित
>>>>>>>>>
>>>>>>>>> The vote will be open till Wednesday (72 hours). Please test
>>>>>>>>> this release and give your vote. Thanks.
>>>>>>>>>
>>>>>>>>> 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,
>>>>>>>>> Rohit Yadav
>>>>>>>>> Software Architect, ShapeBlue
>>>>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>>>>
>>>>>>>>> Find out more about ShapeBlue and our range of CloudStack
>>>>>>>>> related services
>>>>>>>>>
>>>>>>>>> IaaS Cloud Design &
>>>>>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>>>>> CSForge – rapid IaaS deployment
>>>>>>>>> framework<http://shapeblue.com/csforge/>
>>>>>>>>> CloudStack
>>>>>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>>>>> CloudStack Infrastructure
>>>>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>>>>> CloudStack Bootcamp Training
>>>>>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>>>>
>>>>>>>>> This email and any attachments to it may be confidential and are
>>>>>>>>> intended solely for the use of the individual to whom it is
>>>>>>>>> addressed. Any views or opinions expressed are solely those of
>>>>>>>>> the author and do not necessarily represent those of Shape Blue
>>>>>>>>> Ltd or related companies. If you are not the intended recipient
>>>>>>>>> of this email, you must neither take any action based upon its
>>>>>>>>> contents, nor copy or show it to anyone. Please contact the
>>>>>>>>> sender if you believe you have received this email in error.
>>>>>>>>> Shape Blue Ltd is a company incorporated in England & Wales.
>>>>>>>>> ShapeBlue Services India LLP is a company incorporated in India
>>>>>>>>> and is operated under license from Shape Blue Ltd. Shape Blue
>>>>>>>>> Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>>>>> ShapeBlue is a registered trademark.
>>>>>>>
>>>>>>> Regards,
>>>>>>> Rohit Yadav
>>>>>>> Software Architect, ShapeBlue
>>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Find out more about ShapeBlue and our range of CloudStack related
>>>>>>> services
>>>>>>>
>>>>>>> IaaS Cloud Design &
>>>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>>> CSForge – rapid IaaS deployment
>>>>>>> framework<http://shapeblue.com/csforge/>
>>>>>>> CloudStack
>>>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>>> CloudStack Infrastructure
>>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>>> CloudStack Bootcamp Training
>>>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>>
>>>>>>> This email and any attachments to it may be confidential and are
>>>>>>> intended solely for the use of the individual to whom it is
>>>>>>> addressed. Any views or opinions expressed are solely those of the
>>>>>>> author and do not necessarily represent those of Shape Blue Ltd or
>>>>>>> related companies. If you are not the intended recipient of this
>>>>>>> email, you must neither take any action based upon its contents,
>>>>>>> nor copy or show it to anyone. Please contact the sender if you
>>>>>>> believe you have received this email in error. Shape Blue Ltd is a
>>>>>>> company incorporated in England & Wales. ShapeBlue Services India
>>>>>>> LLP is a company incorporated in India and is operated under
>>>>>>> license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is
>>>>>>> a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>>> ShapeBlue is a registered trademark.
>>>>>
>>>>> Regards,
>>>>> Rohit Yadav
>>>>> Software Architect, ShapeBlue
>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>
>>>>>
>>>>>
>>>>> Find out more about ShapeBlue and our range of CloudStack related
>>>>> services
>>>>>
>>>>> IaaS Cloud Design &
>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>> CSForge – rapid IaaS deployment
>>>>> framework<http://shapeblue.com/csforge/>
>>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>> CloudStack Infrastructure
>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>> CloudStack Bootcamp Training
>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>
>>>>> This email and any attachments to it may be confidential and are
>>>>> intended solely for the use of the individual to whom it is
>>>>> addressed. Any views or opinions expressed are solely those of the
>>>>> author and do not necessarily represent those of Shape Blue Ltd or
>>>>> related companies. If you are not the intended recipient of this
>>>>> email, you must neither take any action based upon its contents, nor
>>>>> copy or show it to anyone. Please contact the sender if you believe
>>>>> you have received this email in error. Shape Blue Ltd is a company
>>>>> incorporated in England & Wales. ShapeBlue Services India LLP is a
>>>>> company incorporated in India and is operated under license from
>>>>> Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company
>>>>> incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>> ShapeBlue is a registered trademark.
>>>
>>> Regards,
>>> Rohit Yadav
>>> Software Architect, ShapeBlue
>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>
>>>
>>>
>>> Find out more about ShapeBlue and our range of CloudStack related
>>> services
>>>
>>> IaaS Cloud Design &
>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>> CSForge – rapid IaaS deployment
>>> framework<http://shapeblue.com/csforge/>
>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>> CloudStack Infrastructure
>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>> CloudStack Bootcamp Training
>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>
>>> This email and any attachments to it may be confidential and are
>>> intended solely for the use of the individual to whom it is addressed.
>>> Any views or opinions expressed are solely those of the author and do
>>> not necessarily represent those of Shape Blue Ltd or related
>>> companies. If you are not the intended recipient of this email, you
>>> must neither take any action based upon its contents, nor copy or show
>>> it to anyone. Please contact the sender if you believe you have
>>> received this email in error. Shape Blue Ltd is a company incorporated
>>> in England & Wales. ShapeBlue Services India LLP is a company
>>> incorporated in India and is operated under license from Shape Blue
>>> Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in
>>> Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>> ShapeBlue is a registered trademark.
>> Find out more about ShapeBlue and our range of CloudStack related services
>>
>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>> CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>
>> This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.
>
> Regards,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
>
>
>
> Find out more about ShapeBlue and our range of CloudStack related services
>
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>
> This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab



Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
I have fixed the issues that Geoff reported and have tested the scripts he shared with me. They work for me now soI’m calling off this voting round now. Will start a new one shortly.

> On 03-Nov-2014, at 10:18 pm, Rohit Yadav <ro...@shapeblue.com> wrote:
>
> Hi Geoff,
>
> I’ve fixed the issues now, please check with latest 5.3 branch. I’ll wait for your confirmation to start a new voting round.
>
> There are some comments from my side;
>
> - Launching will take longer time if username/password is used, because in non-interpreted or terminal mode, for every command it will first login, get a sessionkey and use it for executing the request. If you use apikey/secretkey, only one API request is sent.
>
> - When you grep, please put the things you’re grep-ing on in quotes, it’s more of a general rule to accommodate different shells (other than bash). The following works inside of cloudmonkey and on bash, but fails on zsh (tested on OSX):
>   cloudmonkey <command> | grep ^id\ =
> The following works on all three places (in cloudmonkey, in shell/bash and in zsh):
>    cloudmonkey <command> | grep “^id ="
>
> - While executing things in bash/script consider using the shell function $(put commands here) to execute things in background to get result instead of the `putting things in backquotes`, as $(is much safer).
>
> - About the slash issue (escaping blanks, as in "\ “), don’t double box strings with spaces. So, don’t do something like arg=‘“some value with space”’. I checked the scripts, you’re sending values in double quotes (“) inside single quotes (‘). This tells the default shell lexical parser to treat the inside of ‘’ (single quotes strings) as it is; which means the double quotes are part of the arg value you’re passing.
>
> For example from your script;
>
> $cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Tiny - 1vCPU, 256MB RAM"' memory=256 name='"Tiny"' offerha=true
>
> In the above, the displaytext is boxed by '’ quotes which contains a string with double quotes ".
>
> - Not sure about the query asyncjobresult issue, it could be that the ACS mgmt server is taking time, or the timeout period is low. Did you find that it timeouts before the set timeout value (in the server profile)? If so, can you share the logs with me?
>
>> On 03-Nov-2014, at 8:25 pm, Geoff Higginbottom <ge...@shapeblue.com> wrote:
>>
>> -1 from me for the following reasons:
>>
>> 1. Can no longer clear the Username and Password settings from the config using the set commands - I initially connect with these, then auto configure the API & Secret Key, then delete the old username and password settings using:
>>
>> #cloudmonkey set username
>> #cloudmonkey set password
>>
>> But it throws an error about not allowing blank values and does not clear the values from the config file (it works in earlier versions)
>>
>> 2.  Launching now takes a lot longer, suspect an authentication issue
>>
>> 3. A number of my scripts which have worked for all previous versions now no longer work, in particular anything with spaces in seems to fail:
>>
>> e.g.  This line used to work, but now it fails
>> offeringid1=`$cli list serviceofferings name='"Small Instance"' | grep ^id\ = | awk '{print $3}'`
>> If I rename the offering using the UI to Small_Instance (to remove the space) then it works
>>
>> e.g. This line used to work
>> $cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Ultra Tiny - 1vCPU, 128MB RAM"' memory=128 name='"Ultra Tiny"' offerha=true
>> Now it generates a Compute Offering with a name of "Ultra\ Tiny" and a description of "Ultra\ Tiny\ -\ 1vCPU,\ 128MB\ RAM" - note the \ before every space
>>
>> 4.  query asyncjobresult is timing out when running in a script
>>
>> Some of these errors may be caused by errors in my scripts, but I have been using these very scripts for testing for some time now and they have always worked OK with earlier versions of CloudMonkey
>>
>> Regards
>>
>> Geoff Higginbottom
>>
>> D: +44 20 3603 0542 | S: +44 20 3603 0540 | M: +447968161581
>>
>> geoff.higginbottom@shapeblue.com
>>
>> -----Original Message-----
>> From: Nux! [mailto:nux@li.nux.ro]
>> Sent: 03 November 2014 11:55
>> To: users@cloudstack.apache.org
>> Cc: dev@cloudstack.apache.org
>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>
>> Meh, facepalm! Yes, config is from 5.2.
>> "set paramcompletion true" solved it.
>>
>> Basic tests passed, +1 from me! :-)
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
>> ----- Original Message -----
>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>> To: dev@cloudstack.apache.org
>>> Cc: users@cloudstack.apache.org
>>> Sent: Monday, 3 November, 2014 11:40:40
>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round
>>> #4)
>>
>>> Hey,
>>>
>>> Looks like autocompletion is working (tab tab), make sure you set
>>> paramcompletion to true. Were you using 5.2.0 or older config file?
>>>
>>>> On 03-Nov-2014, at 5:06 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>
>>>> Rohit,
>>>>
>>>> I do have that module and I have install the -devel packages as well
>>>> before reinstalling cloudmonkey, still nothing.
>>>> http://img.nux.ro/s7L-Selection_046.png
>>>>
>>>> Any more pointers?
>>>>
>>>> Lucian
>>>>
>>>> --
>>>> Sent from the Delta quadrant using Borg technology!
>>>>
>>>> Nux!
>>>> www.nux.ro
>>>>
>>>> ----- Original Message -----
>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>> To: users@cloudstack.apache.org
>>>>> Cc: dev@cloudstack.apache.org
>>>>> Sent: Monday, 3 November, 2014 11:07:27
>>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>> (round #4)
>>>>
>>>>> Hi Lucian,
>>>>>
>>>>> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
>>>>> python-setuptools, python-pip, readline and readline-devel or
>>>>> readline-develop (please check names before you try it) on it and retry?
>>>>>
>>>>> It is possible that the CentOS machine you’re on has no readline installed.
>>>>> After checking that, just open python and import readline;
>>>>>
>>>>> $ python
>>>>>> import readline
>>>>>
>>>>> If this fails, it’s not cloudmonkey but a dependency that is not
>>>>> available on your machine. If you get issues, please report the errors.
>>>>>
>>>>>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>>
>>>>>> Rohit,
>>>>>>
>>>>>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no
>>>>>> go, no autocompletion. This is my CentOS 7 workstation, yesterday
>>>>>> on my laptop it was working fine (also CentOS 7).
>>>>>> Perhaps I'm missing some python module? Any one in particular I
>>>>>> should watch out for?
>>>>>>
>>>>>> Lucian
>>>>>>
>>>>>> --
>>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>>
>>>>>> Nux!
>>>>>> www.nux.ro
>>>>>>
>>>>>> ----- Original Message -----
>>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>>> To: dev@cloudstack.apache.org
>>>>>>> Cc: users@cloudstack.apache.org
>>>>>>> Sent: Monday, 3 November, 2014 10:28:00
>>>>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>>>> (round #4)
>>>>>>
>>>>>>> Hi Lucian,
>>>>>>>
>>>>>>> Can you start by removing ~/.cloudmonkey/cache or run sync again?
>>>>>>> Old caches
>>>>>>> (5.2.0 and before) don’t have cached keys that are used to
>>>>>>> autocomplete filter= arg on an API.
>>>>>>>
>>>>>>> If you can reproduce the issue, can you share where you are using
>>>>>>> this, Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>>>>>
>>>>>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>>>>
>>>>>>>> Hi Rohit,
>>>>>>>>
>>>>>>>> Is it me or autocompletion is broken in this one?
>>>>>>>>
>>>>>>>> --
>>>>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>>>>
>>>>>>>> Nux!
>>>>>>>> www.nux.ro
>>>>>>>>
>>>>>>>> ----- Original Message -----
>>>>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>>>>>> Cc: users@cloudstack.apache.org
>>>>>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>>>>>> (round #4)
>>>>>>>>
>>>>>>>>> Hi All,
>>>>>>>>>
>>>>>>>>> I've created a 5.3.0 release of CloudMonkey, with the following
>>>>>>>>> artifacts up for a vote:
>>>>>>>>>
>>>>>>>>> Git Branch and Commit SH:
>>>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>>>> .git;a=shortlog;h=refs/heads/5.3
>>>>>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>>>>>
>>>>>>>>> List of changes:
>>>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>>>> .git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>>>>>
>>>>>>>>> Source release (checksums and signatures are available at the
>>>>>>>>> same
>>>>>>>>> location):
>>>>>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.
>>>>>>>>> 3.0/
>>>>>>>>>
>>>>>>>>> PGP release keys (signed using 0EE3D884):
>>>>>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>>>>>
>>>>>>>>> Testing procedure:
>>>>>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonk
>>>>>>>>> ey+Release+test+procedure
>>>>>>>>>
>>>>>>>>> This release aims to provide better parameter and filter
>>>>>>>>> completion, error handling and utf8/unicode support in
>>>>>>>>> CloudMonkey and therefore needs testing efforts in these areas.
>>>>>>>>> UTF-8 encoded string parameters usage needs to be tested in API calls, shell and piped calls, for example:
>>>>>>>>>
>>>>>>>>> $ create user account=admin username=रोहित lastname=यादव
>>>>>>>>> firstname=रोहित email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>>>>>> $ list users | grep रोहित
>>>>>>>>>
>>>>>>>>> The vote will be open till Wednesday (72 hours). Please test
>>>>>>>>> this release and give your vote. Thanks.
>>>>>>>>>
>>>>>>>>> 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,
>>>>>>>>> Rohit Yadav
>>>>>>>>> Software Architect, ShapeBlue
>>>>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>>>>
>>>>>>>>> Find out more about ShapeBlue and our range of CloudStack
>>>>>>>>> related services
>>>>>>>>>
>>>>>>>>> IaaS Cloud Design &
>>>>>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>>>>> CSForge – rapid IaaS deployment
>>>>>>>>> framework<http://shapeblue.com/csforge/>
>>>>>>>>> CloudStack
>>>>>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>>>>> CloudStack Infrastructure
>>>>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>>>>> CloudStack Bootcamp Training
>>>>>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>>>>
>>>>>>>>> This email and any attachments to it may be confidential and are
>>>>>>>>> intended solely for the use of the individual to whom it is
>>>>>>>>> addressed. Any views or opinions expressed are solely those of
>>>>>>>>> the author and do not necessarily represent those of Shape Blue
>>>>>>>>> Ltd or related companies. If you are not the intended recipient
>>>>>>>>> of this email, you must neither take any action based upon its
>>>>>>>>> contents, nor copy or show it to anyone. Please contact the
>>>>>>>>> sender if you believe you have received this email in error.
>>>>>>>>> Shape Blue Ltd is a company incorporated in England & Wales.
>>>>>>>>> ShapeBlue Services India LLP is a company incorporated in India
>>>>>>>>> and is operated under license from Shape Blue Ltd. Shape Blue
>>>>>>>>> Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>>>>> ShapeBlue is a registered trademark.
>>>>>>>
>>>>>>> Regards,
>>>>>>> Rohit Yadav
>>>>>>> Software Architect, ShapeBlue
>>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> Find out more about ShapeBlue and our range of CloudStack related
>>>>>>> services
>>>>>>>
>>>>>>> IaaS Cloud Design &
>>>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>>> CSForge – rapid IaaS deployment
>>>>>>> framework<http://shapeblue.com/csforge/>
>>>>>>> CloudStack
>>>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>>> CloudStack Infrastructure
>>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>>> CloudStack Bootcamp Training
>>>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>>
>>>>>>> This email and any attachments to it may be confidential and are
>>>>>>> intended solely for the use of the individual to whom it is
>>>>>>> addressed. Any views or opinions expressed are solely those of the
>>>>>>> author and do not necessarily represent those of Shape Blue Ltd or
>>>>>>> related companies. If you are not the intended recipient of this
>>>>>>> email, you must neither take any action based upon its contents,
>>>>>>> nor copy or show it to anyone. Please contact the sender if you
>>>>>>> believe you have received this email in error. Shape Blue Ltd is a
>>>>>>> company incorporated in England & Wales. ShapeBlue Services India
>>>>>>> LLP is a company incorporated in India and is operated under
>>>>>>> license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is
>>>>>>> a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>>> ShapeBlue is a registered trademark.
>>>>>
>>>>> Regards,
>>>>> Rohit Yadav
>>>>> Software Architect, ShapeBlue
>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>
>>>>>
>>>>>
>>>>> Find out more about ShapeBlue and our range of CloudStack related
>>>>> services
>>>>>
>>>>> IaaS Cloud Design &
>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>> CSForge – rapid IaaS deployment
>>>>> framework<http://shapeblue.com/csforge/>
>>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>> CloudStack Infrastructure
>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>> CloudStack Bootcamp Training
>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>
>>>>> This email and any attachments to it may be confidential and are
>>>>> intended solely for the use of the individual to whom it is
>>>>> addressed. Any views or opinions expressed are solely those of the
>>>>> author and do not necessarily represent those of Shape Blue Ltd or
>>>>> related companies. If you are not the intended recipient of this
>>>>> email, you must neither take any action based upon its contents, nor
>>>>> copy or show it to anyone. Please contact the sender if you believe
>>>>> you have received this email in error. Shape Blue Ltd is a company
>>>>> incorporated in England & Wales. ShapeBlue Services India LLP is a
>>>>> company incorporated in India and is operated under license from
>>>>> Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company
>>>>> incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>> ShapeBlue is a registered trademark.
>>>
>>> Regards,
>>> Rohit Yadav
>>> Software Architect, ShapeBlue
>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>
>>>
>>>
>>> Find out more about ShapeBlue and our range of CloudStack related
>>> services
>>>
>>> IaaS Cloud Design &
>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>> CSForge – rapid IaaS deployment
>>> framework<http://shapeblue.com/csforge/>
>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>> CloudStack Infrastructure
>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>> CloudStack Bootcamp Training
>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>
>>> This email and any attachments to it may be confidential and are
>>> intended solely for the use of the individual to whom it is addressed.
>>> Any views or opinions expressed are solely those of the author and do
>>> not necessarily represent those of Shape Blue Ltd or related
>>> companies. If you are not the intended recipient of this email, you
>>> must neither take any action based upon its contents, nor copy or show
>>> it to anyone. Please contact the sender if you believe you have
>>> received this email in error. Shape Blue Ltd is a company incorporated
>>> in England & Wales. ShapeBlue Services India LLP is a company
>>> incorporated in India and is operated under license from Shape Blue
>>> Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in
>>> Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>> ShapeBlue is a registered trademark.
>> Find out more about ShapeBlue and our range of CloudStack related services
>>
>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>> CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>
>> This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.
>
> Regards,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
>
>
>
> Find out more about ShapeBlue and our range of CloudStack related services
>
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>
> This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab



Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
Hi Geoff,

I’ve fixed the issues now, please check with latest 5.3 branch. I’ll wait for your confirmation to start a new voting round.

There are some comments from my side;

- Launching will take longer time if username/password is used, because in non-interpreted or terminal mode, for every command it will first login, get a sessionkey and use it for executing the request. If you use apikey/secretkey, only one API request is sent.

- When you grep, please put the things you’re grep-ing on in quotes, it’s more of a general rule to accommodate different shells (other than bash). The following works inside of cloudmonkey and on bash, but fails on zsh (tested on OSX):
   cloudmonkey <command> | grep ^id\ =
The following works on all three places (in cloudmonkey, in shell/bash and in zsh):
    cloudmonkey <command> | grep “^id ="

- While executing things in bash/script consider using the shell function $(put commands here) to execute things in background to get result instead of the `putting things in backquotes`, as $(is much safer).

- About the slash issue (escaping blanks, as in "\ “), don’t double box strings with spaces. So, don’t do something like arg=‘“some value with space”’. I checked the scripts, you’re sending values in double quotes (“) inside single quotes (‘). This tells the default shell lexical parser to treat the inside of ‘’ (single quotes strings) as it is; which means the double quotes are part of the arg value you’re passing.

For example from your script;

$cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Tiny - 1vCPU, 256MB RAM"' memory=256 name='"Tiny"' offerha=true

In the above, the displaytext is boxed by '’ quotes which contains a string with double quotes ".

- Not sure about the query asyncjobresult issue, it could be that the ACS mgmt server is taking time, or the timeout period is low. Did you find that it timeouts before the set timeout value (in the server profile)? If so, can you share the logs with me?

> On 03-Nov-2014, at 8:25 pm, Geoff Higginbottom <ge...@shapeblue.com> wrote:
>
> -1 from me for the following reasons:
>
> 1. Can no longer clear the Username and Password settings from the config using the set commands - I initially connect with these, then auto configure the API & Secret Key, then delete the old username and password settings using:
>
> #cloudmonkey set username
> #cloudmonkey set password
>
> But it throws an error about not allowing blank values and does not clear the values from the config file (it works in earlier versions)
>
> 2.  Launching now takes a lot longer, suspect an authentication issue
>
> 3. A number of my scripts which have worked for all previous versions now no longer work, in particular anything with spaces in seems to fail:
>
> e.g.  This line used to work, but now it fails
> offeringid1=`$cli list serviceofferings name='"Small Instance"' | grep ^id\ = | awk '{print $3}'`
> If I rename the offering using the UI to Small_Instance (to remove the space) then it works
>
> e.g. This line used to work
> $cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Ultra Tiny - 1vCPU, 128MB RAM"' memory=128 name='"Ultra Tiny"' offerha=true
> Now it generates a Compute Offering with a name of "Ultra\ Tiny" and a description of "Ultra\ Tiny\ -\ 1vCPU,\ 128MB\ RAM" - note the \ before every space
>
> 4.  query asyncjobresult is timing out when running in a script
>
> Some of these errors may be caused by errors in my scripts, but I have been using these very scripts for testing for some time now and they have always worked OK with earlier versions of CloudMonkey
>
> Regards
>
> Geoff Higginbottom
>
> D: +44 20 3603 0542 | S: +44 20 3603 0540 | M: +447968161581
>
> geoff.higginbottom@shapeblue.com
>
> -----Original Message-----
> From: Nux! [mailto:nux@li.nux.ro]
> Sent: 03 November 2014 11:55
> To: users@cloudstack.apache.org
> Cc: dev@cloudstack.apache.org
> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>
> Meh, facepalm! Yes, config is from 5.2.
> "set paramcompletion true" solved it.
>
> Basic tests passed, +1 from me! :-)
>
> --
> Sent from the Delta quadrant using Borg technology!
>
> Nux!
> www.nux.ro
>
> ----- Original Message -----
>> From: "Rohit Yadav" <ro...@shapeblue.com>
>> To: dev@cloudstack.apache.org
>> Cc: users@cloudstack.apache.org
>> Sent: Monday, 3 November, 2014 11:40:40
>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round
>> #4)
>
>> Hey,
>>
>> Looks like autocompletion is working (tab tab), make sure you set
>> paramcompletion to true. Were you using 5.2.0 or older config file?
>>
>>> On 03-Nov-2014, at 5:06 pm, Nux! <nu...@li.nux.ro> wrote:
>>>
>>> Rohit,
>>>
>>> I do have that module and I have install the -devel packages as well
>>> before reinstalling cloudmonkey, still nothing.
>>> http://img.nux.ro/s7L-Selection_046.png
>>>
>>> Any more pointers?
>>>
>>> Lucian
>>>
>>> --
>>> Sent from the Delta quadrant using Borg technology!
>>>
>>> Nux!
>>> www.nux.ro
>>>
>>> ----- Original Message -----
>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>> To: users@cloudstack.apache.org
>>>> Cc: dev@cloudstack.apache.org
>>>> Sent: Monday, 3 November, 2014 11:07:27
>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>> (round #4)
>>>
>>>> Hi Lucian,
>>>>
>>>> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
>>>> python-setuptools, python-pip, readline and readline-devel or
>>>> readline-develop (please check names before you try it) on it and retry?
>>>>
>>>> It is possible that the CentOS machine you’re on has no readline installed.
>>>> After checking that, just open python and import readline;
>>>>
>>>> $ python
>>>>> import readline
>>>>
>>>> If this fails, it’s not cloudmonkey but a dependency that is not
>>>> available on your machine. If you get issues, please report the errors.
>>>>
>>>>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>
>>>>> Rohit,
>>>>>
>>>>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no
>>>>> go, no autocompletion. This is my CentOS 7 workstation, yesterday
>>>>> on my laptop it was working fine (also CentOS 7).
>>>>> Perhaps I'm missing some python module? Any one in particular I
>>>>> should watch out for?
>>>>>
>>>>> Lucian
>>>>>
>>>>> --
>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>
>>>>> Nux!
>>>>> www.nux.ro
>>>>>
>>>>> ----- Original Message -----
>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>> To: dev@cloudstack.apache.org
>>>>>> Cc: users@cloudstack.apache.org
>>>>>> Sent: Monday, 3 November, 2014 10:28:00
>>>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>>> (round #4)
>>>>>
>>>>>> Hi Lucian,
>>>>>>
>>>>>> Can you start by removing ~/.cloudmonkey/cache or run sync again?
>>>>>> Old caches
>>>>>> (5.2.0 and before) don’t have cached keys that are used to
>>>>>> autocomplete filter= arg on an API.
>>>>>>
>>>>>> If you can reproduce the issue, can you share where you are using
>>>>>> this, Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>>>>
>>>>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>>>
>>>>>>> Hi Rohit,
>>>>>>>
>>>>>>> Is it me or autocompletion is broken in this one?
>>>>>>>
>>>>>>> --
>>>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>>>
>>>>>>> Nux!
>>>>>>> www.nux.ro
>>>>>>>
>>>>>>> ----- Original Message -----
>>>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>>>>> Cc: users@cloudstack.apache.org
>>>>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>>>>> (round #4)
>>>>>>>
>>>>>>>> Hi All,
>>>>>>>>
>>>>>>>> I've created a 5.3.0 release of CloudMonkey, with the following
>>>>>>>> artifacts up for a vote:
>>>>>>>>
>>>>>>>> Git Branch and Commit SH:
>>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>>> .git;a=shortlog;h=refs/heads/5.3
>>>>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>>>>
>>>>>>>> List of changes:
>>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>>> .git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>>>>
>>>>>>>> Source release (checksums and signatures are available at the
>>>>>>>> same
>>>>>>>> location):
>>>>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.
>>>>>>>> 3.0/
>>>>>>>>
>>>>>>>> PGP release keys (signed using 0EE3D884):
>>>>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>>>>
>>>>>>>> Testing procedure:
>>>>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonk
>>>>>>>> ey+Release+test+procedure
>>>>>>>>
>>>>>>>> This release aims to provide better parameter and filter
>>>>>>>> completion, error handling and utf8/unicode support in
>>>>>>>> CloudMonkey and therefore needs testing efforts in these areas.
>>>>>>>> UTF-8 encoded string parameters usage needs to be tested in API calls, shell and piped calls, for example:
>>>>>>>>
>>>>>>>> $ create user account=admin username=रोहित lastname=यादव
>>>>>>>> firstname=रोहित email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>>>>> $ list users | grep रोहित
>>>>>>>>
>>>>>>>> The vote will be open till Wednesday (72 hours). Please test
>>>>>>>> this release and give your vote. Thanks.
>>>>>>>>
>>>>>>>> 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,
>>>>>>>> Rohit Yadav
>>>>>>>> Software Architect, ShapeBlue
>>>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>>>
>>>>>>>> Find out more about ShapeBlue and our range of CloudStack
>>>>>>>> related services
>>>>>>>>
>>>>>>>> IaaS Cloud Design &
>>>>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>>>> CSForge – rapid IaaS deployment
>>>>>>>> framework<http://shapeblue.com/csforge/>
>>>>>>>> CloudStack
>>>>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>>>> CloudStack Infrastructure
>>>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>>>> CloudStack Bootcamp Training
>>>>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>>>
>>>>>>>> This email and any attachments to it may be confidential and are
>>>>>>>> intended solely for the use of the individual to whom it is
>>>>>>>> addressed. Any views or opinions expressed are solely those of
>>>>>>>> the author and do not necessarily represent those of Shape Blue
>>>>>>>> Ltd or related companies. If you are not the intended recipient
>>>>>>>> of this email, you must neither take any action based upon its
>>>>>>>> contents, nor copy or show it to anyone. Please contact the
>>>>>>>> sender if you believe you have received this email in error.
>>>>>>>> Shape Blue Ltd is a company incorporated in England & Wales.
>>>>>>>> ShapeBlue Services India LLP is a company incorporated in India
>>>>>>>> and is operated under license from Shape Blue Ltd. Shape Blue
>>>>>>>> Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>>>> ShapeBlue is a registered trademark.
>>>>>>
>>>>>> Regards,
>>>>>> Rohit Yadav
>>>>>> Software Architect, ShapeBlue
>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>
>>>>>>
>>>>>>
>>>>>> Find out more about ShapeBlue and our range of CloudStack related
>>>>>> services
>>>>>>
>>>>>> IaaS Cloud Design &
>>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>> CSForge – rapid IaaS deployment
>>>>>> framework<http://shapeblue.com/csforge/>
>>>>>> CloudStack
>>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>> CloudStack Infrastructure
>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>> CloudStack Bootcamp Training
>>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>
>>>>>> This email and any attachments to it may be confidential and are
>>>>>> intended solely for the use of the individual to whom it is
>>>>>> addressed. Any views or opinions expressed are solely those of the
>>>>>> author and do not necessarily represent those of Shape Blue Ltd or
>>>>>> related companies. If you are not the intended recipient of this
>>>>>> email, you must neither take any action based upon its contents,
>>>>>> nor copy or show it to anyone. Please contact the sender if you
>>>>>> believe you have received this email in error. Shape Blue Ltd is a
>>>>>> company incorporated in England & Wales. ShapeBlue Services India
>>>>>> LLP is a company incorporated in India and is operated under
>>>>>> license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is
>>>>>> a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>> ShapeBlue is a registered trademark.
>>>>
>>>> Regards,
>>>> Rohit Yadav
>>>> Software Architect, ShapeBlue
>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>
>>>>
>>>>
>>>> Find out more about ShapeBlue and our range of CloudStack related
>>>> services
>>>>
>>>> IaaS Cloud Design &
>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>> CSForge – rapid IaaS deployment
>>>> framework<http://shapeblue.com/csforge/>
>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>> CloudStack Infrastructure
>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>> CloudStack Bootcamp Training
>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>
>>>> This email and any attachments to it may be confidential and are
>>>> intended solely for the use of the individual to whom it is
>>>> addressed. Any views or opinions expressed are solely those of the
>>>> author and do not necessarily represent those of Shape Blue Ltd or
>>>> related companies. If you are not the intended recipient of this
>>>> email, you must neither take any action based upon its contents, nor
>>>> copy or show it to anyone. Please contact the sender if you believe
>>>> you have received this email in error. Shape Blue Ltd is a company
>>>> incorporated in England & Wales. ShapeBlue Services India LLP is a
>>>> company incorporated in India and is operated under license from
>>>> Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company
>>>> incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>> ShapeBlue is a registered trademark.
>>
>> Regards,
>> Rohit Yadav
>> Software Architect, ShapeBlue
>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>
>>
>>
>> Find out more about ShapeBlue and our range of CloudStack related
>> services
>>
>> IaaS Cloud Design &
>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>> CSForge – rapid IaaS deployment
>> framework<http://shapeblue.com/csforge/>
>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>> CloudStack Infrastructure
>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>> CloudStack Bootcamp Training
>> Courses<http://shapeblue.com/cloudstack-training/>
>>
>> This email and any attachments to it may be confidential and are
>> intended solely for the use of the individual to whom it is addressed.
>> Any views or opinions expressed are solely those of the author and do
>> not necessarily represent those of Shape Blue Ltd or related
>> companies. If you are not the intended recipient of this email, you
>> must neither take any action based upon its contents, nor copy or show
>> it to anyone. Please contact the sender if you believe you have
>> received this email in error. Shape Blue Ltd is a company incorporated
>> in England & Wales. ShapeBlue Services India LLP is a company
>> incorporated in India and is operated under license from Shape Blue
>> Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in
>> Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>> ShapeBlue is a registered trademark.
> Find out more about ShapeBlue and our range of CloudStack related services
>
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>
> This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab



Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

RE: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Geoff Higginbottom <ge...@shapeblue.com>.
Hi Rohit,

I've sent you the scripts 'off list' so you can test them for yourself, but also added comments in-line

Regards

Geoff Higginbottom

D: +44 20 3603 0542 | S: +44 20 3603 0540 | M: +447968161581

geoff.higginbottom@shapeblue.com

-----Original Message-----
From: Rohit Yadav [mailto:rohit.yadav@shapeblue.com]
Sent: 03 November 2014 15:23
To: users@cloudstack.apache.org
Cc: dev@cloudstack.apache.org
Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Hi Geoff,

Thanks a lot of testing it. Reply in-line;


> On 03-Nov-2014, at 8:25 pm, Geoff Higginbottom <ge...@shapeblue.com> wrote:
>
> -1 from me for the following reasons:
>
> 1. Can no longer clear the Username and Password settings from the config using the set commands - I initially connect with these, then auto configure the API & Secret Key, then delete the old username and password settings using:
>
> #cloudmonkey set username
> #cloudmonkey set password
>
> But it throws an error about not allowing blank values and does not
> clear the values from the config file (it works in earlier versions)

I can fix this, I added this because earlier people could have create a profile with blank name (empty string) which caused weird things.

> 2.  Launching now takes a lot longer, suspect an authentication issue

I’ll have to check this, by launching do you mean when cloudmonkey starts (from terminal) or when an API is called within interpreter mode?

GH: When launching from a terminal it takes a log longer to get to the cloumonkey prompt, and scripts also take a lot longer to run


> 3. A number of my scripts which have worked for all previous versions now no longer work, in particular anything with spaces in seems to fail:
>
> e.g.  This line used to work, but now it fails offeringid1=`$cli list
> serviceofferings name='"Small Instance"' | grep ^id\ = | awk '{print
> $3}'` If I rename the offering using the UI to Small_Instance (to
> remove the space) then it works
>
> e.g. This line used to work
> $cli create serviceoffering cpunumber=1 cpuspeed=500
> displaytext='"Ultra Tiny - 1vCPU, 128MB RAM"' memory=128 name='"Ultra
> Tiny"' offerha=true Now it generates a Compute Offering with a name of
> "Ultra\ Tiny" and a description of "Ultra\ Tiny\ -\ 1vCPU,\ 128MB\
> RAM" - note the \ before every space

There was a shell lexical parsing issue I fixed and then the unicode support I added, it could be a side-effect I’ll check it out.

> 4.  query asyncjobresult is timing out when running in a script

Can you check the current profile’s timeout? The default is 3600 (seconds, or 1hour).

GH: The timeout is set for each script, and is typically 10 secs which has never been a problem before, it's probably related to slow authentication issue


Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab

Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.
Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

RE: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Geoff Higginbottom <ge...@shapeblue.com>.
Hi Rohit,

I've sent you the scripts 'off list' so you can test them for yourself, but also added comments in-line

Regards

Geoff Higginbottom

D: +44 20 3603 0542 | S: +44 20 3603 0540 | M: +447968161581

geoff.higginbottom@shapeblue.com

-----Original Message-----
From: Rohit Yadav [mailto:rohit.yadav@shapeblue.com]
Sent: 03 November 2014 15:23
To: users@cloudstack.apache.org
Cc: dev@cloudstack.apache.org
Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Hi Geoff,

Thanks a lot of testing it. Reply in-line;


> On 03-Nov-2014, at 8:25 pm, Geoff Higginbottom <ge...@shapeblue.com> wrote:
>
> -1 from me for the following reasons:
>
> 1. Can no longer clear the Username and Password settings from the config using the set commands - I initially connect with these, then auto configure the API & Secret Key, then delete the old username and password settings using:
>
> #cloudmonkey set username
> #cloudmonkey set password
>
> But it throws an error about not allowing blank values and does not
> clear the values from the config file (it works in earlier versions)

I can fix this, I added this because earlier people could have create a profile with blank name (empty string) which caused weird things.

> 2.  Launching now takes a lot longer, suspect an authentication issue

I’ll have to check this, by launching do you mean when cloudmonkey starts (from terminal) or when an API is called within interpreter mode?

GH: When launching from a terminal it takes a log longer to get to the cloumonkey prompt, and scripts also take a lot longer to run


> 3. A number of my scripts which have worked for all previous versions now no longer work, in particular anything with spaces in seems to fail:
>
> e.g.  This line used to work, but now it fails offeringid1=`$cli list
> serviceofferings name='"Small Instance"' | grep ^id\ = | awk '{print
> $3}'` If I rename the offering using the UI to Small_Instance (to
> remove the space) then it works
>
> e.g. This line used to work
> $cli create serviceoffering cpunumber=1 cpuspeed=500
> displaytext='"Ultra Tiny - 1vCPU, 128MB RAM"' memory=128 name='"Ultra
> Tiny"' offerha=true Now it generates a Compute Offering with a name of
> "Ultra\ Tiny" and a description of "Ultra\ Tiny\ -\ 1vCPU,\ 128MB\
> RAM" - note the \ before every space

There was a shell lexical parsing issue I fixed and then the unicode support I added, it could be a side-effect I’ll check it out.

> 4.  query asyncjobresult is timing out when running in a script

Can you check the current profile’s timeout? The default is 3600 (seconds, or 1hour).

GH: The timeout is set for each script, and is typically 10 secs which has never been a problem before, it's probably related to slow authentication issue


Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab

Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.
Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
Hi Geoff,

Thanks a lot of testing it. Reply in-line;


> On 03-Nov-2014, at 8:25 pm, Geoff Higginbottom <ge...@shapeblue.com> wrote:
>
> -1 from me for the following reasons:
>
> 1. Can no longer clear the Username and Password settings from the config using the set commands - I initially connect with these, then auto configure the API & Secret Key, then delete the old username and password settings using:
>
> #cloudmonkey set username
> #cloudmonkey set password
>
> But it throws an error about not allowing blank values and does not clear the values from the config file (it works in earlier versions)

I can fix this, I added this because earlier people could have create a profile with blank name (empty string) which caused weird things.

> 2.  Launching now takes a lot longer, suspect an authentication issue

I’ll have to check this, by launching do you mean when cloudmonkey starts (from terminal) or when an API is called within interpreter mode?

> 3. A number of my scripts which have worked for all previous versions now no longer work, in particular anything with spaces in seems to fail:
>
> e.g.  This line used to work, but now it fails
> offeringid1=`$cli list serviceofferings name='"Small Instance"' | grep ^id\ = | awk '{print $3}'`
> If I rename the offering using the UI to Small_Instance (to remove the space) then it works
>
> e.g. This line used to work
> $cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Ultra Tiny - 1vCPU, 128MB RAM"' memory=128 name='"Ultra Tiny"' offerha=true
> Now it generates a Compute Offering with a name of "Ultra\ Tiny" and a description of "Ultra\ Tiny\ -\ 1vCPU,\ 128MB\ RAM" - note the \ before every space

There was a shell lexical parsing issue I fixed and then the unicode support I added, it could be a side-effect I’ll check it out.

> 4.  query asyncjobresult is timing out when running in a script

Can you check the current profile’s timeout? The default is 3600 (seconds, or 1hour).

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab

Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
Hi Geoff,

Thanks a lot of testing it. Reply in-line;


> On 03-Nov-2014, at 8:25 pm, Geoff Higginbottom <ge...@shapeblue.com> wrote:
>
> -1 from me for the following reasons:
>
> 1. Can no longer clear the Username and Password settings from the config using the set commands - I initially connect with these, then auto configure the API & Secret Key, then delete the old username and password settings using:
>
> #cloudmonkey set username
> #cloudmonkey set password
>
> But it throws an error about not allowing blank values and does not clear the values from the config file (it works in earlier versions)

I can fix this, I added this because earlier people could have create a profile with blank name (empty string) which caused weird things.

> 2.  Launching now takes a lot longer, suspect an authentication issue

I’ll have to check this, by launching do you mean when cloudmonkey starts (from terminal) or when an API is called within interpreter mode?

> 3. A number of my scripts which have worked for all previous versions now no longer work, in particular anything with spaces in seems to fail:
>
> e.g.  This line used to work, but now it fails
> offeringid1=`$cli list serviceofferings name='"Small Instance"' | grep ^id\ = | awk '{print $3}'`
> If I rename the offering using the UI to Small_Instance (to remove the space) then it works
>
> e.g. This line used to work
> $cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Ultra Tiny - 1vCPU, 128MB RAM"' memory=128 name='"Ultra Tiny"' offerha=true
> Now it generates a Compute Offering with a name of "Ultra\ Tiny" and a description of "Ultra\ Tiny\ -\ 1vCPU,\ 128MB\ RAM" - note the \ before every space

There was a shell lexical parsing issue I fixed and then the unicode support I added, it could be a side-effect I’ll check it out.

> 4.  query asyncjobresult is timing out when running in a script

Can you check the current profile’s timeout? The default is 3600 (seconds, or 1hour).

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab

Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
Hi Geoff,

I’ve fixed the issues now, please check with latest 5.3 branch. I’ll wait for your confirmation to start a new voting round.

There are some comments from my side;

- Launching will take longer time if username/password is used, because in non-interpreted or terminal mode, for every command it will first login, get a sessionkey and use it for executing the request. If you use apikey/secretkey, only one API request is sent.

- When you grep, please put the things you’re grep-ing on in quotes, it’s more of a general rule to accommodate different shells (other than bash). The following works inside of cloudmonkey and on bash, but fails on zsh (tested on OSX):
   cloudmonkey <command> | grep ^id\ =
The following works on all three places (in cloudmonkey, in shell/bash and in zsh):
    cloudmonkey <command> | grep “^id ="

- While executing things in bash/script consider using the shell function $(put commands here) to execute things in background to get result instead of the `putting things in backquotes`, as $(is much safer).

- About the slash issue (escaping blanks, as in "\ “), don’t double box strings with spaces. So, don’t do something like arg=‘“some value with space”’. I checked the scripts, you’re sending values in double quotes (“) inside single quotes (‘). This tells the default shell lexical parser to treat the inside of ‘’ (single quotes strings) as it is; which means the double quotes are part of the arg value you’re passing.

For example from your script;

$cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Tiny - 1vCPU, 256MB RAM"' memory=256 name='"Tiny"' offerha=true

In the above, the displaytext is boxed by '’ quotes which contains a string with double quotes ".

- Not sure about the query asyncjobresult issue, it could be that the ACS mgmt server is taking time, or the timeout period is low. Did you find that it timeouts before the set timeout value (in the server profile)? If so, can you share the logs with me?

> On 03-Nov-2014, at 8:25 pm, Geoff Higginbottom <ge...@shapeblue.com> wrote:
>
> -1 from me for the following reasons:
>
> 1. Can no longer clear the Username and Password settings from the config using the set commands - I initially connect with these, then auto configure the API & Secret Key, then delete the old username and password settings using:
>
> #cloudmonkey set username
> #cloudmonkey set password
>
> But it throws an error about not allowing blank values and does not clear the values from the config file (it works in earlier versions)
>
> 2.  Launching now takes a lot longer, suspect an authentication issue
>
> 3. A number of my scripts which have worked for all previous versions now no longer work, in particular anything with spaces in seems to fail:
>
> e.g.  This line used to work, but now it fails
> offeringid1=`$cli list serviceofferings name='"Small Instance"' | grep ^id\ = | awk '{print $3}'`
> If I rename the offering using the UI to Small_Instance (to remove the space) then it works
>
> e.g. This line used to work
> $cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Ultra Tiny - 1vCPU, 128MB RAM"' memory=128 name='"Ultra Tiny"' offerha=true
> Now it generates a Compute Offering with a name of "Ultra\ Tiny" and a description of "Ultra\ Tiny\ -\ 1vCPU,\ 128MB\ RAM" - note the \ before every space
>
> 4.  query asyncjobresult is timing out when running in a script
>
> Some of these errors may be caused by errors in my scripts, but I have been using these very scripts for testing for some time now and they have always worked OK with earlier versions of CloudMonkey
>
> Regards
>
> Geoff Higginbottom
>
> D: +44 20 3603 0542 | S: +44 20 3603 0540 | M: +447968161581
>
> geoff.higginbottom@shapeblue.com
>
> -----Original Message-----
> From: Nux! [mailto:nux@li.nux.ro]
> Sent: 03 November 2014 11:55
> To: users@cloudstack.apache.org
> Cc: dev@cloudstack.apache.org
> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>
> Meh, facepalm! Yes, config is from 5.2.
> "set paramcompletion true" solved it.
>
> Basic tests passed, +1 from me! :-)
>
> --
> Sent from the Delta quadrant using Borg technology!
>
> Nux!
> www.nux.ro
>
> ----- Original Message -----
>> From: "Rohit Yadav" <ro...@shapeblue.com>
>> To: dev@cloudstack.apache.org
>> Cc: users@cloudstack.apache.org
>> Sent: Monday, 3 November, 2014 11:40:40
>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round
>> #4)
>
>> Hey,
>>
>> Looks like autocompletion is working (tab tab), make sure you set
>> paramcompletion to true. Were you using 5.2.0 or older config file?
>>
>>> On 03-Nov-2014, at 5:06 pm, Nux! <nu...@li.nux.ro> wrote:
>>>
>>> Rohit,
>>>
>>> I do have that module and I have install the -devel packages as well
>>> before reinstalling cloudmonkey, still nothing.
>>> http://img.nux.ro/s7L-Selection_046.png
>>>
>>> Any more pointers?
>>>
>>> Lucian
>>>
>>> --
>>> Sent from the Delta quadrant using Borg technology!
>>>
>>> Nux!
>>> www.nux.ro
>>>
>>> ----- Original Message -----
>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>> To: users@cloudstack.apache.org
>>>> Cc: dev@cloudstack.apache.org
>>>> Sent: Monday, 3 November, 2014 11:07:27
>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>> (round #4)
>>>
>>>> Hi Lucian,
>>>>
>>>> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
>>>> python-setuptools, python-pip, readline and readline-devel or
>>>> readline-develop (please check names before you try it) on it and retry?
>>>>
>>>> It is possible that the CentOS machine you’re on has no readline installed.
>>>> After checking that, just open python and import readline;
>>>>
>>>> $ python
>>>>> import readline
>>>>
>>>> If this fails, it’s not cloudmonkey but a dependency that is not
>>>> available on your machine. If you get issues, please report the errors.
>>>>
>>>>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>
>>>>> Rohit,
>>>>>
>>>>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no
>>>>> go, no autocompletion. This is my CentOS 7 workstation, yesterday
>>>>> on my laptop it was working fine (also CentOS 7).
>>>>> Perhaps I'm missing some python module? Any one in particular I
>>>>> should watch out for?
>>>>>
>>>>> Lucian
>>>>>
>>>>> --
>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>
>>>>> Nux!
>>>>> www.nux.ro
>>>>>
>>>>> ----- Original Message -----
>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>> To: dev@cloudstack.apache.org
>>>>>> Cc: users@cloudstack.apache.org
>>>>>> Sent: Monday, 3 November, 2014 10:28:00
>>>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>>> (round #4)
>>>>>
>>>>>> Hi Lucian,
>>>>>>
>>>>>> Can you start by removing ~/.cloudmonkey/cache or run sync again?
>>>>>> Old caches
>>>>>> (5.2.0 and before) don’t have cached keys that are used to
>>>>>> autocomplete filter= arg on an API.
>>>>>>
>>>>>> If you can reproduce the issue, can you share where you are using
>>>>>> this, Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>>>>
>>>>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>>>
>>>>>>> Hi Rohit,
>>>>>>>
>>>>>>> Is it me or autocompletion is broken in this one?
>>>>>>>
>>>>>>> --
>>>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>>>
>>>>>>> Nux!
>>>>>>> www.nux.ro
>>>>>>>
>>>>>>> ----- Original Message -----
>>>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>>>>> Cc: users@cloudstack.apache.org
>>>>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>>>>> (round #4)
>>>>>>>
>>>>>>>> Hi All,
>>>>>>>>
>>>>>>>> I've created a 5.3.0 release of CloudMonkey, with the following
>>>>>>>> artifacts up for a vote:
>>>>>>>>
>>>>>>>> Git Branch and Commit SH:
>>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>>> .git;a=shortlog;h=refs/heads/5.3
>>>>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>>>>
>>>>>>>> List of changes:
>>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>>> .git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>>>>
>>>>>>>> Source release (checksums and signatures are available at the
>>>>>>>> same
>>>>>>>> location):
>>>>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.
>>>>>>>> 3.0/
>>>>>>>>
>>>>>>>> PGP release keys (signed using 0EE3D884):
>>>>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>>>>
>>>>>>>> Testing procedure:
>>>>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonk
>>>>>>>> ey+Release+test+procedure
>>>>>>>>
>>>>>>>> This release aims to provide better parameter and filter
>>>>>>>> completion, error handling and utf8/unicode support in
>>>>>>>> CloudMonkey and therefore needs testing efforts in these areas.
>>>>>>>> UTF-8 encoded string parameters usage needs to be tested in API calls, shell and piped calls, for example:
>>>>>>>>
>>>>>>>> $ create user account=admin username=रोहित lastname=यादव
>>>>>>>> firstname=रोहित email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>>>>> $ list users | grep रोहित
>>>>>>>>
>>>>>>>> The vote will be open till Wednesday (72 hours). Please test
>>>>>>>> this release and give your vote. Thanks.
>>>>>>>>
>>>>>>>> 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,
>>>>>>>> Rohit Yadav
>>>>>>>> Software Architect, ShapeBlue
>>>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>>>
>>>>>>>> Find out more about ShapeBlue and our range of CloudStack
>>>>>>>> related services
>>>>>>>>
>>>>>>>> IaaS Cloud Design &
>>>>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>>>> CSForge – rapid IaaS deployment
>>>>>>>> framework<http://shapeblue.com/csforge/>
>>>>>>>> CloudStack
>>>>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>>>> CloudStack Infrastructure
>>>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>>>> CloudStack Bootcamp Training
>>>>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>>>
>>>>>>>> This email and any attachments to it may be confidential and are
>>>>>>>> intended solely for the use of the individual to whom it is
>>>>>>>> addressed. Any views or opinions expressed are solely those of
>>>>>>>> the author and do not necessarily represent those of Shape Blue
>>>>>>>> Ltd or related companies. If you are not the intended recipient
>>>>>>>> of this email, you must neither take any action based upon its
>>>>>>>> contents, nor copy or show it to anyone. Please contact the
>>>>>>>> sender if you believe you have received this email in error.
>>>>>>>> Shape Blue Ltd is a company incorporated in England & Wales.
>>>>>>>> ShapeBlue Services India LLP is a company incorporated in India
>>>>>>>> and is operated under license from Shape Blue Ltd. Shape Blue
>>>>>>>> Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>>>> ShapeBlue is a registered trademark.
>>>>>>
>>>>>> Regards,
>>>>>> Rohit Yadav
>>>>>> Software Architect, ShapeBlue
>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>
>>>>>>
>>>>>>
>>>>>> Find out more about ShapeBlue and our range of CloudStack related
>>>>>> services
>>>>>>
>>>>>> IaaS Cloud Design &
>>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>> CSForge – rapid IaaS deployment
>>>>>> framework<http://shapeblue.com/csforge/>
>>>>>> CloudStack
>>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>> CloudStack Infrastructure
>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>> CloudStack Bootcamp Training
>>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>
>>>>>> This email and any attachments to it may be confidential and are
>>>>>> intended solely for the use of the individual to whom it is
>>>>>> addressed. Any views or opinions expressed are solely those of the
>>>>>> author and do not necessarily represent those of Shape Blue Ltd or
>>>>>> related companies. If you are not the intended recipient of this
>>>>>> email, you must neither take any action based upon its contents,
>>>>>> nor copy or show it to anyone. Please contact the sender if you
>>>>>> believe you have received this email in error. Shape Blue Ltd is a
>>>>>> company incorporated in England & Wales. ShapeBlue Services India
>>>>>> LLP is a company incorporated in India and is operated under
>>>>>> license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is
>>>>>> a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>> ShapeBlue is a registered trademark.
>>>>
>>>> Regards,
>>>> Rohit Yadav
>>>> Software Architect, ShapeBlue
>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>
>>>>
>>>>
>>>> Find out more about ShapeBlue and our range of CloudStack related
>>>> services
>>>>
>>>> IaaS Cloud Design &
>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>> CSForge – rapid IaaS deployment
>>>> framework<http://shapeblue.com/csforge/>
>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>> CloudStack Infrastructure
>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>> CloudStack Bootcamp Training
>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>
>>>> This email and any attachments to it may be confidential and are
>>>> intended solely for the use of the individual to whom it is
>>>> addressed. Any views or opinions expressed are solely those of the
>>>> author and do not necessarily represent those of Shape Blue Ltd or
>>>> related companies. If you are not the intended recipient of this
>>>> email, you must neither take any action based upon its contents, nor
>>>> copy or show it to anyone. Please contact the sender if you believe
>>>> you have received this email in error. Shape Blue Ltd is a company
>>>> incorporated in England & Wales. ShapeBlue Services India LLP is a
>>>> company incorporated in India and is operated under license from
>>>> Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company
>>>> incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>> ShapeBlue is a registered trademark.
>>
>> Regards,
>> Rohit Yadav
>> Software Architect, ShapeBlue
>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>
>>
>>
>> Find out more about ShapeBlue and our range of CloudStack related
>> services
>>
>> IaaS Cloud Design &
>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>> CSForge – rapid IaaS deployment
>> framework<http://shapeblue.com/csforge/>
>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>> CloudStack Infrastructure
>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>> CloudStack Bootcamp Training
>> Courses<http://shapeblue.com/cloudstack-training/>
>>
>> This email and any attachments to it may be confidential and are
>> intended solely for the use of the individual to whom it is addressed.
>> Any views or opinions expressed are solely those of the author and do
>> not necessarily represent those of Shape Blue Ltd or related
>> companies. If you are not the intended recipient of this email, you
>> must neither take any action based upon its contents, nor copy or show
>> it to anyone. Please contact the sender if you believe you have
>> received this email in error. Shape Blue Ltd is a company incorporated
>> in England & Wales. ShapeBlue Services India LLP is a company
>> incorporated in India and is operated under license from Shape Blue
>> Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in
>> Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>> ShapeBlue is a registered trademark.
> Find out more about ShapeBlue and our range of CloudStack related services
>
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>
> This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab



Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

RE: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Geoff Higginbottom <ge...@shapeblue.com>.
-1 from me for the following reasons:

1. Can no longer clear the Username and Password settings from the config using the set commands - I initially connect with these, then auto configure the API & Secret Key, then delete the old username and password settings using:

#cloudmonkey set username
#cloudmonkey set password

But it throws an error about not allowing blank values and does not clear the values from the config file (it works in earlier versions)

2.  Launching now takes a lot longer, suspect an authentication issue

3. A number of my scripts which have worked for all previous versions now no longer work, in particular anything with spaces in seems to fail:

e.g.  This line used to work, but now it fails
offeringid1=`$cli list serviceofferings name='"Small Instance"' | grep ^id\ = | awk '{print $3}'`
If I rename the offering using the UI to Small_Instance (to remove the space) then it works

e.g. This line used to work
$cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Ultra Tiny - 1vCPU, 128MB RAM"' memory=128 name='"Ultra Tiny"' offerha=true
Now it generates a Compute Offering with a name of "Ultra\ Tiny" and a description of "Ultra\ Tiny\ -\ 1vCPU,\ 128MB\ RAM" - note the \ before every space

4.  query asyncjobresult is timing out when running in a script

Some of these errors may be caused by errors in my scripts, but I have been using these very scripts for testing for some time now and they have always worked OK with earlier versions of CloudMonkey

Regards

Geoff Higginbottom

D: +44 20 3603 0542 | S: +44 20 3603 0540 | M: +447968161581

geoff.higginbottom@shapeblue.com

-----Original Message-----
From: Nux! [mailto:nux@li.nux.ro]
Sent: 03 November 2014 11:55
To: users@cloudstack.apache.org
Cc: dev@cloudstack.apache.org
Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Meh, facepalm! Yes, config is from 5.2.
"set paramcompletion true" solved it.

Basic tests passed, +1 from me! :-)

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

----- Original Message -----
> From: "Rohit Yadav" <ro...@shapeblue.com>
> To: dev@cloudstack.apache.org
> Cc: users@cloudstack.apache.org
> Sent: Monday, 3 November, 2014 11:40:40
> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round
> #4)

> Hey,
>
> Looks like autocompletion is working (tab tab), make sure you set
> paramcompletion to true. Were you using 5.2.0 or older config file?
>
>> On 03-Nov-2014, at 5:06 pm, Nux! <nu...@li.nux.ro> wrote:
>>
>> Rohit,
>>
>> I do have that module and I have install the -devel packages as well
>> before reinstalling cloudmonkey, still nothing.
>> http://img.nux.ro/s7L-Selection_046.png
>>
>> Any more pointers?
>>
>> Lucian
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
>> ----- Original Message -----
>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>> To: users@cloudstack.apache.org
>>> Cc: dev@cloudstack.apache.org
>>> Sent: Monday, 3 November, 2014 11:07:27
>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>> (round #4)
>>
>>> Hi Lucian,
>>>
>>> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
>>> python-setuptools, python-pip, readline and readline-devel or
>>> readline-develop (please check names before you try it) on it and retry?
>>>
>>> It is possible that the CentOS machine you’re on has no readline installed.
>>> After checking that, just open python and import readline;
>>>
>>> $ python
>>>> import readline
>>>
>>> If this fails, it’s not cloudmonkey but a dependency that is not
>>> available on your machine. If you get issues, please report the errors.
>>>
>>>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>
>>>> Rohit,
>>>>
>>>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no
>>>> go, no autocompletion. This is my CentOS 7 workstation, yesterday
>>>> on my laptop it was working fine (also CentOS 7).
>>>> Perhaps I'm missing some python module? Any one in particular I
>>>> should watch out for?
>>>>
>>>> Lucian
>>>>
>>>> --
>>>> Sent from the Delta quadrant using Borg technology!
>>>>
>>>> Nux!
>>>> www.nux.ro
>>>>
>>>> ----- Original Message -----
>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>> To: dev@cloudstack.apache.org
>>>>> Cc: users@cloudstack.apache.org
>>>>> Sent: Monday, 3 November, 2014 10:28:00
>>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>> (round #4)
>>>>
>>>>> Hi Lucian,
>>>>>
>>>>> Can you start by removing ~/.cloudmonkey/cache or run sync again?
>>>>> Old caches
>>>>> (5.2.0 and before) don’t have cached keys that are used to
>>>>> autocomplete filter= arg on an API.
>>>>>
>>>>> If you can reproduce the issue, can you share where you are using
>>>>> this, Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>>>
>>>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>>
>>>>>> Hi Rohit,
>>>>>>
>>>>>> Is it me or autocompletion is broken in this one?
>>>>>>
>>>>>> --
>>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>>
>>>>>> Nux!
>>>>>> www.nux.ro
>>>>>>
>>>>>> ----- Original Message -----
>>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>>>> Cc: users@cloudstack.apache.org
>>>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>>>> (round #4)
>>>>>>
>>>>>>> Hi All,
>>>>>>>
>>>>>>> I've created a 5.3.0 release of CloudMonkey, with the following
>>>>>>> artifacts up for a vote:
>>>>>>>
>>>>>>> Git Branch and Commit SH:
>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>> .git;a=shortlog;h=refs/heads/5.3
>>>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>>>
>>>>>>> List of changes:
>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>> .git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>>>
>>>>>>> Source release (checksums and signatures are available at the
>>>>>>> same
>>>>>>> location):
>>>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.
>>>>>>> 3.0/
>>>>>>>
>>>>>>> PGP release keys (signed using 0EE3D884):
>>>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>>>
>>>>>>> Testing procedure:
>>>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonk
>>>>>>> ey+Release+test+procedure
>>>>>>>
>>>>>>> This release aims to provide better parameter and filter
>>>>>>> completion, error handling and utf8/unicode support in
>>>>>>> CloudMonkey and therefore needs testing efforts in these areas.
>>>>>>> UTF-8 encoded string parameters usage needs to be tested in API calls, shell and piped calls, for example:
>>>>>>>
>>>>>>> $ create user account=admin username=रोहित lastname=यादव
>>>>>>> firstname=रोहित email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>>>> $ list users | grep रोहित
>>>>>>>
>>>>>>> The vote will be open till Wednesday (72 hours). Please test
>>>>>>> this release and give your vote. Thanks.
>>>>>>>
>>>>>>> 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,
>>>>>>> Rohit Yadav
>>>>>>> Software Architect, ShapeBlue
>>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>>
>>>>>>> Find out more about ShapeBlue and our range of CloudStack
>>>>>>> related services
>>>>>>>
>>>>>>> IaaS Cloud Design &
>>>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>>> CSForge – rapid IaaS deployment
>>>>>>> framework<http://shapeblue.com/csforge/>
>>>>>>> CloudStack
>>>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>>> CloudStack Infrastructure
>>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>>> CloudStack Bootcamp Training
>>>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>>
>>>>>>> This email and any attachments to it may be confidential and are
>>>>>>> intended solely for the use of the individual to whom it is
>>>>>>> addressed. Any views or opinions expressed are solely those of
>>>>>>> the author and do not necessarily represent those of Shape Blue
>>>>>>> Ltd or related companies. If you are not the intended recipient
>>>>>>> of this email, you must neither take any action based upon its
>>>>>>> contents, nor copy or show it to anyone. Please contact the
>>>>>>> sender if you believe you have received this email in error.
>>>>>>> Shape Blue Ltd is a company incorporated in England & Wales.
>>>>>>> ShapeBlue Services India LLP is a company incorporated in India
>>>>>>> and is operated under license from Shape Blue Ltd. Shape Blue
>>>>>>> Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>>> ShapeBlue is a registered trademark.
>>>>>
>>>>> Regards,
>>>>> Rohit Yadav
>>>>> Software Architect, ShapeBlue
>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>
>>>>>
>>>>>
>>>>> Find out more about ShapeBlue and our range of CloudStack related
>>>>> services
>>>>>
>>>>> IaaS Cloud Design &
>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>> CSForge – rapid IaaS deployment
>>>>> framework<http://shapeblue.com/csforge/>
>>>>> CloudStack
>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>> CloudStack Infrastructure
>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>> CloudStack Bootcamp Training
>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>
>>>>> This email and any attachments to it may be confidential and are
>>>>> intended solely for the use of the individual to whom it is
>>>>> addressed. Any views or opinions expressed are solely those of the
>>>>> author and do not necessarily represent those of Shape Blue Ltd or
>>>>> related companies. If you are not the intended recipient of this
>>>>> email, you must neither take any action based upon its contents,
>>>>> nor copy or show it to anyone. Please contact the sender if you
>>>>> believe you have received this email in error. Shape Blue Ltd is a
>>>>> company incorporated in England & Wales. ShapeBlue Services India
>>>>> LLP is a company incorporated in India and is operated under
>>>>> license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is
>>>>> a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>> ShapeBlue is a registered trademark.
>>>
>>> Regards,
>>> Rohit Yadav
>>> Software Architect, ShapeBlue
>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>
>>>
>>>
>>> Find out more about ShapeBlue and our range of CloudStack related
>>> services
>>>
>>> IaaS Cloud Design &
>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>> CSForge – rapid IaaS deployment
>>> framework<http://shapeblue.com/csforge/>
>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>> CloudStack Infrastructure
>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>> CloudStack Bootcamp Training
>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>
>>> This email and any attachments to it may be confidential and are
>>> intended solely for the use of the individual to whom it is
>>> addressed. Any views or opinions expressed are solely those of the
>>> author and do not necessarily represent those of Shape Blue Ltd or
>>> related companies. If you are not the intended recipient of this
>>> email, you must neither take any action based upon its contents, nor
>>> copy or show it to anyone. Please contact the sender if you believe
>>> you have received this email in error. Shape Blue Ltd is a company
>>> incorporated in England & Wales. ShapeBlue Services India LLP is a
>>> company incorporated in India and is operated under license from
>>> Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company
>>> incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>> ShapeBlue is a registered trademark.
>
> Regards,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
>
>
>
> Find out more about ShapeBlue and our range of CloudStack related
> services
>
> IaaS Cloud Design &
> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment
> framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure
> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training
> Courses<http://shapeblue.com/cloudstack-training/>
>
> This email and any attachments to it may be confidential and are
> intended solely for the use of the individual to whom it is addressed.
> Any views or opinions expressed are solely those of the author and do
> not necessarily represent those of Shape Blue Ltd or related
> companies. If you are not the intended recipient of this email, you
> must neither take any action based upon its contents, nor copy or show
> it to anyone. Please contact the sender if you believe you have
> received this email in error. Shape Blue Ltd is a company incorporated
> in England & Wales. ShapeBlue Services India LLP is a company
> incorporated in India and is operated under license from Shape Blue
> Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in
> Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
> ShapeBlue is a registered trademark.
Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

RE: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Geoff Higginbottom <ge...@shapeblue.com>.
-1 from me for the following reasons:

1. Can no longer clear the Username and Password settings from the config using the set commands - I initially connect with these, then auto configure the API & Secret Key, then delete the old username and password settings using:

#cloudmonkey set username
#cloudmonkey set password

But it throws an error about not allowing blank values and does not clear the values from the config file (it works in earlier versions)

2.  Launching now takes a lot longer, suspect an authentication issue

3. A number of my scripts which have worked for all previous versions now no longer work, in particular anything with spaces in seems to fail:

e.g.  This line used to work, but now it fails
offeringid1=`$cli list serviceofferings name='"Small Instance"' | grep ^id\ = | awk '{print $3}'`
If I rename the offering using the UI to Small_Instance (to remove the space) then it works

e.g. This line used to work
$cli create serviceoffering cpunumber=1 cpuspeed=500 displaytext='"Ultra Tiny - 1vCPU, 128MB RAM"' memory=128 name='"Ultra Tiny"' offerha=true
Now it generates a Compute Offering with a name of "Ultra\ Tiny" and a description of "Ultra\ Tiny\ -\ 1vCPU,\ 128MB\ RAM" - note the \ before every space

4.  query asyncjobresult is timing out when running in a script

Some of these errors may be caused by errors in my scripts, but I have been using these very scripts for testing for some time now and they have always worked OK with earlier versions of CloudMonkey

Regards

Geoff Higginbottom

D: +44 20 3603 0542 | S: +44 20 3603 0540 | M: +447968161581

geoff.higginbottom@shapeblue.com

-----Original Message-----
From: Nux! [mailto:nux@li.nux.ro]
Sent: 03 November 2014 11:55
To: users@cloudstack.apache.org
Cc: dev@cloudstack.apache.org
Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Meh, facepalm! Yes, config is from 5.2.
"set paramcompletion true" solved it.

Basic tests passed, +1 from me! :-)

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

----- Original Message -----
> From: "Rohit Yadav" <ro...@shapeblue.com>
> To: dev@cloudstack.apache.org
> Cc: users@cloudstack.apache.org
> Sent: Monday, 3 November, 2014 11:40:40
> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round
> #4)

> Hey,
>
> Looks like autocompletion is working (tab tab), make sure you set
> paramcompletion to true. Were you using 5.2.0 or older config file?
>
>> On 03-Nov-2014, at 5:06 pm, Nux! <nu...@li.nux.ro> wrote:
>>
>> Rohit,
>>
>> I do have that module and I have install the -devel packages as well
>> before reinstalling cloudmonkey, still nothing.
>> http://img.nux.ro/s7L-Selection_046.png
>>
>> Any more pointers?
>>
>> Lucian
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
>> ----- Original Message -----
>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>> To: users@cloudstack.apache.org
>>> Cc: dev@cloudstack.apache.org
>>> Sent: Monday, 3 November, 2014 11:07:27
>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>> (round #4)
>>
>>> Hi Lucian,
>>>
>>> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
>>> python-setuptools, python-pip, readline and readline-devel or
>>> readline-develop (please check names before you try it) on it and retry?
>>>
>>> It is possible that the CentOS machine you’re on has no readline installed.
>>> After checking that, just open python and import readline;
>>>
>>> $ python
>>>> import readline
>>>
>>> If this fails, it’s not cloudmonkey but a dependency that is not
>>> available on your machine. If you get issues, please report the errors.
>>>
>>>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>
>>>> Rohit,
>>>>
>>>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no
>>>> go, no autocompletion. This is my CentOS 7 workstation, yesterday
>>>> on my laptop it was working fine (also CentOS 7).
>>>> Perhaps I'm missing some python module? Any one in particular I
>>>> should watch out for?
>>>>
>>>> Lucian
>>>>
>>>> --
>>>> Sent from the Delta quadrant using Borg technology!
>>>>
>>>> Nux!
>>>> www.nux.ro
>>>>
>>>> ----- Original Message -----
>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>> To: dev@cloudstack.apache.org
>>>>> Cc: users@cloudstack.apache.org
>>>>> Sent: Monday, 3 November, 2014 10:28:00
>>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>> (round #4)
>>>>
>>>>> Hi Lucian,
>>>>>
>>>>> Can you start by removing ~/.cloudmonkey/cache or run sync again?
>>>>> Old caches
>>>>> (5.2.0 and before) don’t have cached keys that are used to
>>>>> autocomplete filter= arg on an API.
>>>>>
>>>>> If you can reproduce the issue, can you share where you are using
>>>>> this, Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>>>
>>>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>>
>>>>>> Hi Rohit,
>>>>>>
>>>>>> Is it me or autocompletion is broken in this one?
>>>>>>
>>>>>> --
>>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>>
>>>>>> Nux!
>>>>>> www.nux.ro
>>>>>>
>>>>>> ----- Original Message -----
>>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>>>> Cc: users@cloudstack.apache.org
>>>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0
>>>>>>> (round #4)
>>>>>>
>>>>>>> Hi All,
>>>>>>>
>>>>>>> I've created a 5.3.0 release of CloudMonkey, with the following
>>>>>>> artifacts up for a vote:
>>>>>>>
>>>>>>> Git Branch and Commit SH:
>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>> .git;a=shortlog;h=refs/heads/5.3
>>>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>>>
>>>>>>> List of changes:
>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey
>>>>>>> .git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>>>
>>>>>>> Source release (checksums and signatures are available at the
>>>>>>> same
>>>>>>> location):
>>>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.
>>>>>>> 3.0/
>>>>>>>
>>>>>>> PGP release keys (signed using 0EE3D884):
>>>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>>>
>>>>>>> Testing procedure:
>>>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonk
>>>>>>> ey+Release+test+procedure
>>>>>>>
>>>>>>> This release aims to provide better parameter and filter
>>>>>>> completion, error handling and utf8/unicode support in
>>>>>>> CloudMonkey and therefore needs testing efforts in these areas.
>>>>>>> UTF-8 encoded string parameters usage needs to be tested in API calls, shell and piped calls, for example:
>>>>>>>
>>>>>>> $ create user account=admin username=रोहित lastname=यादव
>>>>>>> firstname=रोहित email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>>>> $ list users | grep रोहित
>>>>>>>
>>>>>>> The vote will be open till Wednesday (72 hours). Please test
>>>>>>> this release and give your vote. Thanks.
>>>>>>>
>>>>>>> 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,
>>>>>>> Rohit Yadav
>>>>>>> Software Architect, ShapeBlue
>>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>>
>>>>>>> Find out more about ShapeBlue and our range of CloudStack
>>>>>>> related services
>>>>>>>
>>>>>>> IaaS Cloud Design &
>>>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>>> CSForge – rapid IaaS deployment
>>>>>>> framework<http://shapeblue.com/csforge/>
>>>>>>> CloudStack
>>>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>>> CloudStack Infrastructure
>>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>>> CloudStack Bootcamp Training
>>>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>>
>>>>>>> This email and any attachments to it may be confidential and are
>>>>>>> intended solely for the use of the individual to whom it is
>>>>>>> addressed. Any views or opinions expressed are solely those of
>>>>>>> the author and do not necessarily represent those of Shape Blue
>>>>>>> Ltd or related companies. If you are not the intended recipient
>>>>>>> of this email, you must neither take any action based upon its
>>>>>>> contents, nor copy or show it to anyone. Please contact the
>>>>>>> sender if you believe you have received this email in error.
>>>>>>> Shape Blue Ltd is a company incorporated in England & Wales.
>>>>>>> ShapeBlue Services India LLP is a company incorporated in India
>>>>>>> and is operated under license from Shape Blue Ltd. Shape Blue
>>>>>>> Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>>> ShapeBlue is a registered trademark.
>>>>>
>>>>> Regards,
>>>>> Rohit Yadav
>>>>> Software Architect, ShapeBlue
>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>
>>>>>
>>>>>
>>>>> Find out more about ShapeBlue and our range of CloudStack related
>>>>> services
>>>>>
>>>>> IaaS Cloud Design &
>>>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>> CSForge – rapid IaaS deployment
>>>>> framework<http://shapeblue.com/csforge/>
>>>>> CloudStack
>>>>> Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>> CloudStack Infrastructure
>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>> CloudStack Bootcamp Training
>>>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>>>
>>>>> This email and any attachments to it may be confidential and are
>>>>> intended solely for the use of the individual to whom it is
>>>>> addressed. Any views or opinions expressed are solely those of the
>>>>> author and do not necessarily represent those of Shape Blue Ltd or
>>>>> related companies. If you are not the intended recipient of this
>>>>> email, you must neither take any action based upon its contents,
>>>>> nor copy or show it to anyone. Please contact the sender if you
>>>>> believe you have received this email in error. Shape Blue Ltd is a
>>>>> company incorporated in England & Wales. ShapeBlue Services India
>>>>> LLP is a company incorporated in India and is operated under
>>>>> license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is
>>>>> a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>> ShapeBlue is a registered trademark.
>>>
>>> Regards,
>>> Rohit Yadav
>>> Software Architect, ShapeBlue
>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>
>>>
>>>
>>> Find out more about ShapeBlue and our range of CloudStack related
>>> services
>>>
>>> IaaS Cloud Design &
>>> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>> CSForge – rapid IaaS deployment
>>> framework<http://shapeblue.com/csforge/>
>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>> CloudStack Infrastructure
>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>> CloudStack Bootcamp Training
>>> Courses<http://shapeblue.com/cloudstack-training/>
>>>
>>> This email and any attachments to it may be confidential and are
>>> intended solely for the use of the individual to whom it is
>>> addressed. Any views or opinions expressed are solely those of the
>>> author and do not necessarily represent those of Shape Blue Ltd or
>>> related companies. If you are not the intended recipient of this
>>> email, you must neither take any action based upon its contents, nor
>>> copy or show it to anyone. Please contact the sender if you believe
>>> you have received this email in error. Shape Blue Ltd is a company
>>> incorporated in England & Wales. ShapeBlue Services India LLP is a
>>> company incorporated in India and is operated under license from
>>> Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company
>>> incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>> ShapeBlue is a registered trademark.
>
> Regards,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
>
>
>
> Find out more about ShapeBlue and our range of CloudStack related
> services
>
> IaaS Cloud Design &
> Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment
> framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure
> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training
> Courses<http://shapeblue.com/cloudstack-training/>
>
> This email and any attachments to it may be confidential and are
> intended solely for the use of the individual to whom it is addressed.
> Any views or opinions expressed are solely those of the author and do
> not necessarily represent those of Shape Blue Ltd or related
> companies. If you are not the intended recipient of this email, you
> must neither take any action based upon its contents, nor copy or show
> it to anyone. Please contact the sender if you believe you have
> received this email in error. Shape Blue Ltd is a company incorporated
> in England & Wales. ShapeBlue Services India LLP is a company
> incorporated in India and is operated under license from Shape Blue
> Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in
> Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd.
> ShapeBlue is a registered trademark.
Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Nux! <nu...@li.nux.ro>.
Meh, facepalm! Yes, config is from 5.2.
"set paramcompletion true" solved it.

Basic tests passed, +1 from me! :-)

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

----- Original Message -----
> From: "Rohit Yadav" <ro...@shapeblue.com>
> To: dev@cloudstack.apache.org
> Cc: users@cloudstack.apache.org
> Sent: Monday, 3 November, 2014 11:40:40
> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

> Hey,
> 
> Looks like autocompletion is working (tab tab), make sure you set
> paramcompletion to true. Were you using 5.2.0 or older config file?
> 
>> On 03-Nov-2014, at 5:06 pm, Nux! <nu...@li.nux.ro> wrote:
>>
>> Rohit,
>>
>> I do have that module and I have install the -devel packages as well before
>> reinstalling cloudmonkey, still nothing.
>> http://img.nux.ro/s7L-Selection_046.png
>>
>> Any more pointers?
>>
>> Lucian
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
>> ----- Original Message -----
>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>> To: users@cloudstack.apache.org
>>> Cc: dev@cloudstack.apache.org
>>> Sent: Monday, 3 November, 2014 11:07:27
>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>
>>> Hi Lucian,
>>>
>>> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
>>> python-setuptools, python-pip, readline and readline-devel or readline-develop
>>> (please check names before you try it) on it and retry?
>>>
>>> It is possible that the CentOS machine you’re on has no readline installed.
>>> After checking that, just open python and import readline;
>>>
>>> $ python
>>>> import readline
>>>
>>> If this fails, it’s not cloudmonkey but a dependency that is not available on
>>> your machine. If you get issues, please report the errors.
>>>
>>>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>
>>>> Rohit,
>>>>
>>>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no go, no
>>>> autocompletion. This is my CentOS 7 workstation, yesterday on my laptop it was
>>>> working fine (also CentOS 7).
>>>> Perhaps I'm missing some python module? Any one in particular I should watch out
>>>> for?
>>>>
>>>> Lucian
>>>>
>>>> --
>>>> Sent from the Delta quadrant using Borg technology!
>>>>
>>>> Nux!
>>>> www.nux.ro
>>>>
>>>> ----- Original Message -----
>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>> To: dev@cloudstack.apache.org
>>>>> Cc: users@cloudstack.apache.org
>>>>> Sent: Monday, 3 November, 2014 10:28:00
>>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>>
>>>>> Hi Lucian,
>>>>>
>>>>> Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches
>>>>> (5.2.0 and before) don’t have cached keys that are used to autocomplete filter=
>>>>> arg on an API.
>>>>>
>>>>> If you can reproduce the issue, can you share where you are using this,
>>>>> Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>>>
>>>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>>
>>>>>> Hi Rohit,
>>>>>>
>>>>>> Is it me or autocompletion is broken in this one?
>>>>>>
>>>>>> --
>>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>>
>>>>>> Nux!
>>>>>> www.nux.ro
>>>>>>
>>>>>> ----- Original Message -----
>>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>>>> Cc: users@cloudstack.apache.org
>>>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>>>>
>>>>>>> Hi All,
>>>>>>>
>>>>>>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>>>>>>> a vote:
>>>>>>>
>>>>>>> Git Branch and Commit SH:
>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>>>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>>>
>>>>>>> List of changes:
>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>>>
>>>>>>> Source release (checksums and signatures are available at the same
>>>>>>> location):
>>>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>>>>>>
>>>>>>> PGP release keys (signed using 0EE3D884):
>>>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>>>
>>>>>>> Testing procedure:
>>>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>>>>>>
>>>>>>> This release aims to provide better parameter and filter completion, error
>>>>>>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>>>>>>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>>>>>>> tested in API calls, shell and piped calls, for example:
>>>>>>>
>>>>>>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>>>>>>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>>>> $ list users | grep रोहित
>>>>>>>
>>>>>>> The vote will be open till Wednesday (72 hours). Please test this release and
>>>>>>> give your vote. Thanks.
>>>>>>>
>>>>>>> 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,
>>>>>>> Rohit Yadav
>>>>>>> Software Architect, ShapeBlue
>>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>>
>>>>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>>>>
>>>>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>>> CloudStack Infrastructure
>>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>>
>>>>>>> This email and any attachments to it may be confidential and are intended solely
>>>>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>>>>> expressed are solely those of the author and do not necessarily represent those
>>>>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>>>>> of this email, you must neither take any action based upon its contents, nor
>>>>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>>> ShapeBlue is a registered trademark.
>>>>>
>>>>> Regards,
>>>>> Rohit Yadav
>>>>> Software Architect, ShapeBlue
>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>
>>>>>
>>>>>
>>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>>
>>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>> CloudStack Infrastructure
>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>>
>>>>> This email and any attachments to it may be confidential and are intended solely
>>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>>> expressed are solely those of the author and do not necessarily represent those
>>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>>> of this email, you must neither take any action based upon its contents, nor
>>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>> ShapeBlue is a registered trademark.
>>>
>>> Regards,
>>> Rohit Yadav
>>> Software Architect, ShapeBlue
>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>
>>>
>>>
>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>
>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>> CloudStack Infrastructure
>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>
>>> This email and any attachments to it may be confidential and are intended solely
>>> for the use of the individual to whom it is addressed. Any views or opinions
>>> expressed are solely those of the author and do not necessarily represent those
>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>> of this email, you must neither take any action based upon its contents, nor
>>> copy or show it to anyone. Please contact the sender if you believe you have
>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>> ShapeBlue is a registered trademark.
> 
> Regards,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
> 
> 
> 
> Find out more about ShapeBlue and our range of CloudStack related services
> 
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure
> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
> 
> This email and any attachments to it may be confidential and are intended solely
> for the use of the individual to whom it is addressed. Any views or opinions
> expressed are solely those of the author and do not necessarily represent those
> of Shape Blue Ltd or related companies. If you are not the intended recipient
> of this email, you must neither take any action based upon its contents, nor
> copy or show it to anyone. Please contact the sender if you believe you have
> received this email in error. Shape Blue Ltd is a company incorporated in
> England & Wales. ShapeBlue Services India LLP is a company incorporated in
> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
> Consultoria Ltda is a company incorporated in Brasil and is operated under
> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
> The Republic of South Africa and is traded under license from Shape Blue Ltd.
> ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Nux! <nu...@li.nux.ro>.
Meh, facepalm! Yes, config is from 5.2.
"set paramcompletion true" solved it.

Basic tests passed, +1 from me! :-)

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

----- Original Message -----
> From: "Rohit Yadav" <ro...@shapeblue.com>
> To: dev@cloudstack.apache.org
> Cc: users@cloudstack.apache.org
> Sent: Monday, 3 November, 2014 11:40:40
> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

> Hey,
> 
> Looks like autocompletion is working (tab tab), make sure you set
> paramcompletion to true. Were you using 5.2.0 or older config file?
> 
>> On 03-Nov-2014, at 5:06 pm, Nux! <nu...@li.nux.ro> wrote:
>>
>> Rohit,
>>
>> I do have that module and I have install the -devel packages as well before
>> reinstalling cloudmonkey, still nothing.
>> http://img.nux.ro/s7L-Selection_046.png
>>
>> Any more pointers?
>>
>> Lucian
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
>> ----- Original Message -----
>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>> To: users@cloudstack.apache.org
>>> Cc: dev@cloudstack.apache.org
>>> Sent: Monday, 3 November, 2014 11:07:27
>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>
>>> Hi Lucian,
>>>
>>> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
>>> python-setuptools, python-pip, readline and readline-devel or readline-develop
>>> (please check names before you try it) on it and retry?
>>>
>>> It is possible that the CentOS machine you’re on has no readline installed.
>>> After checking that, just open python and import readline;
>>>
>>> $ python
>>>> import readline
>>>
>>> If this fails, it’s not cloudmonkey but a dependency that is not available on
>>> your machine. If you get issues, please report the errors.
>>>
>>>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>
>>>> Rohit,
>>>>
>>>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no go, no
>>>> autocompletion. This is my CentOS 7 workstation, yesterday on my laptop it was
>>>> working fine (also CentOS 7).
>>>> Perhaps I'm missing some python module? Any one in particular I should watch out
>>>> for?
>>>>
>>>> Lucian
>>>>
>>>> --
>>>> Sent from the Delta quadrant using Borg technology!
>>>>
>>>> Nux!
>>>> www.nux.ro
>>>>
>>>> ----- Original Message -----
>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>> To: dev@cloudstack.apache.org
>>>>> Cc: users@cloudstack.apache.org
>>>>> Sent: Monday, 3 November, 2014 10:28:00
>>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>>
>>>>> Hi Lucian,
>>>>>
>>>>> Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches
>>>>> (5.2.0 and before) don’t have cached keys that are used to autocomplete filter=
>>>>> arg on an API.
>>>>>
>>>>> If you can reproduce the issue, can you share where you are using this,
>>>>> Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>>>
>>>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>>
>>>>>> Hi Rohit,
>>>>>>
>>>>>> Is it me or autocompletion is broken in this one?
>>>>>>
>>>>>> --
>>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>>
>>>>>> Nux!
>>>>>> www.nux.ro
>>>>>>
>>>>>> ----- Original Message -----
>>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>>>> Cc: users@cloudstack.apache.org
>>>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>>>>
>>>>>>> Hi All,
>>>>>>>
>>>>>>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>>>>>>> a vote:
>>>>>>>
>>>>>>> Git Branch and Commit SH:
>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>>>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>>>
>>>>>>> List of changes:
>>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>>>
>>>>>>> Source release (checksums and signatures are available at the same
>>>>>>> location):
>>>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>>>>>>
>>>>>>> PGP release keys (signed using 0EE3D884):
>>>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>>>
>>>>>>> Testing procedure:
>>>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>>>>>>
>>>>>>> This release aims to provide better parameter and filter completion, error
>>>>>>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>>>>>>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>>>>>>> tested in API calls, shell and piped calls, for example:
>>>>>>>
>>>>>>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>>>>>>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>>>> $ list users | grep रोहित
>>>>>>>
>>>>>>> The vote will be open till Wednesday (72 hours). Please test this release and
>>>>>>> give your vote. Thanks.
>>>>>>>
>>>>>>> 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,
>>>>>>> Rohit Yadav
>>>>>>> Software Architect, ShapeBlue
>>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>>
>>>>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>>>>
>>>>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>>> CloudStack Infrastructure
>>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>>
>>>>>>> This email and any attachments to it may be confidential and are intended solely
>>>>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>>>>> expressed are solely those of the author and do not necessarily represent those
>>>>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>>>>> of this email, you must neither take any action based upon its contents, nor
>>>>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>>> ShapeBlue is a registered trademark.
>>>>>
>>>>> Regards,
>>>>> Rohit Yadav
>>>>> Software Architect, ShapeBlue
>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>
>>>>>
>>>>>
>>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>>
>>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>> CloudStack Infrastructure
>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>>
>>>>> This email and any attachments to it may be confidential and are intended solely
>>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>>> expressed are solely those of the author and do not necessarily represent those
>>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>>> of this email, you must neither take any action based upon its contents, nor
>>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>> ShapeBlue is a registered trademark.
>>>
>>> Regards,
>>> Rohit Yadav
>>> Software Architect, ShapeBlue
>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>
>>>
>>>
>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>
>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>> CloudStack Infrastructure
>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>
>>> This email and any attachments to it may be confidential and are intended solely
>>> for the use of the individual to whom it is addressed. Any views or opinions
>>> expressed are solely those of the author and do not necessarily represent those
>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>> of this email, you must neither take any action based upon its contents, nor
>>> copy or show it to anyone. Please contact the sender if you believe you have
>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>> ShapeBlue is a registered trademark.
> 
> Regards,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
> 
> 
> 
> Find out more about ShapeBlue and our range of CloudStack related services
> 
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure
> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
> 
> This email and any attachments to it may be confidential and are intended solely
> for the use of the individual to whom it is addressed. Any views or opinions
> expressed are solely those of the author and do not necessarily represent those
> of Shape Blue Ltd or related companies. If you are not the intended recipient
> of this email, you must neither take any action based upon its contents, nor
> copy or show it to anyone. Please contact the sender if you believe you have
> received this email in error. Shape Blue Ltd is a company incorporated in
> England & Wales. ShapeBlue Services India LLP is a company incorporated in
> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
> Consultoria Ltda is a company incorporated in Brasil and is operated under
> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
> The Republic of South Africa and is traded under license from Shape Blue Ltd.
> ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
Hey,

Looks like autocompletion is working (tab tab), make sure you set paramcompletion to true. Were you using 5.2.0 or older config file?

> On 03-Nov-2014, at 5:06 pm, Nux! <nu...@li.nux.ro> wrote:
>
> Rohit,
>
> I do have that module and I have install the -devel packages as well before reinstalling cloudmonkey, still nothing.
> http://img.nux.ro/s7L-Selection_046.png
>
> Any more pointers?
>
> Lucian
>
> --
> Sent from the Delta quadrant using Borg technology!
>
> Nux!
> www.nux.ro
>
> ----- Original Message -----
>> From: "Rohit Yadav" <ro...@shapeblue.com>
>> To: users@cloudstack.apache.org
>> Cc: dev@cloudstack.apache.org
>> Sent: Monday, 3 November, 2014 11:07:27
>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>
>> Hi Lucian,
>>
>> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
>> python-setuptools, python-pip, readline and readline-devel or readline-develop
>> (please check names before you try it) on it and retry?
>>
>> It is possible that the CentOS machine you’re on has no readline installed.
>> After checking that, just open python and import readline;
>>
>> $ python
>>> import readline
>>
>> If this fails, it’s not cloudmonkey but a dependency that is not available on
>> your machine. If you get issues, please report the errors.
>>
>>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>>
>>> Rohit,
>>>
>>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no go, no
>>> autocompletion. This is my CentOS 7 workstation, yesterday on my laptop it was
>>> working fine (also CentOS 7).
>>> Perhaps I'm missing some python module? Any one in particular I should watch out
>>> for?
>>>
>>> Lucian
>>>
>>> --
>>> Sent from the Delta quadrant using Borg technology!
>>>
>>> Nux!
>>> www.nux.ro
>>>
>>> ----- Original Message -----
>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>> To: dev@cloudstack.apache.org
>>>> Cc: users@cloudstack.apache.org
>>>> Sent: Monday, 3 November, 2014 10:28:00
>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>
>>>> Hi Lucian,
>>>>
>>>> Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches
>>>> (5.2.0 and before) don’t have cached keys that are used to autocomplete filter=
>>>> arg on an API.
>>>>
>>>> If you can reproduce the issue, can you share where you are using this,
>>>> Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>>
>>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>
>>>>> Hi Rohit,
>>>>>
>>>>> Is it me or autocompletion is broken in this one?
>>>>>
>>>>> --
>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>
>>>>> Nux!
>>>>> www.nux.ro
>>>>>
>>>>> ----- Original Message -----
>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>>> Cc: users@cloudstack.apache.org
>>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>>>
>>>>>> Hi All,
>>>>>>
>>>>>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>>>>>> a vote:
>>>>>>
>>>>>> Git Branch and Commit SH:
>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>>
>>>>>> List of changes:
>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>>
>>>>>> Source release (checksums and signatures are available at the same
>>>>>> location):
>>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>>>>>
>>>>>> PGP release keys (signed using 0EE3D884):
>>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>>
>>>>>> Testing procedure:
>>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>>>>>
>>>>>> This release aims to provide better parameter and filter completion, error
>>>>>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>>>>>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>>>>>> tested in API calls, shell and piped calls, for example:
>>>>>>
>>>>>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>>>>>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>>> $ list users | grep रोहित
>>>>>>
>>>>>> The vote will be open till Wednesday (72 hours). Please test this release and
>>>>>> give your vote. Thanks.
>>>>>>
>>>>>> 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,
>>>>>> Rohit Yadav
>>>>>> Software Architect, ShapeBlue
>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>
>>>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>>>
>>>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>> CloudStack Infrastructure
>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>
>>>>>> This email and any attachments to it may be confidential and are intended solely
>>>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>>>> expressed are solely those of the author and do not necessarily represent those
>>>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>>>> of this email, you must neither take any action based upon its contents, nor
>>>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>> ShapeBlue is a registered trademark.
>>>>
>>>> Regards,
>>>> Rohit Yadav
>>>> Software Architect, ShapeBlue
>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>
>>>>
>>>>
>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>
>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>> CloudStack Infrastructure
>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>
>>>> This email and any attachments to it may be confidential and are intended solely
>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>> expressed are solely those of the author and do not necessarily represent those
>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>> of this email, you must neither take any action based upon its contents, nor
>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>> ShapeBlue is a registered trademark.
>>
>> Regards,
>> Rohit Yadav
>> Software Architect, ShapeBlue
>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>
>>
>>
>> Find out more about ShapeBlue and our range of CloudStack related services
>>
>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>> CloudStack Infrastructure
>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>
>> This email and any attachments to it may be confidential and are intended solely
>> for the use of the individual to whom it is addressed. Any views or opinions
>> expressed are solely those of the author and do not necessarily represent those
>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>> of this email, you must neither take any action based upon its contents, nor
>> copy or show it to anyone. Please contact the sender if you believe you have
>> received this email in error. Shape Blue Ltd is a company incorporated in
>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>> ShapeBlue is a registered trademark.

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab



Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
Hey,

Looks like autocompletion is working (tab tab), make sure you set paramcompletion to true. Were you using 5.2.0 or older config file?

> On 03-Nov-2014, at 5:06 pm, Nux! <nu...@li.nux.ro> wrote:
>
> Rohit,
>
> I do have that module and I have install the -devel packages as well before reinstalling cloudmonkey, still nothing.
> http://img.nux.ro/s7L-Selection_046.png
>
> Any more pointers?
>
> Lucian
>
> --
> Sent from the Delta quadrant using Borg technology!
>
> Nux!
> www.nux.ro
>
> ----- Original Message -----
>> From: "Rohit Yadav" <ro...@shapeblue.com>
>> To: users@cloudstack.apache.org
>> Cc: dev@cloudstack.apache.org
>> Sent: Monday, 3 November, 2014 11:07:27
>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>
>> Hi Lucian,
>>
>> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
>> python-setuptools, python-pip, readline and readline-devel or readline-develop
>> (please check names before you try it) on it and retry?
>>
>> It is possible that the CentOS machine you’re on has no readline installed.
>> After checking that, just open python and import readline;
>>
>> $ python
>>> import readline
>>
>> If this fails, it’s not cloudmonkey but a dependency that is not available on
>> your machine. If you get issues, please report the errors.
>>
>>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>>
>>> Rohit,
>>>
>>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no go, no
>>> autocompletion. This is my CentOS 7 workstation, yesterday on my laptop it was
>>> working fine (also CentOS 7).
>>> Perhaps I'm missing some python module? Any one in particular I should watch out
>>> for?
>>>
>>> Lucian
>>>
>>> --
>>> Sent from the Delta quadrant using Borg technology!
>>>
>>> Nux!
>>> www.nux.ro
>>>
>>> ----- Original Message -----
>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>> To: dev@cloudstack.apache.org
>>>> Cc: users@cloudstack.apache.org
>>>> Sent: Monday, 3 November, 2014 10:28:00
>>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>
>>>> Hi Lucian,
>>>>
>>>> Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches
>>>> (5.2.0 and before) don’t have cached keys that are used to autocomplete filter=
>>>> arg on an API.
>>>>
>>>> If you can reproduce the issue, can you share where you are using this,
>>>> Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>>
>>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>>
>>>>> Hi Rohit,
>>>>>
>>>>> Is it me or autocompletion is broken in this one?
>>>>>
>>>>> --
>>>>> Sent from the Delta quadrant using Borg technology!
>>>>>
>>>>> Nux!
>>>>> www.nux.ro
>>>>>
>>>>> ----- Original Message -----
>>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>>> Cc: users@cloudstack.apache.org
>>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>>>
>>>>>> Hi All,
>>>>>>
>>>>>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>>>>>> a vote:
>>>>>>
>>>>>> Git Branch and Commit SH:
>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>>
>>>>>> List of changes:
>>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>>
>>>>>> Source release (checksums and signatures are available at the same
>>>>>> location):
>>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>>>>>
>>>>>> PGP release keys (signed using 0EE3D884):
>>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>>
>>>>>> Testing procedure:
>>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>>>>>
>>>>>> This release aims to provide better parameter and filter completion, error
>>>>>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>>>>>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>>>>>> tested in API calls, shell and piped calls, for example:
>>>>>>
>>>>>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>>>>>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>>> $ list users | grep रोहित
>>>>>>
>>>>>> The vote will be open till Wednesday (72 hours). Please test this release and
>>>>>> give your vote. Thanks.
>>>>>>
>>>>>> 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,
>>>>>> Rohit Yadav
>>>>>> Software Architect, ShapeBlue
>>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>>
>>>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>>>
>>>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>>> CloudStack Infrastructure
>>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>>>
>>>>>> This email and any attachments to it may be confidential and are intended solely
>>>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>>>> expressed are solely those of the author and do not necessarily represent those
>>>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>>>> of this email, you must neither take any action based upon its contents, nor
>>>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>>> ShapeBlue is a registered trademark.
>>>>
>>>> Regards,
>>>> Rohit Yadav
>>>> Software Architect, ShapeBlue
>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>
>>>>
>>>>
>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>
>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>> CloudStack Infrastructure
>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>
>>>> This email and any attachments to it may be confidential and are intended solely
>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>> expressed are solely those of the author and do not necessarily represent those
>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>> of this email, you must neither take any action based upon its contents, nor
>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>> ShapeBlue is a registered trademark.
>>
>> Regards,
>> Rohit Yadav
>> Software Architect, ShapeBlue
>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>
>>
>>
>> Find out more about ShapeBlue and our range of CloudStack related services
>>
>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>> CloudStack Infrastructure
>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>
>> This email and any attachments to it may be confidential and are intended solely
>> for the use of the individual to whom it is addressed. Any views or opinions
>> expressed are solely those of the author and do not necessarily represent those
>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>> of this email, you must neither take any action based upon its contents, nor
>> copy or show it to anyone. Please contact the sender if you believe you have
>> received this email in error. Shape Blue Ltd is a company incorporated in
>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>> ShapeBlue is a registered trademark.

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab



Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Nux! <nu...@li.nux.ro>.
Rohit,

I do have that module and I have install the -devel packages as well before reinstalling cloudmonkey, still nothing.
http://img.nux.ro/s7L-Selection_046.png

Any more pointers?

Lucian

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

----- Original Message -----
> From: "Rohit Yadav" <ro...@shapeblue.com>
> To: users@cloudstack.apache.org
> Cc: dev@cloudstack.apache.org
> Sent: Monday, 3 November, 2014 11:07:27
> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

> Hi Lucian,
> 
> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
> python-setuptools, python-pip, readline and readline-devel or readline-develop
> (please check names before you try it) on it and retry?
> 
> It is possible that the CentOS machine you’re on has no readline installed.
> After checking that, just open python and import readline;
> 
> $ python
>  > import readline
> 
> If this fails, it’s not cloudmonkey but a dependency that is not available on
> your machine. If you get issues, please report the errors.
> 
>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>
>> Rohit,
>>
>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no go, no
>> autocompletion. This is my CentOS 7 workstation, yesterday on my laptop it was
>> working fine (also CentOS 7).
>> Perhaps I'm missing some python module? Any one in particular I should watch out
>> for?
>>
>> Lucian
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
>> ----- Original Message -----
>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>> To: dev@cloudstack.apache.org
>>> Cc: users@cloudstack.apache.org
>>> Sent: Monday, 3 November, 2014 10:28:00
>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>
>>> Hi Lucian,
>>>
>>> Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches
>>> (5.2.0 and before) don’t have cached keys that are used to autocomplete filter=
>>> arg on an API.
>>>
>>> If you can reproduce the issue, can you share where you are using this,
>>> Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>
>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>
>>>> Hi Rohit,
>>>>
>>>> Is it me or autocompletion is broken in this one?
>>>>
>>>> --
>>>> Sent from the Delta quadrant using Borg technology!
>>>>
>>>> Nux!
>>>> www.nux.ro
>>>>
>>>> ----- Original Message -----
>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>> Cc: users@cloudstack.apache.org
>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>>
>>>>> Hi All,
>>>>>
>>>>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>>>>> a vote:
>>>>>
>>>>> Git Branch and Commit SH:
>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>
>>>>> List of changes:
>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>
>>>>> Source release (checksums and signatures are available at the same
>>>>> location):
>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>>>>
>>>>> PGP release keys (signed using 0EE3D884):
>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>
>>>>> Testing procedure:
>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>>>>
>>>>> This release aims to provide better parameter and filter completion, error
>>>>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>>>>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>>>>> tested in API calls, shell and piped calls, for example:
>>>>>
>>>>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>>>>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>> $ list users | grep रोहित
>>>>>
>>>>> The vote will be open till Wednesday (72 hours). Please test this release and
>>>>> give your vote. Thanks.
>>>>>
>>>>> 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,
>>>>> Rohit Yadav
>>>>> Software Architect, ShapeBlue
>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>
>>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>>
>>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>> CloudStack Infrastructure
>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>>
>>>>> This email and any attachments to it may be confidential and are intended solely
>>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>>> expressed are solely those of the author and do not necessarily represent those
>>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>>> of this email, you must neither take any action based upon its contents, nor
>>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>> ShapeBlue is a registered trademark.
>>>
>>> Regards,
>>> Rohit Yadav
>>> Software Architect, ShapeBlue
>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>
>>>
>>>
>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>
>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>> CloudStack Infrastructure
>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>
>>> This email and any attachments to it may be confidential and are intended solely
>>> for the use of the individual to whom it is addressed. Any views or opinions
>>> expressed are solely those of the author and do not necessarily represent those
>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>> of this email, you must neither take any action based upon its contents, nor
>>> copy or show it to anyone. Please contact the sender if you believe you have
>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>> ShapeBlue is a registered trademark.
> 
> Regards,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
> 
> 
> 
> Find out more about ShapeBlue and our range of CloudStack related services
> 
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure
> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
> 
> This email and any attachments to it may be confidential and are intended solely
> for the use of the individual to whom it is addressed. Any views or opinions
> expressed are solely those of the author and do not necessarily represent those
> of Shape Blue Ltd or related companies. If you are not the intended recipient
> of this email, you must neither take any action based upon its contents, nor
> copy or show it to anyone. Please contact the sender if you believe you have
> received this email in error. Shape Blue Ltd is a company incorporated in
> England & Wales. ShapeBlue Services India LLP is a company incorporated in
> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
> Consultoria Ltda is a company incorporated in Brasil and is operated under
> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
> The Republic of South Africa and is traded under license from Shape Blue Ltd.
> ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Nux! <nu...@li.nux.ro>.
Rohit,

I do have that module and I have install the -devel packages as well before reinstalling cloudmonkey, still nothing.
http://img.nux.ro/s7L-Selection_046.png

Any more pointers?

Lucian

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

----- Original Message -----
> From: "Rohit Yadav" <ro...@shapeblue.com>
> To: users@cloudstack.apache.org
> Cc: dev@cloudstack.apache.org
> Sent: Monday, 3 November, 2014 11:07:27
> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

> Hi Lucian,
> 
> I tested CloudMonkey on Fedora and it works for me. Can you check and install:
> python-setuptools, python-pip, readline and readline-devel or readline-develop
> (please check names before you try it) on it and retry?
> 
> It is possible that the CentOS machine you’re on has no readline installed.
> After checking that, just open python and import readline;
> 
> $ python
>  > import readline
> 
> If this fails, it’s not cloudmonkey but a dependency that is not available on
> your machine. If you get issues, please report the errors.
> 
>> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>>
>> Rohit,
>>
>> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no go, no
>> autocompletion. This is my CentOS 7 workstation, yesterday on my laptop it was
>> working fine (also CentOS 7).
>> Perhaps I'm missing some python module? Any one in particular I should watch out
>> for?
>>
>> Lucian
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
>> ----- Original Message -----
>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>> To: dev@cloudstack.apache.org
>>> Cc: users@cloudstack.apache.org
>>> Sent: Monday, 3 November, 2014 10:28:00
>>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>
>>> Hi Lucian,
>>>
>>> Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches
>>> (5.2.0 and before) don’t have cached keys that are used to autocomplete filter=
>>> arg on an API.
>>>
>>> If you can reproduce the issue, can you share where you are using this,
>>> Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>>
>>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>>
>>>> Hi Rohit,
>>>>
>>>> Is it me or autocompletion is broken in this one?
>>>>
>>>> --
>>>> Sent from the Delta quadrant using Borg technology!
>>>>
>>>> Nux!
>>>> www.nux.ro
>>>>
>>>> ----- Original Message -----
>>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>>> To: "dev" <de...@cloudstack.apache.org>
>>>>> Cc: users@cloudstack.apache.org
>>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>>
>>>>> Hi All,
>>>>>
>>>>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>>>>> a vote:
>>>>>
>>>>> Git Branch and Commit SH:
>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>>
>>>>> List of changes:
>>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>>>>
>>>>> Source release (checksums and signatures are available at the same
>>>>> location):
>>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>>>>
>>>>> PGP release keys (signed using 0EE3D884):
>>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>>
>>>>> Testing procedure:
>>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>>>>
>>>>> This release aims to provide better parameter and filter completion, error
>>>>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>>>>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>>>>> tested in API calls, shell and piped calls, for example:
>>>>>
>>>>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>>>>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>>> $ list users | grep रोहित
>>>>>
>>>>> The vote will be open till Wednesday (72 hours). Please test this release and
>>>>> give your vote. Thanks.
>>>>>
>>>>> 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,
>>>>> Rohit Yadav
>>>>> Software Architect, ShapeBlue
>>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>>
>>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>>
>>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>>> CloudStack Infrastructure
>>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>>
>>>>> This email and any attachments to it may be confidential and are intended solely
>>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>>> expressed are solely those of the author and do not necessarily represent those
>>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>>> of this email, you must neither take any action based upon its contents, nor
>>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>>> ShapeBlue is a registered trademark.
>>>
>>> Regards,
>>> Rohit Yadav
>>> Software Architect, ShapeBlue
>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>
>>>
>>>
>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>
>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>> CloudStack Infrastructure
>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>
>>> This email and any attachments to it may be confidential and are intended solely
>>> for the use of the individual to whom it is addressed. Any views or opinions
>>> expressed are solely those of the author and do not necessarily represent those
>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>> of this email, you must neither take any action based upon its contents, nor
>>> copy or show it to anyone. Please contact the sender if you believe you have
>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>> ShapeBlue is a registered trademark.
> 
> Regards,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
> 
> 
> 
> Find out more about ShapeBlue and our range of CloudStack related services
> 
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure
> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
> 
> This email and any attachments to it may be confidential and are intended solely
> for the use of the individual to whom it is addressed. Any views or opinions
> expressed are solely those of the author and do not necessarily represent those
> of Shape Blue Ltd or related companies. If you are not the intended recipient
> of this email, you must neither take any action based upon its contents, nor
> copy or show it to anyone. Please contact the sender if you believe you have
> received this email in error. Shape Blue Ltd is a company incorporated in
> England & Wales. ShapeBlue Services India LLP is a company incorporated in
> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
> Consultoria Ltda is a company incorporated in Brasil and is operated under
> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
> The Republic of South Africa and is traded under license from Shape Blue Ltd.
> ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
Hi Lucian,

I tested CloudMonkey on Fedora and it works for me. Can you check and install: python-setuptools, python-pip, readline and readline-devel or readline-develop (please check names before you try it) on it and retry?

It is possible that the CentOS machine you’re on has no readline installed. After checking that, just open python and import readline;

$ python
  > import readline

If this fails, it’s not cloudmonkey but a dependency that is not available on your machine. If you get issues, please report the errors.

> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>
> Rohit,
>
> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no go, no autocompletion. This is my CentOS 7 workstation, yesterday on my laptop it was working fine (also CentOS 7).
> Perhaps I'm missing some python module? Any one in particular I should watch out for?
>
> Lucian
>
> --
> Sent from the Delta quadrant using Borg technology!
>
> Nux!
> www.nux.ro
>
> ----- Original Message -----
>> From: "Rohit Yadav" <ro...@shapeblue.com>
>> To: dev@cloudstack.apache.org
>> Cc: users@cloudstack.apache.org
>> Sent: Monday, 3 November, 2014 10:28:00
>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>
>> Hi Lucian,
>>
>> Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches
>> (5.2.0 and before) don’t have cached keys that are used to autocomplete filter=
>> arg on an API.
>>
>> If you can reproduce the issue, can you share where you are using this,
>> Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>
>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>
>>> Hi Rohit,
>>>
>>> Is it me or autocompletion is broken in this one?
>>>
>>> --
>>> Sent from the Delta quadrant using Borg technology!
>>>
>>> Nux!
>>> www.nux.ro
>>>
>>> ----- Original Message -----
>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>> To: "dev" <de...@cloudstack.apache.org>
>>>> Cc: users@cloudstack.apache.org
>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>
>>>> Hi All,
>>>>
>>>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>>>> a vote:
>>>>
>>>> Git Branch and Commit SH:
>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>
>>>> List of changes:
>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>>>
>>>> Source release (checksums and signatures are available at the same
>>>> location):
>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>>>
>>>> PGP release keys (signed using 0EE3D884):
>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>
>>>> Testing procedure:
>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>>>
>>>> This release aims to provide better parameter and filter completion, error
>>>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>>>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>>>> tested in API calls, shell and piped calls, for example:
>>>>
>>>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>>>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>> $ list users | grep रोहित
>>>>
>>>> The vote will be open till Wednesday (72 hours). Please test this release and
>>>> give your vote. Thanks.
>>>>
>>>> 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,
>>>> Rohit Yadav
>>>> Software Architect, ShapeBlue
>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>
>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>
>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>> CloudStack Infrastructure
>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>
>>>> This email and any attachments to it may be confidential and are intended solely
>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>> expressed are solely those of the author and do not necessarily represent those
>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>> of this email, you must neither take any action based upon its contents, nor
>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>> ShapeBlue is a registered trademark.
>>
>> Regards,
>> Rohit Yadav
>> Software Architect, ShapeBlue
>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>
>>
>>
>> Find out more about ShapeBlue and our range of CloudStack related services
>>
>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>> CloudStack Infrastructure
>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>
>> This email and any attachments to it may be confidential and are intended solely
>> for the use of the individual to whom it is addressed. Any views or opinions
>> expressed are solely those of the author and do not necessarily represent those
>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>> of this email, you must neither take any action based upon its contents, nor
>> copy or show it to anyone. Please contact the sender if you believe you have
>> received this email in error. Shape Blue Ltd is a company incorporated in
>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>> ShapeBlue is a registered trademark.

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab



Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
Hi Lucian,

I tested CloudMonkey on Fedora and it works for me. Can you check and install: python-setuptools, python-pip, readline and readline-devel or readline-develop (please check names before you try it) on it and retry?

It is possible that the CentOS machine you’re on has no readline installed. After checking that, just open python and import readline;

$ python
  > import readline

If this fails, it’s not cloudmonkey but a dependency that is not available on your machine. If you get issues, please report the errors.

> On 03-Nov-2014, at 4:18 pm, Nux! <nu...@li.nux.ro> wrote:
>
> Rohit,
>
> I've deleted ~/.cloudmonkey/cache and ran sync again, but still no go, no autocompletion. This is my CentOS 7 workstation, yesterday on my laptop it was working fine (also CentOS 7).
> Perhaps I'm missing some python module? Any one in particular I should watch out for?
>
> Lucian
>
> --
> Sent from the Delta quadrant using Borg technology!
>
> Nux!
> www.nux.ro
>
> ----- Original Message -----
>> From: "Rohit Yadav" <ro...@shapeblue.com>
>> To: dev@cloudstack.apache.org
>> Cc: users@cloudstack.apache.org
>> Sent: Monday, 3 November, 2014 10:28:00
>> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>
>> Hi Lucian,
>>
>> Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches
>> (5.2.0 and before) don’t have cached keys that are used to autocomplete filter=
>> arg on an API.
>>
>> If you can reproduce the issue, can you share where you are using this,
>> Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
>>
>>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>>
>>> Hi Rohit,
>>>
>>> Is it me or autocompletion is broken in this one?
>>>
>>> --
>>> Sent from the Delta quadrant using Borg technology!
>>>
>>> Nux!
>>> www.nux.ro
>>>
>>> ----- Original Message -----
>>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>>> To: "dev" <de...@cloudstack.apache.org>
>>>> Cc: users@cloudstack.apache.org
>>>> Sent: Monday, 3 November, 2014 06:46:03
>>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>>
>>>> Hi All,
>>>>
>>>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>>>> a vote:
>>>>
>>>> Git Branch and Commit SH:
>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>>
>>>> List of changes:
>>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>>>
>>>> Source release (checksums and signatures are available at the same
>>>> location):
>>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>>>
>>>> PGP release keys (signed using 0EE3D884):
>>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>>
>>>> Testing procedure:
>>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>>>
>>>> This release aims to provide better parameter and filter completion, error
>>>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>>>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>>>> tested in API calls, shell and piped calls, for example:
>>>>
>>>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>>>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>>> $ list users | grep रोहित
>>>>
>>>> The vote will be open till Wednesday (72 hours). Please test this release and
>>>> give your vote. Thanks.
>>>>
>>>> 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,
>>>> Rohit Yadav
>>>> Software Architect, ShapeBlue
>>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>>
>>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>>
>>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>>> CloudStack Infrastructure
>>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>>
>>>> This email and any attachments to it may be confidential and are intended solely
>>>> for the use of the individual to whom it is addressed. Any views or opinions
>>>> expressed are solely those of the author and do not necessarily represent those
>>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>>> of this email, you must neither take any action based upon its contents, nor
>>>> copy or show it to anyone. Please contact the sender if you believe you have
>>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>>> ShapeBlue is a registered trademark.
>>
>> Regards,
>> Rohit Yadav
>> Software Architect, ShapeBlue
>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>
>>
>>
>> Find out more about ShapeBlue and our range of CloudStack related services
>>
>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>> CloudStack Infrastructure
>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>
>> This email and any attachments to it may be confidential and are intended solely
>> for the use of the individual to whom it is addressed. Any views or opinions
>> expressed are solely those of the author and do not necessarily represent those
>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>> of this email, you must neither take any action based upon its contents, nor
>> copy or show it to anyone. Please contact the sender if you believe you have
>> received this email in error. Shape Blue Ltd is a company incorporated in
>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>> ShapeBlue is a registered trademark.

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab



Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Nux! <nu...@li.nux.ro>.
Rohit,

I've deleted ~/.cloudmonkey/cache and ran sync again, but still no go, no autocompletion. This is my CentOS 7 workstation, yesterday on my laptop it was working fine (also CentOS 7).
Perhaps I'm missing some python module? Any one in particular I should watch out for?

Lucian

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

----- Original Message -----
> From: "Rohit Yadav" <ro...@shapeblue.com>
> To: dev@cloudstack.apache.org
> Cc: users@cloudstack.apache.org
> Sent: Monday, 3 November, 2014 10:28:00
> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

> Hi Lucian,
> 
> Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches
> (5.2.0 and before) don’t have cached keys that are used to autocomplete filter=
> arg on an API.
> 
> If you can reproduce the issue, can you share where you are using this,
> Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
> 
>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>
>> Hi Rohit,
>>
>> Is it me or autocompletion is broken in this one?
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
>> ----- Original Message -----
>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>> To: "dev" <de...@cloudstack.apache.org>
>>> Cc: users@cloudstack.apache.org
>>> Sent: Monday, 3 November, 2014 06:46:03
>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>
>>> Hi All,
>>>
>>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>>> a vote:
>>>
>>> Git Branch and Commit SH:
>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>
>>> List of changes:
>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>>
>>> Source release (checksums and signatures are available at the same
>>> location):
>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>>
>>> PGP release keys (signed using 0EE3D884):
>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>
>>> Testing procedure:
>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>>
>>> This release aims to provide better parameter and filter completion, error
>>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>>> tested in API calls, shell and piped calls, for example:
>>>
>>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>> $ list users | grep रोहित
>>>
>>> The vote will be open till Wednesday (72 hours). Please test this release and
>>> give your vote. Thanks.
>>>
>>> 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,
>>> Rohit Yadav
>>> Software Architect, ShapeBlue
>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>
>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>
>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>> CloudStack Infrastructure
>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>
>>> This email and any attachments to it may be confidential and are intended solely
>>> for the use of the individual to whom it is addressed. Any views or opinions
>>> expressed are solely those of the author and do not necessarily represent those
>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>> of this email, you must neither take any action based upon its contents, nor
>>> copy or show it to anyone. Please contact the sender if you believe you have
>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>> ShapeBlue is a registered trademark.
> 
> Regards,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
> 
> 
> 
> Find out more about ShapeBlue and our range of CloudStack related services
> 
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure
> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
> 
> This email and any attachments to it may be confidential and are intended solely
> for the use of the individual to whom it is addressed. Any views or opinions
> expressed are solely those of the author and do not necessarily represent those
> of Shape Blue Ltd or related companies. If you are not the intended recipient
> of this email, you must neither take any action based upon its contents, nor
> copy or show it to anyone. Please contact the sender if you believe you have
> received this email in error. Shape Blue Ltd is a company incorporated in
> England & Wales. ShapeBlue Services India LLP is a company incorporated in
> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
> Consultoria Ltda is a company incorporated in Brasil and is operated under
> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
> The Republic of South Africa and is traded under license from Shape Blue Ltd.
> ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Nux! <nu...@li.nux.ro>.
Rohit,

I've deleted ~/.cloudmonkey/cache and ran sync again, but still no go, no autocompletion. This is my CentOS 7 workstation, yesterday on my laptop it was working fine (also CentOS 7).
Perhaps I'm missing some python module? Any one in particular I should watch out for?

Lucian

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

----- Original Message -----
> From: "Rohit Yadav" <ro...@shapeblue.com>
> To: dev@cloudstack.apache.org
> Cc: users@cloudstack.apache.org
> Sent: Monday, 3 November, 2014 10:28:00
> Subject: Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

> Hi Lucian,
> 
> Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches
> (5.2.0 and before) don’t have cached keys that are used to autocomplete filter=
> arg on an API.
> 
> If you can reproduce the issue, can you share where you are using this,
> Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.
> 
>> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>>
>> Hi Rohit,
>>
>> Is it me or autocompletion is broken in this one?
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
>> ----- Original Message -----
>>> From: "Rohit Yadav" <ro...@shapeblue.com>
>>> To: "dev" <de...@cloudstack.apache.org>
>>> Cc: users@cloudstack.apache.org
>>> Sent: Monday, 3 November, 2014 06:46:03
>>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>>
>>> Hi All,
>>>
>>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>>> a vote:
>>>
>>> Git Branch and Commit SH:
>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>>
>>> List of changes:
>>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>>
>>> Source release (checksums and signatures are available at the same
>>> location):
>>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>>
>>> PGP release keys (signed using 0EE3D884):
>>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>>
>>> Testing procedure:
>>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>>
>>> This release aims to provide better parameter and filter completion, error
>>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>>> tested in API calls, shell and piped calls, for example:
>>>
>>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>>> $ list users | grep रोहित
>>>
>>> The vote will be open till Wednesday (72 hours). Please test this release and
>>> give your vote. Thanks.
>>>
>>> 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,
>>> Rohit Yadav
>>> Software Architect, ShapeBlue
>>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>>
>>> Find out more about ShapeBlue and our range of CloudStack related services
>>>
>>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>>> CloudStack Infrastructure
>>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>>
>>> This email and any attachments to it may be confidential and are intended solely
>>> for the use of the individual to whom it is addressed. Any views or opinions
>>> expressed are solely those of the author and do not necessarily represent those
>>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>>> of this email, you must neither take any action based upon its contents, nor
>>> copy or show it to anyone. Please contact the sender if you believe you have
>>> received this email in error. Shape Blue Ltd is a company incorporated in
>>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>>> ShapeBlue is a registered trademark.
> 
> Regards,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
> 
> 
> 
> Find out more about ShapeBlue and our range of CloudStack related services
> 
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure
> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
> 
> This email and any attachments to it may be confidential and are intended solely
> for the use of the individual to whom it is addressed. Any views or opinions
> expressed are solely those of the author and do not necessarily represent those
> of Shape Blue Ltd or related companies. If you are not the intended recipient
> of this email, you must neither take any action based upon its contents, nor
> copy or show it to anyone. Please contact the sender if you believe you have
> received this email in error. Shape Blue Ltd is a company incorporated in
> England & Wales. ShapeBlue Services India LLP is a company incorporated in
> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
> Consultoria Ltda is a company incorporated in Brasil and is operated under
> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
> The Republic of South Africa and is traded under license from Shape Blue Ltd.
> ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
Hi Lucian,

Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches (5.2.0 and before) don’t have cached keys that are used to autocomplete filter= arg on an API.

If you can reproduce the issue, can you share where you are using this, Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.

> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>
> Hi Rohit,
>
> Is it me or autocompletion is broken in this one?
>
> --
> Sent from the Delta quadrant using Borg technology!
>
> Nux!
> www.nux.ro
>
> ----- Original Message -----
>> From: "Rohit Yadav" <ro...@shapeblue.com>
>> To: "dev" <de...@cloudstack.apache.org>
>> Cc: users@cloudstack.apache.org
>> Sent: Monday, 3 November, 2014 06:46:03
>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>
>> Hi All,
>>
>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>> a vote:
>>
>> Git Branch and Commit SH:
>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>
>> List of changes:
>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>
>> Source release (checksums and signatures are available at the same
>> location):
>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>
>> PGP release keys (signed using 0EE3D884):
>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>
>> Testing procedure:
>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>
>> This release aims to provide better parameter and filter completion, error
>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>> tested in API calls, shell and piped calls, for example:
>>
>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>> $ list users | grep रोहित
>>
>> The vote will be open till Wednesday (72 hours). Please test this release and
>> give your vote. Thanks.
>>
>> 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,
>> Rohit Yadav
>> Software Architect, ShapeBlue
>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>
>> Find out more about ShapeBlue and our range of CloudStack related services
>>
>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>> CloudStack Infrastructure
>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>
>> This email and any attachments to it may be confidential and are intended solely
>> for the use of the individual to whom it is addressed. Any views or opinions
>> expressed are solely those of the author and do not necessarily represent those
>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>> of this email, you must neither take any action based upon its contents, nor
>> copy or show it to anyone. Please contact the sender if you believe you have
>> received this email in error. Shape Blue Ltd is a company incorporated in
>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>> ShapeBlue is a registered trademark.

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab



Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Rohit Yadav <ro...@shapeblue.com>.
Hi Lucian,

Can you start by removing ~/.cloudmonkey/cache or run sync again? Old caches (5.2.0 and before) don’t have cached keys that are used to autocomplete filter= arg on an API.

If you can reproduce the issue, can you share where you are using this, Windows/Mac/Linux, error logs etc.? I’ve only tested it on OSX and Ubuntu.

> On 03-Nov-2014, at 3:25 pm, Nux! <nu...@li.nux.ro> wrote:
>
> Hi Rohit,
>
> Is it me or autocompletion is broken in this one?
>
> --
> Sent from the Delta quadrant using Borg technology!
>
> Nux!
> www.nux.ro
>
> ----- Original Message -----
>> From: "Rohit Yadav" <ro...@shapeblue.com>
>> To: "dev" <de...@cloudstack.apache.org>
>> Cc: users@cloudstack.apache.org
>> Sent: Monday, 3 November, 2014 06:46:03
>> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)
>
>> Hi All,
>>
>> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
>> a vote:
>>
>> Git Branch and Commit SH:
>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
>> Commit: eae19737f99d4236aa925744d41b605aa103ac38
>>
>> List of changes:
>> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
>>
>> Source release (checksums and signatures are available at the same
>> location):
>> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
>>
>> PGP release keys (signed using 0EE3D884):
>> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
>>
>> Testing procedure:
>> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
>>
>> This release aims to provide better parameter and filter completion, error
>> handling and utf8/unicode support in CloudMonkey and therefore needs testing
>> efforts in these areas. UTF-8 encoded string parameters usage needs to be
>> tested in API calls, shell and piped calls, for example:
>>
>> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
>> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
>> $ list users | grep रोहित
>>
>> The vote will be open till Wednesday (72 hours). Please test this release and
>> give your vote. Thanks.
>>
>> 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,
>> Rohit Yadav
>> Software Architect, ShapeBlue
>> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
>> Blog: bhaisaab.org | Twitter: @_bhaisaab
>>
>> Find out more about ShapeBlue and our range of CloudStack related services
>>
>> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
>> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
>> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
>> CloudStack Infrastructure
>> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
>> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
>>
>> This email and any attachments to it may be confidential and are intended solely
>> for the use of the individual to whom it is addressed. Any views or opinions
>> expressed are solely those of the author and do not necessarily represent those
>> of Shape Blue Ltd or related companies. If you are not the intended recipient
>> of this email, you must neither take any action based upon its contents, nor
>> copy or show it to anyone. Please contact the sender if you believe you have
>> received this email in error. Shape Blue Ltd is a company incorporated in
>> England & Wales. ShapeBlue Services India LLP is a company incorporated in
>> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
>> Consultoria Ltda is a company incorporated in Brasil and is operated under
>> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
>> The Republic of South Africa and is traded under license from Shape Blue Ltd.
>> ShapeBlue is a registered trademark.

Regards,
Rohit Yadav
Software Architect, ShapeBlue
M. +91 88 262 30892 | rohit.yadav@shapeblue.com
Blog: bhaisaab.org | Twitter: @_bhaisaab



Find out more about ShapeBlue and our range of CloudStack related services

IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
CloudStack Infrastructure Support<http://shapeblue.com/cloudstack-infrastructure-support/>
CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>

This email and any attachments to it may be confidential and are intended solely for the use of the individual to whom it is addressed. Any views or opinions expressed are solely those of the author and do not necessarily represent those of Shape Blue Ltd or related companies. If you are not the intended recipient of this email, you must neither take any action based upon its contents, nor copy or show it to anyone. Please contact the sender if you believe you have received this email in error. Shape Blue Ltd is a company incorporated in England & Wales. ShapeBlue Services India LLP is a company incorporated in India and is operated under license from Shape Blue Ltd. Shape Blue Brasil Consultoria Ltda is a company incorporated in Brasil and is operated under license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by The Republic of South Africa and is traded under license from Shape Blue Ltd. ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Nux! <nu...@li.nux.ro>.
Hi Rohit,

Is it me or autocompletion is broken in this one?

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

----- Original Message -----
> From: "Rohit Yadav" <ro...@shapeblue.com>
> To: "dev" <de...@cloudstack.apache.org>
> Cc: users@cloudstack.apache.org
> Sent: Monday, 3 November, 2014 06:46:03
> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

> Hi All,
> 
> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
> a vote:
> 
> Git Branch and Commit SH:
> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
> Commit: eae19737f99d4236aa925744d41b605aa103ac38
> 
> List of changes:
> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
> 
> Source release (checksums and signatures are available at the same
> location):
> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
> 
> PGP release keys (signed using 0EE3D884):
> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
> 
> Testing procedure:
> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
> 
> This release aims to provide better parameter and filter completion, error
> handling and utf8/unicode support in CloudMonkey and therefore needs testing
> efforts in these areas. UTF-8 encoded string parameters usage needs to be
> tested in API calls, shell and piped calls, for example:
> 
> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
> $ list users | grep रोहित
> 
> The vote will be open till Wednesday (72 hours). Please test this release and
> give your vote. Thanks.
> 
> 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,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
> 
> Find out more about ShapeBlue and our range of CloudStack related services
> 
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure
> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
> 
> This email and any attachments to it may be confidential and are intended solely
> for the use of the individual to whom it is addressed. Any views or opinions
> expressed are solely those of the author and do not necessarily represent those
> of Shape Blue Ltd or related companies. If you are not the intended recipient
> of this email, you must neither take any action based upon its contents, nor
> copy or show it to anyone. Please contact the sender if you believe you have
> received this email in error. Shape Blue Ltd is a company incorporated in
> England & Wales. ShapeBlue Services India LLP is a company incorporated in
> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
> Consultoria Ltda is a company incorporated in Brasil and is operated under
> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
> The Republic of South Africa and is traded under license from Shape Blue Ltd.
> ShapeBlue is a registered trademark.

Re: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

Posted by Nux! <nu...@li.nux.ro>.
Hi Rohit,

Is it me or autocompletion is broken in this one?

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

----- Original Message -----
> From: "Rohit Yadav" <ro...@shapeblue.com>
> To: "dev" <de...@cloudstack.apache.org>
> Cc: users@cloudstack.apache.org
> Sent: Monday, 3 November, 2014 06:46:03
> Subject: [VOTE] Release Apache CloudStack CloudMonkey 5.3.0 (round #4)

> Hi All,
> 
> I've created a 5.3.0 release of CloudMonkey, with the following artifacts up for
> a vote:
> 
> Git Branch and Commit SH:
> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=shortlog;h=refs/heads/5.3
> Commit: eae19737f99d4236aa925744d41b605aa103ac38
> 
> List of changes:
> https://git-wip-us.apache.org/repos/asf?p=cloudstack-cloudmonkey.git;a=blob_plain;f=CHANGES;hb=5.3
> 
> Source release (checksums and signatures are available at the same
> location):
> https://dist.apache.org/repos/dist/dev/cloudstack/cloudmonkey-5.3.0/
> 
> PGP release keys (signed using 0EE3D884):
> https://dist.apache.org/repos/dist/release/cloudstack/KEYS
> 
> Testing procedure:
> https://cwiki.apache.org/confluence/display/CLOUDSTACK/CloudMonkey+Release+test+procedure
> 
> This release aims to provide better parameter and filter completion, error
> handling and utf8/unicode support in CloudMonkey and therefore needs testing
> efforts in these areas. UTF-8 encoded string parameters usage needs to be
> tested in API calls, shell and piped calls, for example:
> 
> $ create user account=admin username=रोहित lastname=यादव firstname=रोहित
> email=bhaisaab@apache.org password="正體字/繁體字日本人français한국فارسیpassword123”
> $ list users | grep रोहित
> 
> The vote will be open till Wednesday (72 hours). Please test this release and
> give your vote. Thanks.
> 
> 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,
> Rohit Yadav
> Software Architect, ShapeBlue
> M. +91 88 262 30892 | rohit.yadav@shapeblue.com
> Blog: bhaisaab.org | Twitter: @_bhaisaab
> 
> Find out more about ShapeBlue and our range of CloudStack related services
> 
> IaaS Cloud Design & Build<http://shapeblue.com/iaas-cloud-design-and-build//>
> CSForge – rapid IaaS deployment framework<http://shapeblue.com/csforge/>
> CloudStack Consulting<http://shapeblue.com/cloudstack-consultancy/>
> CloudStack Infrastructure
> Support<http://shapeblue.com/cloudstack-infrastructure-support/>
> CloudStack Bootcamp Training Courses<http://shapeblue.com/cloudstack-training/>
> 
> This email and any attachments to it may be confidential and are intended solely
> for the use of the individual to whom it is addressed. Any views or opinions
> expressed are solely those of the author and do not necessarily represent those
> of Shape Blue Ltd or related companies. If you are not the intended recipient
> of this email, you must neither take any action based upon its contents, nor
> copy or show it to anyone. Please contact the sender if you believe you have
> received this email in error. Shape Blue Ltd is a company incorporated in
> England & Wales. ShapeBlue Services India LLP is a company incorporated in
> India and is operated under license from Shape Blue Ltd. Shape Blue Brasil
> Consultoria Ltda is a company incorporated in Brasil and is operated under
> license from Shape Blue Ltd. ShapeBlue SA Pty Ltd is a company registered by
> The Republic of South Africa and is traded under license from Shape Blue Ltd.
> ShapeBlue is a registered trademark.