[GitHub] [cloudstack-primate] utchoang commented on issue #167: [WIP] Zone wizard

2020-03-19 Thread GitBox
utchoang commented on issue #167: [WIP] Zone wizard
URL: 
https://github.com/apache/cloudstack-primate/pull/167#issuecomment-601020116
 
 
   Hi @shwstppr ,
   As I mentioned earlier, I followed the steps but I was unable to test in my 
local. I will update the POST method, then please help me test again. Thank you.


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-primate] shwstppr commented on issue #167: [WIP] Zone wizard

2020-03-19 Thread GitBox
shwstppr commented on issue #167: [WIP] Zone wizard
URL: 
https://github.com/apache/cloudstack-primate/pull/167#issuecomment-601020948
 
 
   @utchoang tried locally while changing to POST request but addHost call 
still failed. I'm working on testing and debugging. Will update you once I find 
the problem.


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


[ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven Vogel

2020-03-19 Thread Paul Angus
Hi Everyone,

It gives me great pleasure to announce that ASF board last night
accepted our PMC's nomination of Sven Vogel as the next VP of the
project.

As I hand over the reins, I would like to thank everyone for the
support I've received over the past year. It looks like being a very
difficult year ahead for the world in general, and I wish everyone
good luck in navigating it and urge everyone to try to show patience
and compassion in these trying times.

I'd like to thank Sven for volunteering for the post and wish him the
best of luck, I'm sure that he'll do a great job.

So please join me in welcoming Sven Vogel as the new Apache CloudStack
VP and PMC Chair !


[GitHub] [cloudstack-primate] vladimirpetrov opened a new issue #240: [BUG] Domain admin: Identify and access > Roles should not be visible

2020-03-19 Thread GitBox
vladimirpetrov opened a new issue #240: [BUG] Domain admin: Identify and access 
> Roles should not be visible
URL: https://github.com/apache/cloudstack-primate/issues/240
 
 
   **Describe the bug**
   'Identify and access > Roles' screen is visible but the domain admin has no 
access there so it doesn't make sense.
   
   **To Reproduce**
   Steps to reproduce the behavior:
   1. Go to 'Identify and access > Roles'
   
   **Expected behavior**
   'Identify and access > Roles' should not be visible when logged as domain 
admin.
   
   **Screenshots**
   
![image](https://user-images.githubusercontent.com/12384665/77050456-79754a80-69d2-11ea-9bd3-0baac7d71721.png)
   
   **Desktop (please complete the following information):**
- OS: Ubuntu 18.04 LTS
- Browser: Chrome
- Version: 80.0.3987.132 (Official Build) (64-bit)
   
   **Additional context**
   None.
   


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-primate] vladimirpetrov opened a new issue #241: [BUG] Domain admin: Offerings - more options than in the old UI

2020-03-19 Thread GitBox
vladimirpetrov opened a new issue #241: [BUG] Domain admin: Offerings - more 
options than in the old UI
URL: https://github.com/apache/cloudstack-primate/issues/241
 
 
   **Describe the bug**
   No Offerings menu options are hidden, as they are in the old UI.
   
   **To Reproduce**
   Steps to reproduce the behavior:
   1. Log in as domain admin, go to 'Offerings' - all options are visible there.
   
   **Expected behavior**
   Only two options should be visible, as in the old UI - compute and disk 
offerings.
   
   **Screenshots**
   New UI:
   
![image](https://user-images.githubusercontent.com/12384665/77053228-b2afb980-69d6-11ea-8367-b6b810305706.png)
   
   Old UI:
   
![image](https://user-images.githubusercontent.com/12384665/77053280-c9561080-69d6-11ea-8a15-9405af851b03.png)
   
   **Desktop (please complete the following information):**
- OS: Ubuntu 18.04 LTS
- Browser: Chrome
- Version: 80.0.3987.132 (Official Build) (64-bit)
   
   **Additional context**
   Offerings > System Offerings generates a 404 error, as mentioned in #233.
   


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-primate] shwstppr commented on issue #167: [WIP] Zone wizard

2020-03-19 Thread GitBox
shwstppr commented on issue #167: [WIP] Zone wizard
URL: 
https://github.com/apache/cloudstack-primate/pull/167#issuecomment-60749
 
 
   @utchoang I debugged and found addHost API was correctly adding new host in 
the server but Primate was failing with request timeout after 1min,
   ![Screenshot from 2020-03-19 
13-40-54](https://user-images.githubusercontent.com/153340/77055459-edc1e500-69f6-11ea-91fc-d69047e7f892.png)
   I increased the value to **18** here 
https://github.com/apache/cloudstack-primate/blob/master/src/utils/request.js#L28
   But no it fails with failed status after 2min. After consulting with @rhtyd 
   `proxyTimeout: 1000 * 60 * 5 // 5 minutes` was added here
   https://github.com/apache/cloudstack-primate/blob/master/vue.config.js#L117
   
   After this addHost worked fine but wizard failed while adding staging 
secondary storage here, 
https://github.com/apache/cloudstack-primate/pull/167/files#diff-de058fe5096a781928dd810207977ba9R1483
   Changed the condition to,
   ```
   if (this.prefillContent.secondaryStorageNFSStaging && 
this.prefillContent.secondaryStorageNFSStaging.value) {
   ```
   
   and zone was added successfully but it was not enabled  and not enable zone 
dialog was shown similar to old UI


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-primate] shwstppr commented on issue #241: [BUG] Domain admin: Offerings - more options than in the old UI

2020-03-19 Thread GitBox
shwstppr commented on issue #241: [BUG] Domain admin: Offerings - more options 
than in the old UI
URL: 
https://github.com/apache/cloudstack-primate/issues/241#issuecomment-601113046
 
 
   Looking into this. cc @rhtyd 


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: [ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven Vogel

2020-03-19 Thread Gabriel Beims Bräscher
Thank you for the work done as PMC Chair / VP, Paul.
Congratulations, Sven!

Em qui., 19 de mar. de 2020 às 05:34, Paul Angus 
escreveu:

> Hi Everyone,
>
> It gives me great pleasure to announce that ASF board last night
> accepted our PMC's nomination of Sven Vogel as the next VP of the
> project.
>
> As I hand over the reins, I would like to thank everyone for the
> support I've received over the past year. It looks like being a very
> difficult year ahead for the world in general, and I wish everyone
> good luck in navigating it and urge everyone to try to show patience
> and compassion in these trying times.
>
> I'd like to thank Sven for volunteering for the post and wish him the
> best of luck, I'm sure that he'll do a great job.
>
> So please join me in welcoming Sven Vogel as the new Apache CloudStack
> VP and PMC Chair !
>


[GitHub] [cloudstack-primate] shwstppr opened a new issue #242: [BUG] Add Primary Storage UI missing hypervisor option for zone wide scope

2020-03-19 Thread GitBox
shwstppr opened a new issue #242: [BUG] Add Primary Storage UI missing 
hypervisor option for zone wide scope
URL: https://github.com/apache/cloudstack-primate/issues/242
 
 
   **Describe the bug**
   Old UI provides option to select the hypervisor when scope for new primary 
storage is set to zone-wide.
   ![Screenshot from 2020-03-19 
16-22-09](https://user-images.githubusercontent.com/153340/77060091-097cb980-69fe-11ea-8dd1-4c06d3654113.png)
   This is missing in Primate with probably an auto-generated form,
   ![Screenshot from 2020-03-19 
16-20-59](https://user-images.githubusercontent.com/153340/77060139-1d282000-69fe-11ea-8d9a-33362cd4fec1.png)
   
   **To Reproduce**
   Steps to reproduce the behavior:
   1. Login as root admin
   2. Under infrastructure go to Primary Storage
   3. Click add (plus) button
   4. Hypervisor dropdown element not shown irrespective of any value for scope
   
   **Expected behavior**
   Hypervisor dropdown should be shown
   
   **Screenshots**
   Added above
   
   **Desktop (please complete the following information):**
- OS: Ubuntu
- Browser Google Chrome
- Version Version 80.0.3987.132
   
   **Additional context**
   Add any other context about the problem here.
   


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: [ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven Vogel

2020-03-19 Thread Darrin Hüsselmann
Congratulations Sven

Cheers
Darrin


From: Gabriel Beims Bräscher 
Sent: Thursday, March 19, 2020 12:51 PM
To: dev 
Cc: priv...@cloudstack.apache.org ; users 
; Apache CloudStack Marketing 

Subject: Re: [ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven 
Vogel

Thank you for the work done as PMC Chair / VP, Paul.
Congratulations, Sven!

Em qui., 19 de mar. de 2020 às 05:34, Paul Angus 
mailto:pau...@apache.org>> escreveu:
Hi Everyone,

It gives me great pleasure to announce that ASF board last night
accepted our PMC's nomination of Sven Vogel as the next VP of the
project.

As I hand over the reins, I would like to thank everyone for the
support I've received over the past year. It looks like being a very
difficult year ahead for the world in general, and I wish everyone
good luck in navigating it and urge everyone to try to show patience
and compassion in these trying times.

I'd like to thank Sven for volunteering for the post and wish him the
best of luck, I'm sure that he'll do a great job.

So please join me in welcoming Sven Vogel as the new Apache CloudStack
VP and PMC Chair !

darrin.husselm...@shapeblue.com 
www.shapeblue.com
3 London Bridge Street,  3rd floor, News Building, London  SE1 9SGUK
@shapeblue
  
 



Re: [ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven Vogel

2020-03-19 Thread Abhishek Kumar
Thank you Paul for the great work over the last year.
Congratulations Sven!

Regards,
Abhishek

From: Paul Angus 
Sent: 19 March 2020 14:04
To: priv...@cloudstack.apache.org ; 
us...@cloudstack.apache.org ; 
dev@cloudstack.apache.org ; Apache CloudStack 
Marketing 
Subject: [ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven Vogel

Hi Everyone,

It gives me great pleasure to announce that ASF board last night
accepted our PMC's nomination of Sven Vogel as the next VP of the
project.

As I hand over the reins, I would like to thank everyone for the
support I've received over the past year. It looks like being a very
difficult year ahead for the world in general, and I wish everyone
good luck in navigating it and urge everyone to try to show patience
and compassion in these trying times.

I'd like to thank Sven for volunteering for the post and wish him the
best of luck, I'm sure that he'll do a great job.

So please join me in welcoming Sven Vogel as the new Apache CloudStack
VP and PMC Chair !

abhishek.ku...@shapeblue.com 
www.shapeblue.com
3 London Bridge Street,  3rd floor, News Building, London  SE1 9SGUK
@shapeblue
  
 



Re: [ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven Vogel

2020-03-19 Thread Suresh Kumar Anaparti
Congrats Sven!

Regards,
Suresh

On Thu, Mar 19, 2020 at 2:04 PM Paul Angus  wrote:

> Hi Everyone,
>
> It gives me great pleasure to announce that ASF board last night
> accepted our PMC's nomination of Sven Vogel as the next VP of the
> project.
>
> As I hand over the reins, I would like to thank everyone for the
> support I've received over the past year. It looks like being a very
> difficult year ahead for the world in general, and I wish everyone
> good luck in navigating it and urge everyone to try to show patience
> and compassion in these trying times.
>
> I'd like to thank Sven for volunteering for the post and wish him the
> best of luck, I'm sure that he'll do a great job.
>
> So please join me in welcoming Sven Vogel as the new Apache CloudStack
> VP and PMC Chair !
>


[ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven Vogel

2020-03-19 Thread Wei ZHOU
Congratulations Sven !

Thanks for your nice work Paul


On Thu, 19 Mar 2020 at 09:34, Paul Angus  wrote:

> Hi Everyone,
>
> It gives me great pleasure to announce that ASF board last night
> accepted our PMC's nomination of Sven Vogel as the next VP of the
> project.
>
> As I hand over the reins, I would like to thank everyone for the
> support I've received over the past year. It looks like being a very
> difficult year ahead for the world in general, and I wish everyone
> good luck in navigating it and urge everyone to try to show patience
> and compassion in these trying times.
>
> I'd like to thank Sven for volunteering for the post and wish him the
> best of luck, I'm sure that he'll do a great job.
>
> So please join me in welcoming Sven Vogel as the new Apache CloudStack
> VP and PMC Chair !
>

On Thu, 19 Mar 2020 at 09:34, Paul Angus  wrote:

> Hi Everyone,
>
> It gives me great pleasure to announce that ASF board last night
> accepted our PMC's nomination of Sven Vogel as the next VP of the
> project.
>
> As I hand over the reins, I would like to thank everyone for the
> support I've received over the past year. It looks like being a very
> difficult year ahead for the world in general, and I wish everyone
> good luck in navigating it and urge everyone to try to show patience
> and compassion in these trying times.
>
> I'd like to thank Sven for volunteering for the post and wish him the
> best of luck, I'm sure that he'll do a great job.
>
> So please join me in welcoming Sven Vogel as the new Apache CloudStack
> VP and PMC Chair !
>


[GitHub] [cloudstack-primate] vladimirpetrov opened a new issue #243: [BUG] 'Create SSH Key Pair' differences

2020-03-19 Thread GitBox
vladimirpetrov opened a new issue #243: [BUG] 'Create SSH Key Pair' differences
URL: https://github.com/apache/cloudstack-primate/issues/243
 
 
   **Describe the bug**
   The dialogs for 'Create SSH Key Pair' are different in Primate and the old 
UI.
   
   **To Reproduce**
   Steps to reproduce the behavior:
   1. Go to 'Compute > SSH Key Pairs' and click the 'Create SSH Key Pair' icon. 
Look at the dialog.
   
   **Expected behavior**
   The dialog in Primate UI must be the same as in the old UI.
   
   **Screenshots**
   Primate UI:
   
![image](https://user-images.githubusercontent.com/12384665/77072326-3036f200-69f6-11ea-993c-5884d90f9924.png)
   
   Old UI:
   
![image](https://user-images.githubusercontent.com/12384665/77072375-40e76800-69f6-11ea-8cf3-0c0d5ffd81f5.png)
   
   **Desktop (please complete the following information):**
- OS: Ubuntu 18.04 LTS
- Browser: Chrome
- Version: 80.0.3987.132 (Official Build) (64-bit)
   
   **Additional context**
   None
   


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-primate] vladimirpetrov opened a new issue #244: [BUG] Normal user: the whole Offerings section should not be visible

2020-03-19 Thread GitBox
vladimirpetrov opened a new issue #244: [BUG] Normal user: the whole Offerings 
section should not be visible
URL: https://github.com/apache/cloudstack-primate/issues/244
 
 
   **Describe the bug**
   The 'Offerings' section is visible, but mostly unusable, due to missing 
permissions. 
   
   **To Reproduce**
   Steps to reproduce the behavior:
   1. Go to 'Offerings', try some of the sub-sections.
   
   **Expected behavior**
   The whole 'Offerings' section must be hidden, like in the old UI.
   
   **Screenshots**
   
![image](https://user-images.githubusercontent.com/12384665/77084406-9a0bc780-6a07-11ea-9daf-b00f350a28ec.png)
   
   **Desktop (please complete the following information):**
- OS: Ubuntu 18.04 LTS
- Browser: Chrome
- Version: 80.0.3987.132 (Official Build) (64-bit)
   
   **Additional context**
   None.
   


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: [ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven Vogel

2020-03-19 Thread Daan Hoogland
welcome Sven and thank you Paul, may we all overcome and prosper!

On Thu, Mar 19, 2020 at 9:34 AM Paul Angus  wrote:

> Hi Everyone,
>
> It gives me great pleasure to announce that ASF board last night
> accepted our PMC's nomination of Sven Vogel as the next VP of the
> project.
>
> As I hand over the reins, I would like to thank everyone for the
> support I've received over the past year. It looks like being a very
> difficult year ahead for the world in general, and I wish everyone
> good luck in navigating it and urge everyone to try to show patience
> and compassion in these trying times.
>
> I'd like to thank Sven for volunteering for the post and wish him the
> best of luck, I'm sure that he'll do a great job.
>
> So please join me in welcoming Sven Vogel as the new Apache CloudStack
> VP and PMC Chair !
>


-- 
Daan


[GitHub] [cloudstack-primate] vladimirpetrov opened a new issue #245: [BUG] Normal user: non-working links (insufficient rights)

2020-03-19 Thread GitBox
vladimirpetrov opened a new issue #245: [BUG] Normal user: non-working links 
(insufficient rights)
URL: https://github.com/apache/cloudstack-primate/issues/245
 
 
   **Describe the bug**
   The following links could generate (if the normal user lacks the required 
permissions) a 404 (not found) or 500 (Internal server error) errors - 
template, zone, host, domain, account, compute offering.
   
   **To Reproduce**
   Steps to reproduce the behavior:
   1. Log in as normal user, go to 'Network > Guest networks' and click on a 
network. Then try the 'Zone' and 'Domain' links - they returns '404' (Not 
found) error.
   
   **Expected behavior**
   All links should work or be hidden (if the permissions are insufficient).
   
   **Screenshots**
   None
   
   **Desktop (please complete the following information):**
- OS: Ubuntu 18.04 LTS
- Browser: Chrome
- Version: 80.0.3987.132 (Official Build) (64-bit)
   
   **Additional context**
   Affected areas:
   > Instances
   - compute offering - 404
   - template - 404
   - host - 404
   - zone - 404
   - domain - 404
   
   > Instance groups
   - domain - 404
   
   > SSH Key Pairs
   - domain - 404
   
   > Affinity groups
   - domain - 404
   
   > Storage > Volumes
   - compute offering - 404
   - zone - 404
   - domain - 404
   
   > Storage > Snapshots
   - zone - 404
   - domain - 404
   
   > Storage > VM Snapshots
   - zone - 404
   - domain - 404
   
   > Network - Guest networks
   - zone - 404
   - domain - 404
   
   > Network - VPC
   - zone - 404
   - domain - 404
   
   > Network - Security groups
   - domain - 404
   
   > Network - Public IP Addresses
   - zone - 404
   - domain - 404
   
   > Network - VPN Users
   - domain - 404
   
   > Images > Templates - selected
   - Zone - 404
   - account - 500
   - domain - 404
   
   > Images > ISOs - selected
   - Zone 404
   - account - 500
   - domain - 404
   
   > Projects
   - domain - 404
   
   > Identify and access
   - domain - 404
   
   > Quota
   - domain - 404
   


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: [ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven Vogel

2020-03-19 Thread Andrija Panic
Cheers Sven!

On Thu, 19 Mar 2020 at 16:39, Daan Hoogland  wrote:

> welcome Sven and thank you Paul, may we all overcome and prosper!
>
> On Thu, Mar 19, 2020 at 9:34 AM Paul Angus  wrote:
>
> > Hi Everyone,
> >
> > It gives me great pleasure to announce that ASF board last night
> > accepted our PMC's nomination of Sven Vogel as the next VP of the
> > project.
> >
> > As I hand over the reins, I would like to thank everyone for the
> > support I've received over the past year. It looks like being a very
> > difficult year ahead for the world in general, and I wish everyone
> > good luck in navigating it and urge everyone to try to show patience
> > and compassion in these trying times.
> >
> > I'd like to thank Sven for volunteering for the post and wish him the
> > best of luck, I'm sure that he'll do a great job.
> >
> > So please join me in welcoming Sven Vogel as the new Apache CloudStack
> > VP and PMC Chair !
> >
>
>
> --
> Daan
>


-- 

Andrija Panić


Re: [ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven Vogel

2020-03-19 Thread Rohit Yadav
Good work Paul and thank you for your service!

Congratulations Sven!

Regards.


Regards,
Rohit Yadav

From: Wei ZHOU 
Sent: Thursday, March 19, 2020 5:43:49 PM
To: dev@cloudstack.apache.org 
Subject: [ANNOUNCE] Next PMC Chair & VP Apache CloudStack Project - Sven Vogel

Congratulations Sven !

Thanks for your nice work Paul



rohit.ya...@shapeblue.com 
www.shapeblue.com
3 London Bridge Street,  3rd floor, News Building, London  SE1 9SGUK
@shapeblue
  
 

On Thu, 19 Mar 2020 at 09:34, Paul Angus  wrote:

> Hi Everyone,
>
> It gives me great pleasure to announce that ASF board last night
> accepted our PMC's nomination of Sven Vogel as the next VP of the
> project.
>
> As I hand over the reins, I would like to thank everyone for the
> support I've received over the past year. It looks like being a very
> difficult year ahead for the world in general, and I wish everyone
> good luck in navigating it and urge everyone to try to show patience
> and compassion in these trying times.
>
> I'd like to thank Sven for volunteering for the post and wish him the
> best of luck, I'm sure that he'll do a great job.
>
> So please join me in welcoming Sven Vogel as the new Apache CloudStack
> VP and PMC Chair !
>

On Thu, 19 Mar 2020 at 09:34, Paul Angus  wrote:

> Hi Everyone,
>
> It gives me great pleasure to announce that ASF board last night
> accepted our PMC's nomination of Sven Vogel as the next VP of the
> project.
>
> As I hand over the reins, I would like to thank everyone for the
> support I've received over the past year. It looks like being a very
> difficult year ahead for the world in general, and I wish everyone
> good luck in navigating it and urge everyone to try to show patience
> and compassion in these trying times.
>
> I'd like to thank Sven for volunteering for the post and wish him the
> best of luck, I'm sure that he'll do a great job.
>
> So please join me in welcoming Sven Vogel as the new Apache CloudStack
> VP and PMC Chair !
>


[GitHub] [cloudstack-primate] utchoang commented on issue #167: [WIP] Zone wizard

2020-03-19 Thread GitBox
utchoang commented on issue #167: [WIP] Zone wizard
URL: 
https://github.com/apache/cloudstack-primate/pull/167#issuecomment-601503464
 
 
   @shwstppr After checking the old UI, I found that the action enabledZone is 
missing. Due to the use of my test environment, I have not been able to proceed 
to that step. Could you please show me when enabledZone would be called?


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-primate] utchoang opened a new pull request #246: Missing functionality - Storage > Backups

2020-03-19 Thread GitBox
utchoang opened a new pull request #246: Missing functionality - Storage > 
Backups
URL: https://github.com/apache/cloudstack-primate/pull/246
 
 
   Fixes https://github.com/apache/cloudstack-primate/issues/215


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-primate] utchoang commented on issue #246: Missing functionality - Storage > Backups

2020-03-19 Thread GitBox
utchoang commented on issue #246: Missing functionality - Storage > Backups
URL: 
https://github.com/apache/cloudstack-primate/pull/246#issuecomment-601550021
 
 
   @rhtyd cc @svenvogel 
   I've completed fix. Please review!
   
![image](https://user-images.githubusercontent.com/13766648/77140137-3c30bb80-6aab-11ea-94e5-fec6f179ba28.png)
   
![image](https://user-images.githubusercontent.com/13766648/77140168-579bc680-6aab-11ea-966d-e4a9fe7b3a42.png)
   


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-primate] shwstppr commented on issue #167: [WIP] Zone wizard

2020-03-19 Thread GitBox
shwstppr commented on issue #167: [WIP] Zone wizard
URL: 
https://github.com/apache/cloudstack-primate/pull/167#issuecomment-601560540
 
 
   @utchoang Old UI shows a confirmation dialog for enabling the zone once zone 
creation is complete. Code can be seen here, 
https://github.com/apache/cloudstack/blob/master/ui/scripts/ui-custom/zoneWizard.js#L1056-L1064
   UI looks like this,
   ![Screenshot from 2020-03-20 
12-25-18](https://user-images.githubusercontent.com/153340/77142518-5ae08380-6aa6-11ea-9a12-ab3ee0a9d813.png)
   


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