[GitHub] [cloudstack-documentation] cl-k-takahashi edited a comment on issue #29: Fix the string to sign

2019-04-03 Thread GitBox
cl-k-takahashi edited a comment on issue #29: Fix the string to sign
URL: 
https://github.com/apache/cloudstack-documentation/pull/29#issuecomment-479715814
 
 
   @DaanHoogland 
   Current CloudStack contains the code below in ApiServer.java:
   ```
unsignedRequest = unsignedRequest.toLowerCase();
   
   final Mac mac = Mac.getInstance("HmacSHA1");
   final SecretKeySpec keySpec = new 
SecretKeySpec(secretKey.getBytes(), "HmacSHA1");
   mac.init(keySpec);
   mac.update(unsignedRequest.getBytes());
   ```
   As you can see, CloudStack generates hash for lower cased request.
   Current documentation is not problematic for [a-zA-Z0-9] but is problematic 
for urlencoded characters:
   
   ```
   >>> urllib.quote_plus('aBcDe'.lower())
   'abcde'
   >>> urllib.quote_plus('aBcDe').lower()
   'abcde'
   >>> urllib.quote_plus('aBcDe★'.lower())
   'abcde%E2%98%85'
   >>> urllib.quote_plus('aBcDe★').lower()
   'abcde%e2%98%85'
   
   ```
   The 3rd result contains upper-case characters which causes verification 
failure in CloudStack management server.


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] cl-k-takahashi edited a comment on issue #29: Fix the string to sign

2019-04-03 Thread GitBox
cl-k-takahashi edited a comment on issue #29: Fix the string to sign
URL: 
https://github.com/apache/cloudstack-documentation/pull/29#issuecomment-479715814
 
 
   @DaanHoogland 
   Current CloudStack contains the code below in ApiServer.java:
   `
unsignedRequest = unsignedRequest.toLowerCase();
   
   final Mac mac = Mac.getInstance("HmacSHA1");
   final SecretKeySpec keySpec = new 
SecretKeySpec(secretKey.getBytes(), "HmacSHA1");
   mac.init(keySpec);
   mac.update(unsignedRequest.getBytes());
   `
   As you can see, CloudStack generates hash for lower cased request.
   Current documentation is not problematic for [a-zA-Z0-9] but is problematic 
for urlencoded characters:
   
   ```
   >>> urllib.quote_plus('aBcDe'.lower())
   'abcde'
   >>> urllib.quote_plus('aBcDe').lower()
   'abcde'
   >>> urllib.quote_plus('aBcDe★'.lower())
   'abcde%E2%98%85'
   >>> urllib.quote_plus('aBcDe★').lower()
   'abcde%e2%98%85'
   
   ```
   The 3rd result contains upper-case characters which causes verification 
failure in CloudStack management server.


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] cl-k-takahashi commented on issue #29: Fix the string to sign

2019-04-03 Thread GitBox
cl-k-takahashi commented on issue #29: Fix the string to sign
URL: 
https://github.com/apache/cloudstack-documentation/pull/29#issuecomment-479715814
 
 
   @DaanHoogland 
   Current CloudStack contains the code below in ApiServer.java:
   `
unsignedRequest = unsignedRequest.toLowerCase();
   
   final Mac mac = Mac.getInstance("HmacSHA1");
   final SecretKeySpec keySpec = new 
SecretKeySpec(secretKey.getBytes(), "HmacSHA1");
   mac.init(keySpec);
   mac.update(unsignedRequest.getBytes());
   `
   As you can see, CloudStack generates hash for lower cased request.
   Current documentation is not problematic for [a-zA-Z0-9] but is problematic 
for urlencoded characters:
   `
   >>> urllib.quote_plus('aBcDe'.lower())
   'abcde'
   >>> urllib.quote_plus('aBcDe').lower()
   'abcde'
   >>> urllib.quote_plus('aBcDe★'.lower())
   'abcde%E2%98%85'
   >>> urllib.quote_plus('aBcDe★').lower()
   'abcde%e2%98%85'
   `
   The 3rd result contains upper-case characters which causes verification 
failure in CloudStack management server.


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


With regards,
Apache Git Services


Re: Multiple networks support in SG zone - half baked?

2019-04-03 Thread Rakesh v
Not 4.11.3.  porting the changes is in progress to 4.11.2 in our company

Sent from my iPhone

> On 03-Apr-2019, at 5:26 PM, Nux!  wrote:
> 
> Hi Wei,
> 
> 4.11.3 you mean? 4.11.2 is already released.
> 
> Anyway, last I tried, a couple of years back, this was not supported at all, 
> hence me getting my hopes up.
> You could add multiple networks, but the VM had to connect only in 1 at any 
> given time.
> Looking forward to your port.
> 
> --
> Sent from the Delta quadrant using Borg technology!
> 
> Nux!
> www.nux.ro
> 
> - Original Message -
>> From: "Wei ZHOU" 
>> To: "dev" 
>> Sent: Wednesday, 3 April, 2019 15:51:49
>> Subject: Re: Multiple networks support in SG zone - half baked?
> 
>> Was it supported before ? I do not think so.
>> 
>> We have made some changes to support it in cloudstack 4.7.1. We are going
>> to port our changes to cloudstack 4.11.2 LTS.
>> 
>> -Wei
>> 
>> Nux!  于2019年4月3日周三 下午4:47写道:
>> 
>>> Hi,
>>> 
>>> (ACS 4.11.2, KVM)
>>> 
>>> I noticed (with enthusiasm) that I can now add a second network to a VM in
>>> Adv + SG zones.[1]
>>> I then noticed (with less enthusiasm) that while indeed a new NIC into the
>>> said network is added, Security Groups for it are not set up at all, i.e.
>>> DHCP is broken.
>>> 
>>> Can anyone shed some light on this feature, where it's going and so on?
>>> 
>>> I would have killed for this feature a few years back and it was one of
>>> the reasons we failed to adopt Cloudstack properly, as we require a
>>> secondary network for private/backup usage.
>>> 
>>> Also noticed "Add L2 network" button, but gives an error[2], so I reckon
>>> it can't be used.
>>> 
>>> Are things any better in 4.12? With improved IPv6 support I am already
>>> considering to ditch the LTS for it.
>>> 
>>> 
>>> [1] http://tmp.nux.ro/J4M-Selection_058.png
>>> [2] http://tmp.nux.ro/Mx9-Selection_059.png
>>> 
>>> --
>>> Sent from the Delta quadrant using Borg technology!
>>> 
>>> Nux!
>>> www.nux.ro


RE: Update Cloudstack 4.12.0.0 documentation

2019-04-03 Thread Paul Angus
I can add you, but it'll be tomorrow now.  If you move the tag, for 4.12.0.0 it 
should automatically build.


paul.an...@shapeblue.com 
www.shapeblue.com
Amadeus House, Floral Street, London  WC2E 9DPUK
@shapeblue
  
 


-Original Message-
From: Gabriel Beims Bräscher  
Sent: 03 April 2019 18:28
To: dev 
Subject: Update Cloudstack 4.12.0.0 documentation

Hello folks,

I have updated the documentation for 4.12.0.0 in the cloudstack-documentation 
project [1]. However, to synchronize the Apache CloudStack documentation [2] 
with [1] it is needed to run a build in readthedocs.org (if I am not mistaken).

I don't have enough "Karma" to access readthedocs.org to run the build; 
therefore, I need some help on this one from anyone that can log in and run the 
build :)

Does anyone know how such "Karma" is being provided?

Please correct me if I am missing any step on this build.
Thanks!

[1] https://github.com/apache/cloudstack-documentation/tree/4.12.0.0
[2] http://docs.cloudstack.apache.org


Update Cloudstack 4.12.0.0 documentation

2019-04-03 Thread Gabriel Beims Bräscher
Hello folks,

I have updated the documentation for 4.12.0.0 in the
cloudstack-documentation project [1]. However, to synchronize the Apache
CloudStack documentation [2] with [1] it is needed to run a build in
readthedocs.org (if I am not mistaken).

I don't have enough "Karma" to access readthedocs.org to run the build;
therefore, I need some help on this one from anyone that can log in and run
the build :)

Does anyone know how such "Karma" is being provided?

Please correct me if I am missing any step on this build.
Thanks!

[1] https://github.com/apache/cloudstack-documentation/tree/4.12.0.0
[2] http://docs.cloudstack.apache.org


Re: Multiple networks support in SG zone - half baked?

2019-04-03 Thread Nux!
Hi Wei,

4.11.3 you mean? 4.11.2 is already released.

Anyway, last I tried, a couple of years back, this was not supported at all, 
hence me getting my hopes up.
You could add multiple networks, but the VM had to connect only in 1 at any 
given time.
Looking forward to your port.

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

- Original Message -
> From: "Wei ZHOU" 
> To: "dev" 
> Sent: Wednesday, 3 April, 2019 15:51:49
> Subject: Re: Multiple networks support in SG zone - half baked?

> Was it supported before ? I do not think so.
> 
> We have made some changes to support it in cloudstack 4.7.1. We are going
> to port our changes to cloudstack 4.11.2 LTS.
> 
> -Wei
> 
> Nux!  于2019年4月3日周三 下午4:47写道:
> 
>> Hi,
>>
>> (ACS 4.11.2, KVM)
>>
>> I noticed (with enthusiasm) that I can now add a second network to a VM in
>> Adv + SG zones.[1]
>> I then noticed (with less enthusiasm) that while indeed a new NIC into the
>> said network is added, Security Groups for it are not set up at all, i.e.
>> DHCP is broken.
>>
>> Can anyone shed some light on this feature, where it's going and so on?
>>
>> I would have killed for this feature a few years back and it was one of
>> the reasons we failed to adopt Cloudstack properly, as we require a
>> secondary network for private/backup usage.
>>
>> Also noticed "Add L2 network" button, but gives an error[2], so I reckon
>> it can't be used.
>>
>> Are things any better in 4.12? With improved IPv6 support I am already
>> considering to ditch the LTS for it.
>>
>>
>> [1] http://tmp.nux.ro/J4M-Selection_058.png
>> [2] http://tmp.nux.ro/Mx9-Selection_059.png
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro


Re: Multiple networks support in SG zone - half baked?

2019-04-03 Thread Wei ZHOU
Was it supported before ? I do not think so.

We have made some changes to support it in cloudstack 4.7.1. We are going
to port our changes to cloudstack 4.11.2 LTS.

-Wei

Nux!  于2019年4月3日周三 下午4:47写道:

> Hi,
>
> (ACS 4.11.2, KVM)
>
> I noticed (with enthusiasm) that I can now add a second network to a VM in
> Adv + SG zones.[1]
> I then noticed (with less enthusiasm) that while indeed a new NIC into the
> said network is added, Security Groups for it are not set up at all, i.e.
> DHCP is broken.
>
> Can anyone shed some light on this feature, where it's going and so on?
>
> I would have killed for this feature a few years back and it was one of
> the reasons we failed to adopt Cloudstack properly, as we require a
> secondary network for private/backup usage.
>
> Also noticed "Add L2 network" button, but gives an error[2], so I reckon
> it can't be used.
>
> Are things any better in 4.12? With improved IPv6 support I am already
> considering to ditch the LTS for it.
>
>
> [1] http://tmp.nux.ro/J4M-Selection_058.png
> [2] http://tmp.nux.ro/Mx9-Selection_059.png
>
> --
> Sent from the Delta quadrant using Borg technology!
>
> Nux!
> www.nux.ro
>


Multiple networks support in SG zone - half baked?

2019-04-03 Thread Nux!
Hi,

(ACS 4.11.2, KVM)

I noticed (with enthusiasm) that I can now add a second network to a VM in Adv 
+ SG zones.[1]
I then noticed (with less enthusiasm) that while indeed a new NIC into the said 
network is added, Security Groups for it are not set up at all, i.e. DHCP is 
broken.

Can anyone shed some light on this feature, where it's going and so on?

I would have killed for this feature a few years back and it was one of the 
reasons we failed to adopt Cloudstack properly, as we require a secondary 
network for private/backup usage.

Also noticed "Add L2 network" button, but gives an error[2], so I reckon it 
can't be used.

Are things any better in 4.12? With improved IPv6 support I am already 
considering to ditch the LTS for it.


[1] http://tmp.nux.ro/J4M-Selection_058.png
[2] http://tmp.nux.ro/Mx9-Selection_059.png

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro


[GitHub] [cloudstack-documentation] BlueGitBot commented on issue #38: IGNORE TESTING

2019-04-03 Thread GitBox
BlueGitBot commented on issue #38: IGNORE TESTING
URL: 
https://github.com/apache/cloudstack-documentation/pull/38#issuecomment-479514171
 
 
   @BlueGitBot build


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] PaulAngus commented on issue #38: IGNORE TESTING

2019-04-03 Thread GitBox
PaulAngus commented on issue #38: IGNORE TESTING
URL: 
https://github.com/apache/cloudstack-documentation/pull/38#issuecomment-479514646
 
 
   @BlueGitBot build


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] BlueGitBot commented on issue #38: IGNORE TESTING

2019-04-03 Thread GitBox
BlueGitBot commented on issue #38: IGNORE TESTING
URL: 
https://github.com/apache/cloudstack-documentation/pull/38#issuecomment-479514349
 
 
   @BlueGitBot build


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] BlueGitBot opened a new pull request #38: IGNORE TESTING

2019-04-03 Thread GitBox
BlueGitBot opened a new pull request #38: IGNORE TESTING
URL: https://github.com/apache/cloudstack-documentation/pull/38
 
 
   * added updated instructions for ubuntu 18.04 and cloudstack 4.11
   
   * removed tomcat install step
   
   * removed install tomcat step
   
   * Revert "removed tomcat install step" updated wrong part of doc
   
   This reverts commit 347b4e97d1805f3df20feae49008672c1c2a8709.


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] BlueGitBot commented on issue #28: DPDK vHost User mode selection

2019-04-03 Thread GitBox
BlueGitBot commented on issue #28: DPDK vHost User mode selection
URL: 
https://github.com/apache/cloudstack-documentation/pull/28#issuecomment-479512214
 
 
   @BlueGitBot gettingborednow


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] BlueGitBot commented on issue #28: DPDK vHost User mode selection

2019-04-03 Thread GitBox
BlueGitBot commented on issue #28: DPDK vHost User mode selection
URL: 
https://github.com/apache/cloudstack-documentation/pull/28#issuecomment-479509687
 
 
   @BlueGitBot build


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] BlueGitBot commented on issue #28: DPDK vHost User mode selection

2019-04-03 Thread GitBox
BlueGitBot commented on issue #28: DPDK vHost User mode selection
URL: 
https://github.com/apache/cloudstack-documentation/pull/28#issuecomment-479508773
 
 
   @BlueGitBot build


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] BlueGitBot commented on issue #28: DPDK vHost User mode selection

2019-04-03 Thread GitBox
BlueGitBot commented on issue #28: DPDK vHost User mode selection
URL: 
https://github.com/apache/cloudstack-documentation/pull/28#issuecomment-479501143
 
 
   @bluegitbot ping


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] PaulAngus commented on issue #28: DPDK vHost User mode selection

2019-04-03 Thread GitBox
PaulAngus commented on issue #28: DPDK vHost User mode selection
URL: 
https://github.com/apache/cloudstack-documentation/pull/28#issuecomment-479498843
 
 
   @BlueGitBot ping


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] PaulAngus commented on issue #28: DPDK vHost User mode selection

2019-04-03 Thread GitBox
PaulAngus commented on issue #28: DPDK vHost User mode selection
URL: 
https://github.com/apache/cloudstack-documentation/pull/28#issuecomment-479498371
 
 
   @bluegitbot ping


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] PaulAngus merged pull request #36: skip redundant key rpm import

2019-04-03 Thread GitBox
PaulAngus merged pull request #36: skip redundant key rpm import
URL: https://github.com/apache/cloudstack-documentation/pull/36
 
 
   


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


With regards,
Apache Git Services


Re: IPv6 in SG zones

2019-04-03 Thread Nux!
Ok, that sounds way too fiddly. I'll think about upgrading to 4.12.

Thanks all!

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

- Original Message -
> From: "Wido den Hollander" 
> To: "Nux!" 
> Cc: "dev" 
> Sent: Wednesday, 3 April, 2019 13:44:58
> Subject: Re: IPv6 in SG zones

> On 4/3/19 1:55 PM, Nux! wrote:
>> Wido,
>> 
>> In my research I found a video of yours where you show 4.10 working with IPv6
>> and SGs.
>> Wouldn't my 4.11.2 work, too?
>> 
> 
> It only works with Basic Networking in 4.11, but not in Advanced zones.
> And only with KVM afaik.
> 
> You probably need to populate the 'vlan' table manually with the right
> information.
> 
> Wido
> 
>> Also, is this still current then?
>> http://docs.cloudstack.apache.org/projects/archived-cloudstack-getting-started/en/latest/networking/ipv6.html
>> 
>> For example it is advised there to use a special systemvm, but I can't find 
>> any
>> non-regular ones.
>> 
>> Any other gotchas?
>> 
>> Regards,
>> Lucian
>> 
>> --
>> Sent from the Delta quadrant using Borg technology!
>> 
>> Nux!
>> www.nux.ro
>> 
>> - Original Message -
>>> From: "Wido den Hollander" 
>>> To: "Nux!" , "dev" 
>>> Sent: Wednesday, 3 April, 2019 12:04:21
>>> Subject: Re: IPv6 in SG zones
>> 
>>> On 4/3/19 11:59 AM, Nux! wrote:
 Thanks, I'm on 4.11.2.0 though.

>>>
>>> 4.12 does IPv6 with SG on Advanced zones with Shared Networks.
>>>
>>> I tested this with V(X)LAN and works for us.
>>>
>>> Wido
>>>
 --
 Sent from the Delta quadrant using Borg technology!

 Nux!
 www.nux.ro

 - Original Message -
> From: "Andrija Panic" 
> To: "dev" 
> Cc: "Wido den Hollander" 
> Sent: Tuesday, 2 April, 2019 23:34:11
> Subject: Re: IPv6 in SG zones

> https://github.com/apache/cloudstack/pull/3053
>
> https://github.com/apache/cloudstack/pull/3070
>
> ^^^ comes to my mind, in 4.12 only...
>
> On Tue, 2 Apr 2019 at 22:01, Nux!  wrote:
>
>> Hello,
>>
>> I'm looking to deploy a new Adv+SG zone and want to go the extra mile and
>> have IPv6 as well for VMs, however according to what docs I could find 
>> IPv6
>> support is still not complete (missing firewall/security groups for one),
>> whereas I thought it was not the case.
>> Can someone clarify for me if security groups are available for IPv6
>> addresses and maybe point me into a good direction with regards to RTFM?
>>
>> Regards,
>> Lucian
>>
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
>
>
> --
>
>  Andrija Panić


[GitHub] [cloudstack-documentation] PaulAngus merged pull request #24: added updated instructions for ubuntu 18.04 and cloudstack 4.11

2019-04-03 Thread GitBox
PaulAngus merged pull request #24: added updated instructions for ubuntu 18.04 
and cloudstack 4.11
URL: https://github.com/apache/cloudstack-documentation/pull/24
 
 
   


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


With regards,
Apache Git Services


Re: Add Cloudstack 4.12.0.0 on www.apache.org/dyn/closer.lua/cloudstack/

2019-04-03 Thread Gabriel Beims Bräscher
Thanks for the info Rohit! I will update the cloudstack-www 'asf-site'
branch with the correct source code link for 4.12.0.0.

Another question, regarding the documentation. How do I update the
CloudStack documentation [1] with the content of 4.12.0.0 [2]?
Do I need access to readthedocs.org?

Thanks!

[1] http://docs.cloudstack.apache.org
[2] https://github.com/apache/cloudstack-documentation/tree/4.12.0.0

Em qua, 3 de abr de 2019 às 09:28, Rohit Yadav 
escreveu:

> Gabriel,
>
>
> Once you've moved the candidate artifacts to releases, ASF infra will
> automatically mirror the release artifact except for checksum/signature
> files.
>
> I see that 4.12.0.0 is already moved at the correct path:
> https://dist.apache.org/repos/dist/release/cloudstack/releases/4.12.0.0/
>
>
>
> Regards,
>
> Rohit Yadav
>
> Software Architect, ShapeBlue
>
> https://www.shapeblue.com
>
> 
> From: Gabriel Beims Br?scher 
> Sent: Wednesday, April 3, 2019 5:43:33 PM
> To: dev
> Subject: Add Cloudstack 4.12.0.0 on
> www.apache.org/dyn/closer.lua/cloudstack/
>
> Hello folks,
>
> I have updated the cloudstack.apache.org; however, I pointed the source
> link for 4.12.0.0 to [1]. Other releases (as 4.11.2.0 and CloudMonkey
> 6.0.0) point first to [2].
>
> How does it work to add a release source code to
> http://www.apache.org/dyn/closer.lua/cloudstack/releases/
> <
> http://www.apache.org/dyn/closer.lua/cloudstack/releases/cloudmonkey-6.0.0/apache-cloudstack-cloudmonkey-6.0.0-src.tar.bz2
> >
> ?
>
> Regards,
> Gabriel.
>
> [1]
>
> https://dist.apache.org/repos/dist/release/cloudstack/releases/4.12.0.0/apache-cloudstack-4.12.0.0-src.tar.bz2
> [2]
>
> http://www.apache.org/dyn/closer.lua/cloudstack/releases/cloudmonkey-6.0.0/apache-cloudstack-cloudmonkey-6.0.0-src.tar.bz2
> [3] http://www.apache.org/dyn/closer.lua/cloudstack/releases/
>
> rohit.ya...@shapeblue.com
> www.shapeblue.com
> Amadeus House, Floral Street, London  WC2E 9DPUK
> @shapeblue
>
>
>
>


Re: IPv6 in SG zones

2019-04-03 Thread Wido den Hollander



On 4/3/19 1:55 PM, Nux! wrote:
> Wido,
> 
> In my research I found a video of yours where you show 4.10 working with IPv6 
> and SGs.
> Wouldn't my 4.11.2 work, too?
> 

It only works with Basic Networking in 4.11, but not in Advanced zones.
And only with KVM afaik.

You probably need to populate the 'vlan' table manually with the right
information.

Wido

> Also, is this still current then?
> http://docs.cloudstack.apache.org/projects/archived-cloudstack-getting-started/en/latest/networking/ipv6.html
> 
> For example it is advised there to use a special systemvm, but I can't find 
> any non-regular ones.
> 
> Any other gotchas?
> 
> Regards,
> Lucian
> 
> --
> Sent from the Delta quadrant using Borg technology!
> 
> Nux!
> www.nux.ro
> 
> - Original Message -
>> From: "Wido den Hollander" 
>> To: "Nux!" , "dev" 
>> Sent: Wednesday, 3 April, 2019 12:04:21
>> Subject: Re: IPv6 in SG zones
> 
>> On 4/3/19 11:59 AM, Nux! wrote:
>>> Thanks, I'm on 4.11.2.0 though.
>>>
>>
>> 4.12 does IPv6 with SG on Advanced zones with Shared Networks.
>>
>> I tested this with V(X)LAN and works for us.
>>
>> Wido
>>
>>> --
>>> Sent from the Delta quadrant using Borg technology!
>>>
>>> Nux!
>>> www.nux.ro
>>>
>>> - Original Message -
 From: "Andrija Panic" 
 To: "dev" 
 Cc: "Wido den Hollander" 
 Sent: Tuesday, 2 April, 2019 23:34:11
 Subject: Re: IPv6 in SG zones
>>>
 https://github.com/apache/cloudstack/pull/3053

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

 ^^^ comes to my mind, in 4.12 only...

 On Tue, 2 Apr 2019 at 22:01, Nux!  wrote:

> Hello,
>
> I'm looking to deploy a new Adv+SG zone and want to go the extra mile and
> have IPv6 as well for VMs, however according to what docs I could find 
> IPv6
> support is still not complete (missing firewall/security groups for one),
> whereas I thought it was not the case.
> Can someone clarify for me if security groups are available for IPv6
> addresses and maybe point me into a good direction with regards to RTFM?
>
> Regards,
> Lucian
>
>
> --
> Sent from the Delta quadrant using Borg technology!
>
> Nux!
> www.nux.ro
>


 --

 Andrija Panić


Re: Add Cloudstack 4.12.0.0 on www.apache.org/dyn/closer.lua/cloudstack/

2019-04-03 Thread Rohit Yadav
Gabriel,


Once you've moved the candidate artifacts to releases, ASF infra will 
automatically mirror the release artifact except for checksum/signature files.

I see that 4.12.0.0 is already moved at the correct path: 
https://dist.apache.org/repos/dist/release/cloudstack/releases/4.12.0.0/



Regards,

Rohit Yadav

Software Architect, ShapeBlue

https://www.shapeblue.com


From: Gabriel Beims Br?scher 
Sent: Wednesday, April 3, 2019 5:43:33 PM
To: dev
Subject: Add Cloudstack 4.12.0.0 on www.apache.org/dyn/closer.lua/cloudstack/

Hello folks,

I have updated the cloudstack.apache.org; however, I pointed the source
link for 4.12.0.0 to [1]. Other releases (as 4.11.2.0 and CloudMonkey
6.0.0) point first to [2].

How does it work to add a release source code to
http://www.apache.org/dyn/closer.lua/cloudstack/releases/

?

Regards,
Gabriel.

[1]
https://dist.apache.org/repos/dist/release/cloudstack/releases/4.12.0.0/apache-cloudstack-4.12.0.0-src.tar.bz2
[2]
http://www.apache.org/dyn/closer.lua/cloudstack/releases/cloudmonkey-6.0.0/apache-cloudstack-cloudmonkey-6.0.0-src.tar.bz2
[3] http://www.apache.org/dyn/closer.lua/cloudstack/releases/

rohit.ya...@shapeblue.com 
www.shapeblue.com
Amadeus House, Floral Street, London  WC2E 9DPUK
@shapeblue
  
 



Add Cloudstack 4.12.0.0 on www.apache.org/dyn/closer.lua/cloudstack/

2019-04-03 Thread Gabriel Beims Bräscher
Hello folks,

I have updated the cloudstack.apache.org; however, I pointed the source
link for 4.12.0.0 to [1]. Other releases (as 4.11.2.0 and CloudMonkey
6.0.0) point first to [2].

How does it work to add a release source code to
http://www.apache.org/dyn/closer.lua/cloudstack/releases/

?

Regards,
Gabriel.

[1]
https://dist.apache.org/repos/dist/release/cloudstack/releases/4.12.0.0/apache-cloudstack-4.12.0.0-src.tar.bz2
[2]
http://www.apache.org/dyn/closer.lua/cloudstack/releases/cloudmonkey-6.0.0/apache-cloudstack-cloudmonkey-6.0.0-src.tar.bz2
[3] http://www.apache.org/dyn/closer.lua/cloudstack/releases/


[GitHub] [cloudstack-documentation] nvazquez commented on a change in pull request #28: DPDK vHost User mode selection

2019-04-03 Thread GitBox
nvazquez commented on a change in pull request #28: DPDK vHost User mode 
selection
URL: 
https://github.com/apache/cloudstack-documentation/pull/28#discussion_r271708015
 
 

 ##
 File path: source/plugins/ovs-plugin.rst
 ##
 @@ -377,7 +418,7 @@ That would set interfaces to type 'vhostuser' and 
reference the ports created in
 ::
 
   
- 
+ 
 
 Review comment:
   Done, thanks


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] nvazquez commented on a change in pull request #28: DPDK vHost User mode selection

2019-04-03 Thread GitBox
nvazquez commented on a change in pull request #28: DPDK vHost User mode 
selection
URL: 
https://github.com/apache/cloudstack-documentation/pull/28#discussion_r271707760
 
 

 ##
 File path: source/plugins/ovs-plugin.rst
 ##
 @@ -364,6 +364,47 @@ To enable DPDK on VM deployments:
   dpdk-interface-model:
   
 
+Additional configurations on service offerings
+~~
+
+It is also possible to avoid passing additional configuration on each VM 
deployment, but setting these configurations on a service offering, and those 
are passed to the VM. To create a service offering with additional 
configurations, pass each key/value pair as service offering details on service 
offering creation, with keys starting with the "extraconfig" keyword, and each 
value an URL UTF-8 encoded string. For example:
+
+::
+   
+   create serviceoffering name= displaytext= 
serviceofferingdetails[0].key=extraconfig-dpdk-hugepages 
serviceofferingdetails[0].value=%3CmemoryBacking%3E%20%3Chugepages%2F%3E%20%3C%2FmemoryBacking%3E
 serviceofferingdetails[1].key=extraconfig-dpdk-numa 
serviceofferingdetails[1].value=%3Ccpu%20mode%3D%22host-passthrough%22%3E%20%3Cnuma%3E%20%3Ccell%20id%3D%220%22%20cpus%3D%220%22%20memory%3D%229437184%22%20unit%3D%22KiB%22%20memAccess%3D%22shared%22%2F%3E%20%3C%2Fnuma%3E%20%3C%2Fcpu%3E
+
+Additional configurations are stored as service offering details.
+
+DPDK vHost User mode selection
+~~
+The vHost user mode describes a client/server model between Openvswitch along 
with DPDK and QEMU, in which one acts as client while the other as server. The 
server creates and manages the vHost user sockets and the client connects to 
the sockets created by the server:
+
+- DPDK vHost user server mode:
+   - Is the default configuration.
+   - OVS with DPDK acts as the server, while QEMU acts as the client.
+   - The port types used are: dpdkvhostuser
+
+- DPDK vHost user client mode:
+   - OVS with DPDK acts as the client and QEMU acts as the server.
+   - If Openvswitch is restarted then the sockets can reconnect to the 
existing sockets on the server, and normal connectivity can be resumed.
+   - The port types used are: dpdkvhostuserclient
+
+It is possible to pass the DPDK vHost User mode as a service offering detail 
with key: "DPDK-VHOSTUSER" and values: "client" or "server". The following 
table illustrates the expected behaviour on DPDK ports and VM guest interfaces.
 
 Review comment:
   Refactored


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] nvazquez commented on a change in pull request #28: DPDK vHost User mode selection

2019-04-03 Thread GitBox
nvazquez commented on a change in pull request #28: DPDK vHost User mode 
selection
URL: 
https://github.com/apache/cloudstack-documentation/pull/28#discussion_r271707674
 
 

 ##
 File path: source/plugins/ovs-plugin.rst
 ##
 @@ -364,6 +364,47 @@ To enable DPDK on VM deployments:
   dpdk-interface-model:
   
 
+Additional configurations on service offerings
 
 Review comment:
   Done, thanks


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


With regards,
Apache Git Services


Re: IPv6 in SG zones

2019-04-03 Thread Nux!
Wido,

In my research I found a video of yours where you show 4.10 working with IPv6 
and SGs.
Wouldn't my 4.11.2 work, too?

Also, is this still current then?
http://docs.cloudstack.apache.org/projects/archived-cloudstack-getting-started/en/latest/networking/ipv6.html

For example it is advised there to use a special systemvm, but I can't find any 
non-regular ones.

Any other gotchas?

Regards,
Lucian

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

- Original Message -
> From: "Wido den Hollander" 
> To: "Nux!" , "dev" 
> Sent: Wednesday, 3 April, 2019 12:04:21
> Subject: Re: IPv6 in SG zones

> On 4/3/19 11:59 AM, Nux! wrote:
>> Thanks, I'm on 4.11.2.0 though.
>> 
> 
> 4.12 does IPv6 with SG on Advanced zones with Shared Networks.
> 
> I tested this with V(X)LAN and works for us.
> 
> Wido
> 
>> --
>> Sent from the Delta quadrant using Borg technology!
>> 
>> Nux!
>> www.nux.ro
>> 
>> - Original Message -
>>> From: "Andrija Panic" 
>>> To: "dev" 
>>> Cc: "Wido den Hollander" 
>>> Sent: Tuesday, 2 April, 2019 23:34:11
>>> Subject: Re: IPv6 in SG zones
>> 
>>> https://github.com/apache/cloudstack/pull/3053
>>>
>>> https://github.com/apache/cloudstack/pull/3070
>>>
>>> ^^^ comes to my mind, in 4.12 only...
>>>
>>> On Tue, 2 Apr 2019 at 22:01, Nux!  wrote:
>>>
 Hello,

 I'm looking to deploy a new Adv+SG zone and want to go the extra mile and
 have IPv6 as well for VMs, however according to what docs I could find IPv6
 support is still not complete (missing firewall/security groups for one),
 whereas I thought it was not the case.
 Can someone clarify for me if security groups are available for IPv6
 addresses and maybe point me into a good direction with regards to RTFM?

 Regards,
 Lucian


 --
 Sent from the Delta quadrant using Borg technology!

 Nux!
 www.nux.ro

>>>
>>>
>>> --
>>>
> >> Andrija Panić


[GitHub] [cloudstack-documentation] DaanHoogland commented on issue #29: Fix the string to sign

2019-04-03 Thread GitBox
DaanHoogland commented on issue #29: Fix the string to sign
URL: 
https://github.com/apache/cloudstack-documentation/pull/29#issuecomment-479455870
 
 
   @cl-k-takahashi : please explain your point. As I tried to reproduce what I 
understand from it, I got:
   ```
   $ python
   Python 2.7.15 (default, Feb 12 2019, 11:00:12)
   [GCC 4.2.1 Compatible Apple LLVM 10.0.0 (clang-1000.11.45.5)] on darwin
   Type "help", "copyright", "credits" or "license" for more information.
   >>> import urllib;
   >>> urllib.quote_plus("aAbBcC")
   'aAbBcC'
   >>> urllib.quote_plus("abc")
   'abc'
   >>> urllib.quote_plus("ABC")
   'ABC'
   ```
   I think, if we are correcting the developers documentation we need to be 
more expicit about the pitfall you are describing. Is this a version issue?
   Please correct my understanding.


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


With regards,
Apache Git Services


Re: IPv6 in SG zones

2019-04-03 Thread Wido den Hollander



On 4/3/19 11:59 AM, Nux! wrote:
> Thanks, I'm on 4.11.2.0 though.
> 

4.12 does IPv6 with SG on Advanced zones with Shared Networks.

I tested this with V(X)LAN and works for us.

Wido

> --
> Sent from the Delta quadrant using Borg technology!
> 
> Nux!
> www.nux.ro
> 
> - Original Message -
>> From: "Andrija Panic" 
>> To: "dev" 
>> Cc: "Wido den Hollander" 
>> Sent: Tuesday, 2 April, 2019 23:34:11
>> Subject: Re: IPv6 in SG zones
> 
>> https://github.com/apache/cloudstack/pull/3053
>>
>> https://github.com/apache/cloudstack/pull/3070
>>
>> ^^^ comes to my mind, in 4.12 only...
>>
>> On Tue, 2 Apr 2019 at 22:01, Nux!  wrote:
>>
>>> Hello,
>>>
>>> I'm looking to deploy a new Adv+SG zone and want to go the extra mile and
>>> have IPv6 as well for VMs, however according to what docs I could find IPv6
>>> support is still not complete (missing firewall/security groups for one),
>>> whereas I thought it was not the case.
>>> Can someone clarify for me if security groups are available for IPv6
>>> addresses and maybe point me into a good direction with regards to RTFM?
>>>
>>> Regards,
>>> Lucian
>>>
>>>
>>> --
>>> Sent from the Delta quadrant using Borg technology!
>>>
>>> Nux!
>>> www.nux.ro
>>>
>>
>>
>> --
>>
>> Andrija Panić


[GitHub] [cloudstack-documentation] PaulAngus merged pull request #33: reference 4.11.2 systemvm template

2019-04-03 Thread GitBox
PaulAngus merged pull request #33: reference 4.11.2 systemvm template
URL: https://github.com/apache/cloudstack-documentation/pull/33
 
 
   


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] PaulAngus merged pull request #37: added "Upload from local"

2019-04-03 Thread GitBox
PaulAngus merged pull request #37: added "Upload from local"
URL: https://github.com/apache/cloudstack-documentation/pull/37
 
 
   


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] andrijapanicsb commented on a change in pull request #33: reference 4.11.2 systemvm template

2019-04-03 Thread GitBox
andrijapanicsb commented on a change in pull request #33: reference 4.11.2 
systemvm template
URL: 
https://github.com/apache/cloudstack-documentation/pull/33#discussion_r271670009
 
 

 ##
 File path: source/quickinstallationguide/qig.rst
 ##
 @@ -490,7 +490,7 @@ the system VMs images.
   

/usr/share/cloudstack-common/scripts/storage/secondary/cloud-install-sys-tmplt \
-m /export/secondary \
-   -u 
http://download.cloudstack.org/systemvm/4.11/systemvmtemplate-4.11.1-kvm.qcow2.bz2
 \
+   -u 
http://download.cloudstack.org/systemvm/4.11/systemvmtemplate-4.11.2-kvm.qcow2.bz2
 \
 
 Review comment:
   That's a good point, but since we are referencing 4.11 branch (in repo 
file), unless there is a variable for this (and it doesn't make sense possibly 
as the time goes by), I would stick to manual URLs for this very doc ?
   


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] rhtyd commented on a change in pull request #15: documentation for selecting a pod, cluster or host during VM deploy

2019-04-03 Thread GitBox
rhtyd commented on a change in pull request #15: documentation for selecting a 
pod, cluster or host during VM deploy
URL: 
https://github.com/apache/cloudstack-documentation/pull/15#discussion_r271670723
 
 

 ##
 File path: source/adminguide/virtual_machines.rst
 ##
 @@ -185,7 +185,7 @@ To create a VM from a template:
 
 #. Click Add Instance.
 
-#. Select a zone.
+#. Select a zone. Admin users also have to option to select a pod, cluster or 
host.
 
 Review comment:
   The list if wrt UI. See lines above line nu. 185.


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] rhtyd commented on issue #15: documentation for selecting a pod, cluster or host during VM deploy

2019-04-03 Thread GitBox
rhtyd commented on issue #15: documentation for selecting a pod, cluster or 
host during VM deploy
URL: 
https://github.com/apache/cloudstack-documentation/pull/15#issuecomment-479426750
 
 
   @borisstoyanov @PaulAngus - can you also review?
   I'll address them changes.


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] PaulAngus commented on a change in pull request #33: reference 4.11.2 systemvm template

2019-04-03 Thread GitBox
PaulAngus commented on a change in pull request #33: reference 4.11.2 systemvm 
template
URL: 
https://github.com/apache/cloudstack-documentation/pull/33#discussion_r271668491
 
 

 ##
 File path: source/quickinstallationguide/qig.rst
 ##
 @@ -490,7 +490,7 @@ the system VMs images.
   

/usr/share/cloudstack-common/scripts/storage/secondary/cloud-install-sys-tmplt \
-m /export/secondary \
-   -u 
http://download.cloudstack.org/systemvm/4.11/systemvmtemplate-4.11.1-kvm.qcow2.bz2
 \
+   -u 
http://download.cloudstack.org/systemvm/4.11/systemvmtemplate-4.11.2-kvm.qcow2.bz2
 \
 
 Review comment:
   q. are you wanting this guide to keep 'itself' up to date or keep manual 
control of guide changes?
   if the former, there is a global variables file  ../source/_global.rst  
which you can use (or even add to).
   
   .. Latest version systemvm template name
   .. |sysvm64-name-kvm|replace:: systemvm-kvm-4.11.2
   
   .. Latest version systemvm template URL
   .. |sysvm64-url-kvm|replace:: 
http://download.cloudstack.org/systemvm/4.11/systemvmtemplate-4.11.2-kvm.qcow2.bz2
   
   so you can use: |sysvm64-url-kvm| 


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] andrijapanicsb commented on a change in pull request #37: added "Upload from local"

2019-04-03 Thread GitBox
andrijapanicsb commented on a change in pull request #37: added "Upload from 
local"
URL: 
https://github.com/apache/cloudstack-documentation/pull/37#discussion_r271667574
 
 

 ##
 File path: source/adminguide/templates.rst
 ##
 @@ -272,6 +273,13 @@ To upload a template:
   the Featured Templates list. Only an administrator can make a
   template Featured.
 
+Uploading Templates from local computer
+---
+
+It's also possible to upload already prepared template from your local 
computer.
+Steps are similar as when Uploading template from remote HTTP server, except 
that you need to choose local template file from your PC.
+For this feature to work, your SSVMs must be supporting HTTPS (for more info 
please visit `“Using a SSL Certificate for the Console Proxy” 
 
 Review comment:
   https://cwiki.apache.org/confluence/pages/viewpage.action?pageId=39620237 
says "The Apache web server will only accept upload requests over HTTPS" and 
yes, tested this (for other reasons) and found it's NOT working when your SSVM 
doesn't have SSL configured (captured logs confirming HTTPS url "was not found" 
kind of thing - that is reason I opened this PR.
   Confirmed it works if SSVM is SSL enabled.


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


With regards,
Apache Git Services


Re: IPv6 in SG zones

2019-04-03 Thread Nux!
Thanks, I'm on 4.11.2.0 though.

--
Sent from the Delta quadrant using Borg technology!

Nux!
www.nux.ro

- Original Message -
> From: "Andrija Panic" 
> To: "dev" 
> Cc: "Wido den Hollander" 
> Sent: Tuesday, 2 April, 2019 23:34:11
> Subject: Re: IPv6 in SG zones

> https://github.com/apache/cloudstack/pull/3053
> 
> https://github.com/apache/cloudstack/pull/3070
> 
> ^^^ comes to my mind, in 4.12 only...
> 
> On Tue, 2 Apr 2019 at 22:01, Nux!  wrote:
> 
>> Hello,
>>
>> I'm looking to deploy a new Adv+SG zone and want to go the extra mile and
>> have IPv6 as well for VMs, however according to what docs I could find IPv6
>> support is still not complete (missing firewall/security groups for one),
>> whereas I thought it was not the case.
>> Can someone clarify for me if security groups are available for IPv6
>> addresses and maybe point me into a good direction with regards to RTFM?
>>
>> Regards,
>> Lucian
>>
>>
>> --
>> Sent from the Delta quadrant using Borg technology!
>>
>> Nux!
>> www.nux.ro
>>
> 
> 
> --
> 
> Andrija Panić


[GitHub] [cloudstack-documentation] PaulAngus commented on a change in pull request #37: added "Upload from local"

2019-04-03 Thread GitBox
PaulAngus commented on a change in pull request #37: added "Upload from local"
URL: 
https://github.com/apache/cloudstack-documentation/pull/37#discussion_r271660703
 
 

 ##
 File path: source/adminguide/templates.rst
 ##
 @@ -272,6 +273,13 @@ To upload a template:
   the Featured Templates list. Only an administrator can make a
   template Featured.
 
+Uploading Templates from local computer
+---
+
+It's also possible to upload already prepared template from your local 
computer.
+Steps are similar as when Uploading template from remote HTTP server, except 
that you need to choose local template file from your PC.
+For this feature to work, your SSVMs must be supporting HTTPS (for more info 
please visit `“Using a SSL Certificate for the Console Proxy” 
 
 Review comment:
   Are you sure that this is true?
   SSVM is a client not a server in this instance.
   There is a bug regarding remote https not being recogniased
   https://github.com/apache/cloudstack/issues/3172


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] PaulAngus commented on a change in pull request #37: added "Upload from local"

2019-04-03 Thread GitBox
PaulAngus commented on a change in pull request #37: added "Upload from local"
URL: 
https://github.com/apache/cloudstack-documentation/pull/37#discussion_r271665338
 
 

 ##
 File path: source/adminguide/templates.rst
 ##
 @@ -201,8 +201,9 @@ you can create a template directly from any snapshot 
through the
 CloudStack UI.
 
 
-Uploading Templates

+Uploading Templates from remote HTTP server
 
 Review comment:
   "Article" missing in sentence
   ```suggestion
   Uploading Templates from a remote HTTP server
   ```


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] PaulAngus commented on a change in pull request #37: added "Upload from local"

2019-04-03 Thread GitBox
PaulAngus commented on a change in pull request #37: added "Upload from local"
URL: 
https://github.com/apache/cloudstack-documentation/pull/37#discussion_r271665151
 
 

 ##
 File path: source/adminguide/templates.rst
 ##
 @@ -272,6 +273,13 @@ To upload a template:
   the Featured Templates list. Only an administrator can make a
   template Featured.
 
+Uploading Templates from local computer
+---
+
+It's also possible to upload already prepared template from your local 
computer.
+Steps are similar as when Uploading template from remote HTTP server, except 
that you need to choose local template file from your PC.
 
 Review comment:
   "Articles" missing in sentence
   ```suggestion
   The steps are similar as when Uploading a template from a remote HTTP 
server, except that you need to choose a local template file from your PC.
   ```


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] PaulAngus commented on a change in pull request #37: added "Upload from local"

2019-04-03 Thread GitBox
PaulAngus commented on a change in pull request #37: added "Upload from local"
URL: 
https://github.com/apache/cloudstack-documentation/pull/37#discussion_r271664716
 
 

 ##
 File path: source/adminguide/templates.rst
 ##
 @@ -272,6 +273,13 @@ To upload a template:
   the Featured Templates list. Only an administrator can make a
   template Featured.
 
+Uploading Templates from local computer
 
 Review comment:
   "Article" missing in sentence
   ```suggestion
   Uploading Templates from a local computer
   ```


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


With regards,
Apache Git Services


[GitHub] [cloudstack-documentation] PaulAngus commented on a change in pull request #37: added "Upload from local"

2019-04-03 Thread GitBox
PaulAngus commented on a change in pull request #37: added "Upload from local"
URL: 
https://github.com/apache/cloudstack-documentation/pull/37#discussion_r271664864
 
 

 ##
 File path: source/adminguide/templates.rst
 ##
 @@ -272,6 +273,13 @@ To upload a template:
   the Featured Templates list. Only an administrator can make a
   template Featured.
 
+Uploading Templates from local computer
+---
+
+It's also possible to upload already prepared template from your local 
computer.
 
 Review comment:
   "Article" missing in sentence
   ```suggestion
   It's also possible to upload an already prepared template from your local 
computer.
   ```


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


With regards,
Apache Git Services