[GitHub] [cloudstack-primate] rhtyd closed issue #490: [BUG] Create VM Form - root disk size dialog is misleading

2020-07-08 Thread GitBox


rhtyd closed issue #490:
URL: https://github.com/apache/cloudstack-primate/issues/490


   



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




[GitHub] [cloudstack-primate] rhtyd closed issue #491: [BUG] The Create Instance wizard should have an 'Advanced section' to make requirements clear

2020-07-08 Thread GitBox


rhtyd closed issue #491:
URL: https://github.com/apache/cloudstack-primate/issues/491


   



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




[GitHub] [cloudstack-primate] rhtyd merged pull request #499: vm: Simplifying Deploy VM Wizard

2020-07-08 Thread GitBox


rhtyd merged pull request #499:
URL: https://github.com/apache/cloudstack-primate/pull/499


   



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




[GitHub] [cloudstack-primate] rhtyd closed issue #511: User not allowed to delete its own isos and templates, add/change settings for project VMs

2020-07-08 Thread GitBox


rhtyd closed issue #511:
URL: https://github.com/apache/cloudstack-primate/issues/511


   



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




[GitHub] [cloudstack-primate] rhtyd commented on a change in pull request #517: Allows viewing delete/copy iso/template buttons for non ready resources and enables settings

2020-07-08 Thread GitBox


rhtyd commented on a change in pull request #517:
URL: https://github.com/apache/cloudstack-primate/pull/517#discussion_r451325926



##
File path: src/components/view/DetailSettings.vue
##
@@ -173,7 +173,8 @@ export default {
 },
 isAdminOrOwner () {
   return ['Admin'].includes(this.$store.getters.userInfo.roletype) ||
-(this.resource.domainid === this.$store.getters.userInfo.domainid && 
this.resource.account === this.$store.getters.userInfo.account)
+(this.resource.domainid === this.$store.getters.userInfo.domainid && 
this.resource.account === this.$store.getters.userInfo.account) ||
+this.resource.project && this.resource.project === 
this.$store.getters.project.name

Review comment:
   @Pearl1594 should the check be on projectid instead?





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




[GitHub] [cloudstack-primate] Pearl1594 commented on pull request #517: Allows viewing delete/copy iso/template buttons for non ready resources and enables settings

2020-07-08 Thread GitBox


Pearl1594 commented on pull request #517:
URL: 
https://github.com/apache/cloudstack-primate/pull/517#issuecomment-655334577







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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #517: Allows viewing delete/copy iso/template buttons for non ready resources and enables settings

2020-07-08 Thread GitBox


blueorangutan commented on pull request #517:
URL: 
https://github.com/apache/cloudstack-primate/pull/517#issuecomment-655335111


   @Pearl1594 a Jenkins job has been kicked to build primate packages. I'll 
keep you posted as I make progress.



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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #517: Allows viewing delete/copy iso/template buttons for non ready resources and enables settings

2020-07-08 Thread GitBox


blueorangutan commented on pull request #517:
URL: 
https://github.com/apache/cloudstack-primate/pull/517#issuecomment-655338733


   Packaging result: :heavy_check_mark:centos :heavy_check_mark:debian 
:heavy_check_mark:archive.
   QA: http://primate-qa.cloudstack.cloud:8080/client/pr/517 (JID-2256)



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




[GitHub] [cloudstack-primate] rhtyd merged pull request #517: Allows viewing delete/copy iso/template buttons for non ready resources and enables settings

2020-07-08 Thread GitBox


rhtyd merged pull request #517:
URL: https://github.com/apache/cloudstack-primate/pull/517


   



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




[GitHub] [cloudstack-primate] rhtyd commented on pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


rhtyd commented on pull request #382:
URL: 
https://github.com/apache/cloudstack-primate/pull/382#issuecomment-655343258


   FYI @borisstoyanov @vladimirpetrov I'm merging due to dependency issues for 
other fixes Pearl has included in this PR; Pearl may send another PR if more 
issues are discovered during testing for the new feature. We expect this to not 
break env which don't have the new project-roles feature.



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




[GitHub] [cloudstack-primate] rhtyd commented on a change in pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


rhtyd commented on a change in pull request #382:
URL: https://github.com/apache/cloudstack-primate/pull/382#discussion_r451341908



##
File path: src/components/view/DetailsTab.vue
##
@@ -33,6 +33,9 @@
 {{ 
volume.type }} - {{ volume.path }} ({{ parseFloat(volume.size / 
(1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
   
 
+
+  {{ fetchProjectAdmins() }}

Review comment:
   This line could cause (needs checking I'm not sure) the API to be called 
twice





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




[GitHub] [cloudstack-primate] rhtyd commented on a change in pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


rhtyd commented on a change in pull request #382:
URL: https://github.com/apache/cloudstack-primate/pull/382#discussion_r451341671



##
File path: src/components/view/DetailsTab.vue
##
@@ -33,6 +33,9 @@
 {{ 
volume.type }} - {{ volume.path }} ({{ parseFloat(volume.size / 
(1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
   
 
+

Review comment:
   @Pearl1594 is this necessary now, if there's a new tab that has the 
details?





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




[GitHub] [cloudstack-primate] rhtyd removed a comment on pull request #436: feature: template ovf properties

2020-07-08 Thread GitBox


rhtyd removed a comment on pull request #436:
URL: 
https://github.com/apache/cloudstack-primate/pull/436#issuecomment-655316179


   With @Pearl1594 



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




[GitHub] [cloudstack-primate] rhtyd closed pull request #320: Explore Test Automation

2020-07-08 Thread GitBox


rhtyd closed pull request #320:
URL: https://github.com/apache/cloudstack-primate/pull/320


   



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




[GitHub] [cloudstack-primate] rhtyd commented on pull request #436: feature: template ovf properties

2020-07-08 Thread GitBox


rhtyd commented on pull request #436:
URL: 
https://github.com/apache/cloudstack-primate/pull/436#issuecomment-655348920


   Update - discussed with @DaanHoogland I'll review the backend PR and I'll 
make further changes in this PR



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




[GitHub] [cloudstack-primate] Pearl1594 commented on a change in pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


Pearl1594 commented on a change in pull request #382:
URL: https://github.com/apache/cloudstack-primate/pull/382#discussion_r451347430



##
File path: src/components/view/DetailsTab.vue
##
@@ -33,6 +33,9 @@
 {{ 
volume.type }} - {{ volume.path }} ({{ parseFloat(volume.size / 
(1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
   
 
+
+  {{ fetchProjectAdmins() }}

Review comment:
   As part of fetchProjectAdmins I'm not calling the listProjectAccounts 
API again, but rather just filters the resource parameters





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




[GitHub] [cloudstack-primate] Pearl1594 commented on a change in pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


Pearl1594 commented on a change in pull request #382:
URL: https://github.com/apache/cloudstack-primate/pull/382#discussion_r451348162



##
File path: src/components/view/DetailsTab.vue
##
@@ -33,6 +33,9 @@
 {{ 
volume.type }} - {{ volume.path }} ({{ parseFloat(volume.size / 
(1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
   
 
+

Review comment:
   This is necessary in case there are multiple project admins. So as to 
have the detail view also provide a comma-separated list as done in the list 
view





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




[GitHub] [cloudstack-primate] Pearl1594 commented on a change in pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


Pearl1594 commented on a change in pull request #382:
URL: https://github.com/apache/cloudstack-primate/pull/382#discussion_r451347430



##
File path: src/components/view/DetailsTab.vue
##
@@ -33,6 +33,9 @@
 {{ 
volume.type }} - {{ volume.path }} ({{ parseFloat(volume.size / 
(1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
   
 
+
+  {{ fetchProjectAdmins() }}

Review comment:
   As part of fetchProjectAdmins I'm not calling the listProjectAccounts 
API again, but rather just filtering the resource parameters based on the role





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




[GitHub] [cloudstack-primate] Pearl1594 commented on a change in pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


Pearl1594 commented on a change in pull request #382:
URL: https://github.com/apache/cloudstack-primate/pull/382#discussion_r451347430



##
File path: src/components/view/DetailsTab.vue
##
@@ -33,6 +33,9 @@
 {{ 
volume.type }} - {{ volume.path }} ({{ parseFloat(volume.size / 
(1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
   
 
+
+  {{ fetchProjectAdmins() }}

Review comment:
   As part of fetchProjectAdmins I'm not calling the listProjectAccounts 
API again, but rather just filtering the resource parameters





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




Re: mysql view changes during upgrade

2020-07-08 Thread Rohit Yadav
+1

Generally, we do encourage PR authors to use idempotent SQL changes including 
dropping a view instead of altering it.
Perhaps the specific issue of altering view slipped past our code review, I can 
see it in:

engine/schema/src/main/resources/META-INF/db/schema-410to420.sql:ALTER VIEW 
`cloud`.`user_view` AS
engine/schema/src/main/resources/META-INF/db/schema-41120to41200.sql:ALTER VIEW 
`cloud`.`disk_offering_view` AS
engine/schema/src/main/resources/META-INF/db/schema-41120to41200.sql:ALTER VIEW 
`cloud`.`service_offering_view` AS
engine/schema/src/main/resources/META-INF/db/schema-4930to41000.sql:-- Alter 
view storage_pool_view
engine/schema/src/main/resources/META-INF/db/schema-4930to41000.sql:-- Alter 
view image_store_view


Regards.


From: Marcus 
Sent: Tuesday, July 7, 2020 20:58
To: dev@cloudstack.apache.org 
Subject: mysql view changes during upgrade

I just wanted to drop a line to the community - perhaps this has been
addressed already and I'm just disorganized.

I see that in the 4.12 SQL upgrade scripts we use "ALTER VIEW" rather than
the previous pattern of "DROP VIEW IF EXISTS" + "CREATE".

The problem I've seen with ALTER VIEW is that in order to alter view, the
SQL may need to be run by the same user that initially created the view.
This can cause issues for clusters or for DBs that have been migrated.

Consider an installation that has started on a local MySQL instance, the
view may have DEFINER=`cloud`@`localhost` - if the database is migrated off
to a remote MySQL server, the user cloudstack is using may now be seen as
`cloud`@`server1` - at which point ALTER VIEW is no longer going to work.
DROP works, and CREATE will update the view to DEFINER=`cloud`@`server1`.

I guess this is my plea to the community to think about not using ALTER
VIEW in the future for SQL upgrades :-)

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



[GitHub] [cloudstack-primate] rhtyd commented on a change in pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


rhtyd commented on a change in pull request #382:
URL: https://github.com/apache/cloudstack-primate/pull/382#discussion_r451360014



##
File path: src/components/view/DetailsTab.vue
##
@@ -33,6 +33,9 @@
 {{ 
volume.type }} - {{ volume.path }} ({{ parseFloat(volume.size / 
(1024.0 * 1024.0 * 1024.0)).toFixed(1) }} GB)
   
 
+
+  {{ fetchProjectAdmins() }}

Review comment:
   Alright, let's merge this then.





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




[GitHub] [cloudstack-primate] rhtyd opened a new issue #518: [TESTPLAN] Full Test Plan for 1.0/GA for Root Admin, XenServer71, ACS 4.14/latest

2020-07-08 Thread GitBox


rhtyd opened a new issue #518:
URL: https://github.com/apache/cloudstack-primate/issues/518


   Note: for User role test exclude after Account/User feature, for DomainAdmin 
role exclude after Infrastructure (except for Offerings)
   
   **Common**
   - [ ] Project selector
   - [ ] Language selector
   - [ ] Notifications / clear notifications
   - [ ] Paginations
   - [ ] Profile
   - [ ] Help
   - [ ] Logout
   - [ ] Context-sensitive help
   
   **Dashboard**
   - [ ] Fetch latest
   - [ ] View hosts in alert state
   - [ ] View alerts
   - [ ] View events
   
   **Compute > Instances**
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   - [ ] Filter by
   - [ ] Create new instance
   
   **Compute > Kubernetes**
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   - [ ] Filter by
   - [ ] Add Kubernetes cluster
   - [ ] Start/stop a Kubernetes cluster
   - [ ] Scale Kubernetes cluster
   - [ ] Upgrade Kubernetes cluster
   - [ ] Delete Kubernetes cluster
   
   **Compute > Instances > selected instance**
   - [ ] View console
   - [ ] Reboot instance
   - [ ] Update instance
   - [ ] Start/Stop instance
   - [ ] Reinstall instance
   - [ ] Take snapshot
   - [ ] Assign VM to backup offering
   - [ ] Attach ISO
   - [ ] Scale VM
   - [ ] Migrate instance to another host
   - [ ] Change affinity
   - [ ] Change service offering
   - [ ] Reset Instance Password
   - [ ] Assign Instance to Another Account
   - [ ] Network adapters
   - [ ]- Add network to VM
   - [ ]- Set default NIC
   - [ ]- Add/delete secondary IP address
   - [ ]- Delete VM network
   - [ ] Settings
   - [ ]- Add setting
   - [ ]- Update setting
   - [ ]- Delete setting
   - [ ] Add / delete comment
   - [ ] Add / delete tags
   - [ ] Links
   
   **Compute > Instance groups**
   - [ ] Search
   - [ ] Sort
   - [ ] Links
   - [ ] New instance group
   
   **Compute > Instance groups > selected instance group**
   - [ ] Links
   - [ ] Update instance group
   - [ ] Delete instance group
   
   **Compute > SSH Key Pairs**
   - [ ] Search
   - [ ] Sorting
   - [ ] Links
   - [ ] New SSH key pair
   
   **Compute > SSH Key Pairs > selected SSH key pair**
   - [ ] Links
   - [ ] Delete SSH key pair
   
   **Compute > Affinity Groups**
   - [ ] Search
   - [ ] Sort
   - [ ] Links
   - [ ] New affinity group
   
   **Compute > Affinity Groups > selected affinity group**
   - [ ] Links
   - [ ] Delete affinity group
   
   **Storage > Volumes**
   - [ ] Basic earch
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   - [ ] Create volume
   - [ ] Upload local volume
   - [ ] Upload volume from URL
   
   **Storage > Volumes > selected volume**
   - [ ] Detach volume
   - [ ] Take snapshot
   - [ ] Recurring snapshot
   - [ ] Resize volume
   - [ ] Migrate volume
   - [ ] Download volume
   - [ ] Delete volume
   - [ ] Links
   - [ ] Add/delete tags
   
   **Storage > Snapshots**
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   
   **Storage > Snapshots > selected snapshot**
   - [ ] Links
   - [ ] Add/delete tags
   - [ ] Create template
   - [ ] Create volume
   - [ ] Revert snapshot
   - [ ] Delete snapshot
   
   **Storage > VM Snapshots**
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   
   **Storage > VM Snapshots > selected snapshot**
   - [ ] Links
   - [ ] Add/delete tags
   - [ ] Revert VM snapshot
   - [ ] Delete VM snapshot
   
   **Storage > Backups**
   - [ ] Import offering
   - [ ] Configure backup provider (Veeam)
   - [ ] Create backup offering
   - [ ] Assign VM to backup offering
   - [ ] Revert to backup
   - [ ] Delete backup
   
   **Network > Guest networks**
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   - [ ] Add network
   
   **Network > Guest networks > selected network**
   - [ ] Links
   - [ ] Add/delete tags
   - [ ] Update network
   - [ ] Restart network
   - [ ] Delete network
   - [ ] Acquire new IP (only for isolated networks)
   - [ ] Replace ACL list(only for isolated networks)
   - [ ] Delete public IP address (only for isolated networks)
   - [ ] Add/delete egress rule (only for isolated networks)
   - [ ] Add/delete egress tags (only for isolated networks)
   
   **Network > VPC **
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   - [ ] Add VPC
   
   **Network > VPC > selected VPC**
   - [ ] Links
   - [ ] Update VPC
   - [ ] Restart VPC
   - [ ] Delete VPC
   - [ ] Networks
   - [ ] - Links
   - [ ] - Paginations
   - [ ] - Add network
   - [ ] - Add internal LB
   - [ ] Public IP addresses
   - [ ] - Links
   - [ ] - Pagination
   - [ ] - Select tier
   - [ ] - Acquire new IP
   - [ ] - Delete IP address
   - [ ] Network ACL Lists
   - [ ] - Links
   - [ ] - Pagination
   - [ ] - Add network ACL list
   - [ ] Private Gateways
   - [ ] - Links
   - [ ] - Pagination
   

[GitHub] [cloudstack-primate] alexandremattioli opened a new issue #519: [TESTPLAN] Full Test Plan for 1.0/GA for USER, ESXi 67-14320388, ACS 4.14/latest

2020-07-08 Thread GitBox


alexandremattioli opened a new issue #519:
URL: https://github.com/apache/cloudstack-primate/issues/519


   Note: for User role test exclude after Account/User feature, for DomainAdmin 
role exclude after Infrastructure (except for Offerings)
   
   **Common**
   - [ ] Project selector
   - [ ] Language selector
   - [ ] Notifications / clear notifications
   - [ ] Paginations
   - [ ] Profile
   - [ ] Help
   - [ ] Logout
   - [ ] Context-sensitive help
   
   **Dashboard**
   - [ ] Fetch latest
   - [ ] View hosts in alert state
   - [ ] View alerts
   - [ ] View events
   
   **Compute > Instances**
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   - [ ] Filter by
   - [ ] Create new instance
   
   **Compute > Kubernetes**
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   - [ ] Filter by
   - [ ] Add Kubernetes cluster
   - [ ] Start/stop a Kubernetes cluster
   - [ ] Scale Kubernetes cluster
   - [ ] Upgrade Kubernetes cluster
   - [ ] Delete Kubernetes cluster
   
   **Compute > Instances > selected instance**
   - [ ] View console
   - [ ] Reboot instance
   - [ ] Update instance
   - [ ] Start/Stop instance
   - [ ] Reinstall instance
   - [ ] Take snapshot
   - [ ] Assign VM to backup offering
   - [ ] Attach ISO
   - [ ] Scale VM
   - [ ] Migrate instance to another host
   - [ ] Change affinity
   - [ ] Change service offering
   - [ ] Reset Instance Password
   - [ ] Assign Instance to Another Account
   - [ ] Network adapters
   - [ ]- Add network to VM
   - [ ]- Set default NIC
   - [ ]- Add/delete secondary IP address
   - [ ]- Delete VM network
   - [ ] Settings
   - [ ]- Add setting
   - [ ]- Update setting
   - [ ]- Delete setting
   - [ ] Add / delete comment
   - [ ] Add / delete tags
   - [ ] Links
   
   **Compute > Instance groups**
   - [ ] Search
   - [ ] Sort
   - [ ] Links
   - [ ] New instance group
   
   **Compute > Instance groups > selected instance group**
   - [ ] Links
   - [ ] Update instance group
   - [ ] Delete instance group
   
   **Compute > SSH Key Pairs**
   - [ ] Search
   - [ ] Sorting
   - [ ] Links
   - [ ] New SSH key pair
   
   **Compute > SSH Key Pairs > selected SSH key pair**
   - [ ] Links
   - [ ] Delete SSH key pair
   
   **Compute > Affinity Groups**
   - [ ] Search
   - [ ] Sort
   - [ ] Links
   - [ ] New affinity group
   
   **Compute > Affinity Groups > selected affinity group**
   - [ ] Links
   - [ ] Delete affinity group
   
   **Storage > Volumes**
   - [ ] Basic earch
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   - [ ] Create volume
   - [ ] Upload local volume
   - [ ] Upload volume from URL
   
   **Storage > Volumes > selected volume**
   - [ ] Detach volume
   - [ ] Take snapshot
   - [ ] Recurring snapshot
   - [ ] Resize volume
   - [ ] Migrate volume
   - [ ] Download volume
   - [ ] Delete volume
   - [ ] Links
   - [ ] Add/delete tags
   
   **Storage > Snapshots**
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   
   **Storage > Snapshots > selected snapshot**
   - [ ] Links
   - [ ] Add/delete tags
   - [ ] Create template
   - [ ] Create volume
   - [ ] Revert snapshot
   - [ ] Delete snapshot
   
   **Storage > VM Snapshots**
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   
   **Storage > VM Snapshots > selected snapshot**
   - [ ] Links
   - [ ] Add/delete tags
   - [ ] Revert VM snapshot
   - [ ] Delete VM snapshot
   
   **Storage > Backups**
   - [ ] Import offering
   - [ ] Configure backup provider (Veeam)
   - [ ] Create backup offering
   - [ ] Assign VM to backup offering
   - [ ] Revert to backup
   - [ ] Delete backup
   
   **Network > Guest networks**
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   - [ ] Add network
   
   **Network > Guest networks > selected network**
   - [ ] Links
   - [ ] Add/delete tags
   - [ ] Update network
   - [ ] Restart network
   - [ ] Delete network
   - [ ] Acquire new IP (only for isolated networks)
   - [ ] Replace ACL list(only for isolated networks)
   - [ ] Delete public IP address (only for isolated networks)
   - [ ] Add/delete egress rule (only for isolated networks)
   - [ ] Add/delete egress tags (only for isolated networks)
   
   **Network > VPC **
   - [ ] Basic search
   - [ ] Extended search
   - [ ] Sort
   - [ ] Links
   - [ ] Add VPC
   
   **Network > VPC > selected VPC**
   - [ ] Links
   - [ ] Update VPC
   - [ ] Restart VPC
   - [ ] Delete VPC
   - [ ] Networks
   - [ ] - Links
   - [ ] - Paginations
   - [ ] - Add network
   - [ ] - Add internal LB
   - [ ] Public IP addresses
   - [ ] - Links
   - [ ] - Pagination
   - [ ] - Select tier
   - [ ] - Acquire new IP
   - [ ] - Delete IP address
   - [ ] Network ACL Lists
   - [ ] - Links
   - [ ] - Pagination
   - [ ] - Add network ACL list
   - [ ] Private Gateways
   - [ ] - Links
   - [ ] - Pa

[GitHub] [cloudstack-primate] rhtyd closed issue #518: [TESTPLAN] Full Test Plan for 1.0/GA for Root Admin, XenServer71, ACS 4.14/latest

2020-07-08 Thread GitBox


rhtyd closed issue #518:
URL: https://github.com/apache/cloudstack-primate/issues/518


   



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




[GitHub] [cloudstack-primate] borisstoyanov commented on pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


borisstoyanov commented on pull request #382:
URL: 
https://github.com/apache/cloudstack-primate/pull/382#issuecomment-655473791


   @blueorangutan package
   



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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


blueorangutan commented on pull request #382:
URL: 
https://github.com/apache/cloudstack-primate/pull/382#issuecomment-655474414


   @borisstoyanov a Jenkins job has been kicked to build primate packages. I'll 
keep you posted as I make progress.



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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


blueorangutan commented on pull request #382:
URL: 
https://github.com/apache/cloudstack-primate/pull/382#issuecomment-655478514


   Packaging result: :heavy_check_mark:centos :heavy_check_mark:debian 
:heavy_check_mark:archive.
   QA: http://primate-qa.cloudstack.cloud:8080/client/pr/382 (JID-2259)



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




[GitHub] [cloudstack-primate] Pearl1594 commented on pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


Pearl1594 commented on pull request #382:
URL: 
https://github.com/apache/cloudstack-primate/pull/382#issuecomment-655531029


   @blueorangutan package



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




[GitHub] [cloudstack-primate] Pearl1594 commented on pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


Pearl1594 commented on pull request #382:
URL: 
https://github.com/apache/cloudstack-primate/pull/382#issuecomment-655886173


   @blueorangutan package



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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


blueorangutan commented on pull request #382:
URL: 
https://github.com/apache/cloudstack-primate/pull/382#issuecomment-655886328


   @Pearl1594 a Jenkins job has been kicked to build primate packages. I'll 
keep you posted as I make progress.



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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #382: Enabling Role based Users in Projects

2020-07-08 Thread GitBox


blueorangutan commented on pull request #382:
URL: 
https://github.com/apache/cloudstack-primate/pull/382#issuecomment-655888222


   Packaging result: :heavy_check_mark:centos :heavy_check_mark:debian 
:heavy_check_mark:archive.
   QA: http://primate-qa.cloudstack.cloud:8080/client/pr/382 (JID-2260)



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




[GitHub] [cloudstack-primate] davidjumani opened a new issue #520: [BUG] DeployVM Wizard does not properly search for templates

2020-07-08 Thread GitBox


davidjumani opened a new issue #520:
URL: https://github.com/apache/cloudstack-primate/issues/520


   **Describe the bug**
   In the deploy VM wizard, the search only searches the current selection of 
templates and does not query the backend
   
   **To Reproduce**
   Steps to reproduce the behavior:
   
   1. Log in as a User or an Admin
   2. Go to Create new VM
   3. Search for a template
   
   **Expected behavior**
   An api call with the keyword should 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




[GitHub] [cloudstack-primate] davidjumani commented on pull request #521: Adding search option to SettingsTab

2020-07-08 Thread GitBox


davidjumani commented on pull request #521:
URL: 
https://github.com/apache/cloudstack-primate/pull/521#issuecomment-655899310


   @blueorangutan package



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




[GitHub] [cloudstack-primate] davidjumani opened a new pull request #521: Adding search option to SettingsTab

2020-07-08 Thread GitBox


davidjumani opened a new pull request #521:
URL: https://github.com/apache/cloudstack-primate/pull/521


   Adds the option to search settings
   
   ![Screenshot from 2020-07-09 
10-23-39](https://user-images.githubusercontent.com/8244774/86998567-4c8db300-c1ce-11ea-95a7-e04b50d4178f.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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #521: Adding search option to SettingsTab

2020-07-08 Thread GitBox


blueorangutan commented on pull request #521:
URL: 
https://github.com/apache/cloudstack-primate/pull/521#issuecomment-655899411


   @davidjumani a Jenkins job has been kicked to build primate packages. I'll 
keep you posted as I make progress.



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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #521: Adding search option to SettingsTab

2020-07-08 Thread GitBox


blueorangutan commented on pull request #521:
URL: 
https://github.com/apache/cloudstack-primate/pull/521#issuecomment-655901901


   Packaging result: :heavy_check_mark:centos :heavy_check_mark:debian 
:heavy_check_mark:archive.
   QA: http://primate-qa.cloudstack.cloud:8080/client/pr/521 (JID-2261)



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




[GitHub] [cloudstack-primate] davidjumani opened a new pull request #522: dashboard: Adding state to redirect path of dashboard

2020-07-08 Thread GitBox


davidjumani opened a new pull request #522:
URL: https://github.com/apache/cloudstack-primate/pull/522


   Adds the appropriate filter to the running / stopped vm on the dashboard



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




[GitHub] [cloudstack-primate] davidjumani opened a new issue #523: [BUG] Search for 'vm' in hypervisor capabilities is broken

2020-07-08 Thread GitBox


davidjumani opened a new issue #523:
URL: https://github.com/apache/cloudstack-primate/issues/523


   **Describe the bug**
   When a user searches for 'vm' in hypervisor capabilities, it breaks 
(endlessly loads) and errors out in the console
   
   ![Screenshot from 2020-07-09 
11-13-56](https://user-images.githubusercontent.com/8244774/87001533-54048a80-c1d5-11ea-9bd5-f419d6935e25.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




[GitHub] [cloudstack-primate] davidjumani commented on issue #523: [BUG] Search for 'vm' in hypervisor capabilities is broken

2020-07-08 Thread GitBox


davidjumani commented on issue #523:
URL: 
https://github.com/apache/cloudstack-primate/issues/523#issuecomment-655915835


   Probably related to the backend since VMware has duplicate keys
   
   ```
   (qa) 🐱 > list hypervisorcapabilities keyword=vmware filter=hypervisor,id
   {
 "hypervisor": "VMware",
 "id": "11"
   },
   {
 "hypervisor": "VMware",
 "id": "12"
   },
   {
 "hypervisor": "VMware",
 "id": "0b7ad266-5fe0-11ea-9a56-1e006800018c"
   },
   {
 "hypervisor": "VMware",
 "id": "15eda318-5fe0-11ea-9a56-1e006800018c"
   }
   ```



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




[GitHub] [cloudstack-primate] davidjumani edited a comment on issue #523: [BUG] Search for 'vm' in hypervisor capabilities is broken

2020-07-08 Thread GitBox


davidjumani edited a comment on issue #523:
URL: 
https://github.com/apache/cloudstack-primate/issues/523#issuecomment-655915835


   Probably related to the backend since VMware has duplicate ids
   
   ```
   (qa) 🐱 > list hypervisorcapabilities keyword=vmware filter=hypervisor,id
   {
 "hypervisor": "VMware",
 "id": "11"
   },
   {
 "hypervisor": "VMware",
 "id": "12"
   },
   {
 "hypervisor": "VMware",
 "id": "0b7ad266-5fe0-11ea-9a56-1e006800018c"
   },
   {
 "hypervisor": "VMware",
 "id": "15eda318-5fe0-11ea-9a56-1e006800018c"
   }
   ```



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




[GitHub] [cloudstack-primate] davidjumani removed a comment on issue #523: [BUG] Search for 'vm' in hypervisor capabilities is broken

2020-07-08 Thread GitBox


davidjumani removed a comment on issue #523:
URL: 
https://github.com/apache/cloudstack-primate/issues/523#issuecomment-655915835


   Probably related to the backend since VMware has duplicate ids
   
   ```
   (qa) 🐱 > list hypervisorcapabilities keyword=vmware filter=hypervisor,id
   {
 "hypervisor": "VMware",
 "id": "11"
   },
   {
 "hypervisor": "VMware",
 "id": "12"
   },
   {
 "hypervisor": "VMware",
 "id": "0b7ad266-5fe0-11ea-9a56-1e006800018c"
   },
   {
 "hypervisor": "VMware",
 "id": "15eda318-5fe0-11ea-9a56-1e006800018c"
   }
   ```



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




[GitHub] [cloudstack-primate] davidjumani opened a new pull request #524: offerings: Removing tags for offerings

2020-07-08 Thread GitBox


davidjumani opened a new pull request #524:
URL: https://github.com/apache/cloudstack-primate/pull/524


   Removing tags from offerings as they do not support them



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




[GitHub] [cloudstack-primate] davidjumani commented on pull request #522: dashboard: Adding state to redirect path of dashboard

2020-07-08 Thread GitBox


davidjumani commented on pull request #522:
URL: 
https://github.com/apache/cloudstack-primate/pull/522#issuecomment-655923672


   @blueorangutan package



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




[GitHub] [cloudstack-primate] davidjumani commented on pull request #524: offerings: Removing tags for offerings

2020-07-08 Thread GitBox


davidjumani commented on pull request #524:
URL: 
https://github.com/apache/cloudstack-primate/pull/524#issuecomment-655923696


   @blueorangutan package



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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #524: offerings: Removing tags for offerings

2020-07-08 Thread GitBox


blueorangutan commented on pull request #524:
URL: 
https://github.com/apache/cloudstack-primate/pull/524#issuecomment-655924089


   @davidjumani a Jenkins job has been kicked to build primate packages. I'll 
keep you posted as I make progress.



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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #522: dashboard: Adding state to redirect path of dashboard

2020-07-08 Thread GitBox


blueorangutan commented on pull request #522:
URL: 
https://github.com/apache/cloudstack-primate/pull/522#issuecomment-655924178


   @davidjumani a Jenkins job has been kicked to build primate packages. I'll 
keep you posted as I make progress.



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




[GitHub] [cloudstack-primate] davidjumani commented on issue #523: [BUG] Search for 'vm' in hypervisor capabilities is broken

2020-07-08 Thread GitBox


davidjumani commented on issue #523:
URL: 
https://github.com/apache/cloudstack-primate/issues/523#issuecomment-655926821


   Extra logs :
   
   ![Screenshot from 2020-07-09 
11-52-07](https://user-images.githubusercontent.com/8244774/87004188-a85e3900-c1da-11ea-84bf-d1add1234bb8.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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #524: offerings: Removing tags for offerings

2020-07-08 Thread GitBox


blueorangutan commented on pull request #524:
URL: 
https://github.com/apache/cloudstack-primate/pull/524#issuecomment-655926893


   Packaging result: :heavy_check_mark:centos :heavy_check_mark:debian 
:heavy_check_mark:archive.
   QA: http://primate-qa.cloudstack.cloud:8080/client/pr/524 (JID-2262)



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




[GitHub] [cloudstack-primate] blueorangutan commented on pull request #522: dashboard: Adding state to redirect path of dashboard

2020-07-08 Thread GitBox


blueorangutan commented on pull request #522:
URL: 
https://github.com/apache/cloudstack-primate/pull/522#issuecomment-655926946


   Packaging result: :heavy_check_mark:centos :heavy_check_mark:debian 
:heavy_check_mark:archive.
   QA: http://primate-qa.cloudstack.cloud:8080/client/pr/522 (JID-2263)



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




[GitHub] [cloudstack-primate] davidjumani closed pull request #524: offerings: Removing tags for offerings

2020-07-08 Thread GitBox


davidjumani closed pull request #524:
URL: https://github.com/apache/cloudstack-primate/pull/524


   



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