[GitHub] [cloudstack] blueorangutan commented on pull request #6542: Updated log message and throw error when unable to update the secret in key file

2022-07-09 Thread GitBox


blueorangutan commented on PR #6542:
URL: https://github.com/apache/cloudstack/pull/6542#issuecomment-1179559746

   Trillian test result (tid-4468)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 38199 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr6542-t4468-kvm-centos7.zip
   Smoke tests completed. 98 look OK, 0 have errors
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6526: [HEALTH] 4.17 Health Check please don't merge this

2022-07-09 Thread GitBox


blueorangutan commented on PR #6526:
URL: https://github.com/apache/cloudstack/pull/6526#issuecomment-1179563505

   Trillian test result (tid-4465)
   Environment: xenserver-71 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 40938 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr6526-t4465-xenserver-71.zip
   Smoke tests completed. 98 look OK, 0 have errors
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud merged pull request #6542: Updated log message and throw error when unable to update the secret in key file

2022-07-09 Thread GitBox


rohityadavcloud merged PR #6542:
URL: https://github.com/apache/cloudstack/pull/6542


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[cloudstack] branch 4.17 updated: Updated log message and throw error when unable to update the secret key file (#6542)

2022-07-09 Thread rohit
This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch 4.17
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.17 by this push:
 new ab9a0fd69f Updated log message and throw error when unable to update 
the secret key file (#6542)
ab9a0fd69f is described below

commit ab9a0fd69f5af774dbed51d3827c3395224f0ec5
Author: Harikrishna 
AuthorDate: Sat Jul 9 21:21:11 2022 +0530

Updated log message and throw error when unable to update the secret key 
file (#6542)

This PR fixes issue #6232 to update the error message and throw the error 
when updating key file is failed. This helps to find out the proper reason for 
failure, mainly with umask.
---
 .../main/java/com/cloud/utils/crypt/EncryptionSecretKeyChanger.java | 2 +-
 setup/bindir/cloud-setup-databases.in   | 6 +-
 2 files changed, 6 insertions(+), 2 deletions(-)

diff --git 
a/framework/db/src/main/java/com/cloud/utils/crypt/EncryptionSecretKeyChanger.java
 
b/framework/db/src/main/java/com/cloud/utils/crypt/EncryptionSecretKeyChanger.java
index ae103ff34f..a958d4ada7 100644
--- 
a/framework/db/src/main/java/com/cloud/utils/crypt/EncryptionSecretKeyChanger.java
+++ 
b/framework/db/src/main/java/com/cloud/utils/crypt/EncryptionSecretKeyChanger.java
@@ -147,7 +147,7 @@ public class EncryptionSecretKeyChanger {
 {
 bwriter.write(newMSKey);
 } catch (IOException e) {
-System.out.println("Failed to write new secret to 
file. Please update the file manually");
+System.out.println(String.format("Please update the 
file %s manually. Failed to write new secret to file with error %s", keyFile, 
e.getMessage()));
 }
 }
 }
diff --git a/setup/bindir/cloud-setup-databases.in 
b/setup/bindir/cloud-setup-databases.in
index 37b696f9fc..0532613dd8 100755
--- a/setup/bindir/cloud-setup-databases.in
+++ b/setup/bindir/cloud-setup-databases.in
@@ -397,7 +397,11 @@ for example:
 
 def saveMgmtServerSecretKey():
 if self.encryptiontype == 'file':
-open(self.encryptionKeyFile, 'w').write(self.mgmtsecretkey)
+try:
+open(self.encryptionKeyFile, 'w').write(self.mgmtsecretkey)
+except IOError as e:
+msg = "Failed to save management server secret key file %s 
due to %s, also please check the default umask"%(self.encryptionKeyFile, 
e.strerror)
+self.errorAndExit(msg)
 
 def formatEncryptResult(value):
 return 'ENC(%s)'%value



[GitHub] [cloudstack] rohityadavcloud closed issue #6232: wrong file rights on key file doesn't generate proper error message

2022-07-09 Thread GitBox


rohityadavcloud closed issue #6232: wrong file rights on key file doesn't 
generate proper error message
URL: https://github.com/apache/cloudstack/issues/6232


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on issue #6232: wrong file rights on key file doesn't generate proper error message

2022-07-09 Thread GitBox


rohityadavcloud commented on issue #6232:
URL: https://github.com/apache/cloudstack/issues/6232#issuecomment-1179565101

   Fixed in https://github.com/apache/cloudstack/pull/6542


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on pull request #6540: Deprecated changeServiceForVirtualMachine API and replaced all the oc…

2022-07-09 Thread GitBox


rohityadavcloud commented on PR #6540:
URL: https://github.com/apache/cloudstack/pull/6540#issuecomment-1179565274

   @blueorangutan test centos7 vmware-67u3


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6540: Deprecated changeServiceForVirtualMachine API and replaced all the oc…

2022-07-09 Thread GitBox


blueorangutan commented on PR #6540:
URL: https://github.com/apache/cloudstack/pull/6540#issuecomment-1179565306

   @rohityadavcloud a Trillian-Jenkins test job (centos7 mgmt + vmware-67u3) 
has been kicked to run smoke tests


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6540: Deprecated changeServiceForVirtualMachine API and replaced all the oc…

2022-07-09 Thread GitBox


blueorangutan commented on PR #6540:
URL: https://github.com/apache/cloudstack/pull/6540#issuecomment-1179568132

   Trillian test result (tid-4464)
   Environment: vmware-65u2 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 43111 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr6540-t4464-vmware-65u2.zip
   Smoke tests completed. 97 look OK, 1 have errors
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_08_upgrade_kubernetes_ha_cluster | `Failure` | 728.87 | 
test_kubernetes_clusters.py
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on pull request #6526: [HEALTH] 4.17 Health Check please don't merge this

2022-07-09 Thread GitBox


rohityadavcloud commented on PR #6526:
URL: https://github.com/apache/cloudstack/pull/6526#issuecomment-1179569249

   
   @blueorangutan test matrix
   
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6526: [HEALTH] 4.17 Health Check please don't merge this

2022-07-09 Thread GitBox


blueorangutan commented on PR #6526:
URL: https://github.com/apache/cloudstack/pull/6526#issuecomment-1179569347

   @rohityadavcloud a Trillian-Jenkins matrix job (centos7 mgmt + xs71, centos7 
mgmt + vmware65, centos7 mgmt + kvmcentos7) has been kicked to run smoke tests


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud merged pull request #6540: Deprecated changeServiceForVirtualMachine API and replaced all the oc…

2022-07-09 Thread GitBox


rohityadavcloud merged PR #6540:
URL: https://github.com/apache/cloudstack/pull/6540


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[cloudstack] branch main updated: api: Deprecated changeServiceForVirtualMachine API and replaced all the occurences in the tests with scaleVirtualMachine (#6540)

2022-07-09 Thread rohit
This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/main by this push:
 new 65b0bcb069 api: Deprecated changeServiceForVirtualMachine API and 
replaced all the occurences in the tests with scaleVirtualMachine (#6540)
65b0bcb069 is described below

commit 65b0bcb06966ddb03f99b129ecbdeb66fbe95b54
Author: Harikrishna 
AuthorDate: Sat Jul 9 21:52:51 2022 +0530

api: Deprecated changeServiceForVirtualMachine API and replaced all the 
occurences in the tests with scaleVirtualMachine (#6540)
---
 .../cloudstack/api/command/admin/vm/ScaleVMCmdByAdmin.java |  2 +-
 .../api/command/admin/vm/UpgradeVMCmdByAdmin.java  |  9 +
 .../apache/cloudstack/api/command/user/vm/ScaleVMCmd.java  |  2 +-
 .../cloudstack/api/command/user/vm/UpgradeVMCmd.java   |  5 +++--
 test/integration/component/test_deploy_vgpu_vm.py  | 14 +++---
 test/integration/smoke/test_service_offerings.py   | 14 +++---
 .../sandbox/demo/simulator/testcase/test_vm_life_cycle.py  |  4 ++--
 7 files changed, 26 insertions(+), 24 deletions(-)

diff --git 
a/api/src/main/java/org/apache/cloudstack/api/command/admin/vm/ScaleVMCmdByAdmin.java
 
b/api/src/main/java/org/apache/cloudstack/api/command/admin/vm/ScaleVMCmdByAdmin.java
index 144663f3ef..fd71a44595 100644
--- 
a/api/src/main/java/org/apache/cloudstack/api/command/admin/vm/ScaleVMCmdByAdmin.java
+++ 
b/api/src/main/java/org/apache/cloudstack/api/command/admin/vm/ScaleVMCmdByAdmin.java
@@ -25,6 +25,6 @@ import org.apache.cloudstack.api.response.SuccessResponse;
 import com.cloud.vm.VirtualMachine;
 
 
-@APICommand(name = "scaleVirtualMachine", description = "Scales the virtual 
machine to a new service offering. This command also takes into account the 
Volume and it may resize the root disk size according to the service 
offering.", responseObject = SuccessResponse.class, responseView = 
ResponseView.Full, entityType = {VirtualMachine.class},
+@APICommand(name = "scaleVirtualMachine", description = "Scales the virtual 
machine to a new service offering. This command also considers the volume size 
in the service offering or disk offering linked to the new service offering and 
apply all characteristics to the root volume.", responseObject = 
SuccessResponse.class, responseView = ResponseView.Full, entityType = 
{VirtualMachine.class},
 requestHasSensitiveInfo = false, responseHasSensitiveInfo = false)
 public class ScaleVMCmdByAdmin extends ScaleVMCmd implements AdminCmd {}
diff --git 
a/api/src/main/java/org/apache/cloudstack/api/command/admin/vm/UpgradeVMCmdByAdmin.java
 
b/api/src/main/java/org/apache/cloudstack/api/command/admin/vm/UpgradeVMCmdByAdmin.java
index 9db9907830..f3230e6481 100644
--- 
a/api/src/main/java/org/apache/cloudstack/api/command/admin/vm/UpgradeVMCmdByAdmin.java
+++ 
b/api/src/main/java/org/apache/cloudstack/api/command/admin/vm/UpgradeVMCmdByAdmin.java
@@ -24,9 +24,10 @@ import org.apache.cloudstack.api.response.UserVmResponse;
 
 import com.cloud.vm.VirtualMachine;
 
-@APICommand(name = "changeServiceForVirtualMachine", 
responseObject=UserVmResponse.class, description="Changes the service offering 
for a virtual machine. " +
-"The virtual machine must be in a 
\"Stopped\" state for " +
-"this command to take effect. Note that it only changes the VM's 
compute offering and it does not update the root volume offering. "
-+ "If the Service Offering has a root disk size the volume will be 
resized only if using API command 'scaleVirtualMachine'.", responseView = 
ResponseView.Full, entityType = {VirtualMachine.class},
+@Deprecated(since = "4.18")
+@APICommand(name = "changeServiceForVirtualMachine", 
responseObject=UserVmResponse.class, description="(This API is deprecated, use 
scaleVirtualMachine API)" +
+"Changes the service offering for a virtual machine. The virtual 
machine must be in a \"Stopped\" state for " +
+"this command to take effect.",
+responseView = ResponseView.Full, entityType = {VirtualMachine.class},
 requestHasSensitiveInfo = false, responseHasSensitiveInfo = true)
 public class UpgradeVMCmdByAdmin extends UpgradeVMCmd implements AdminCmd {}
diff --git 
a/api/src/main/java/org/apache/cloudstack/api/command/user/vm/ScaleVMCmd.java 
b/api/src/main/java/org/apache/cloudstack/api/command/user/vm/ScaleVMCmd.java
index 193a3b1c05..63226ca7f0 100644
--- 
a/api/src/main/java/org/apache/cloudstack/api/command/user/vm/ScaleVMCmd.java
+++ 
b/api/src/main/java/org/apache/cloudstack/api/command/user/vm/ScaleVMCmd.java
@@ -49,7 +49,7 @@ import com.cloud.uservm.UserVm;
 import com.cloud.vm.VirtualMachine;
 
 
-@APICommand(name = "scaleVirtualMachine", description = "Scales the virtual 
machine to a new service offering.", responseObject = UserVmResp

[GitHub] [cloudstack] rohityadavcloud commented on issue #6150: Cleanup: Remove redundant API to change service offering for VMs

2022-07-09 Thread GitBox


rohityadavcloud commented on issue #6150:
URL: https://github.com/apache/cloudstack/issues/6150#issuecomment-1179569478

   Fixed in https://github.com/apache/cloudstack/pull/6540


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud closed issue #6150: Cleanup: Remove redundant API to change service offering for VMs

2022-07-09 Thread GitBox


rohityadavcloud closed issue #6150: Cleanup: Remove redundant API to change 
service offering for VMs
URL: https://github.com/apache/cloudstack/issues/6150


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on pull request #6512: Refactor test and change IP range

2022-07-09 Thread GitBox


rohityadavcloud commented on PR #6512:
URL: https://github.com/apache/cloudstack/pull/6512#issuecomment-1179570132

   @Pearl1594 this needs fixing, smoketests are failing
   
   @blueorangutan test
   
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on pull request #6507: Externalizes logrotate service frequency timer in VR

2022-07-09 Thread GitBox


rohityadavcloud commented on PR #6507:
URL: https://github.com/apache/cloudstack/pull/6507#issuecomment-1179570196

   @blueorangutan test


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6512: Refactor test and change IP range

2022-07-09 Thread GitBox


blueorangutan commented on PR #6512:
URL: https://github.com/apache/cloudstack/pull/6512#issuecomment-1179570229

   @rohityadavcloud a Trillian-Jenkins test job (centos7 mgmt + kvm-centos7) 
has been kicked to run smoke tests


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6507: Externalizes logrotate service frequency timer in VR

2022-07-09 Thread GitBox


blueorangutan commented on PR #6507:
URL: https://github.com/apache/cloudstack/pull/6507#issuecomment-1179570225

   @rohityadavcloud a Trillian-Jenkins test job (centos7 mgmt + kvm-centos7) 
has been kicked to run smoke tests


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] rohityadavcloud commented on a diff in pull request #6473: Fix backup dates

2022-07-09 Thread GitBox


rohityadavcloud commented on code in PR #6473:
URL: https://github.com/apache/cloudstack/pull/6473#discussion_r917285024


##
engine/schema/src/main/resources/META-INF/db/schema-41710to41800.sql:
##
@@ -22,4 +22,11 @@
 -- Enable CPU cap for default system offerings;
 UPDATE `cloud`.`service_offering` so
 SET so.limit_cpu_use = 1
-WHERE so.default_use = 1 AND so.vm_type IN ('domainrouter', 
'secondarystoragevm', 'consoleproxy', 'internalloadbalancervm', 
'elasticloadbalancervm');
\ No newline at end of file
+WHERE so.default_use = 1 AND so.vm_type IN ('domainrouter', 
'secondarystoragevm', 'consoleproxy', 'internalloadbalancervm', 
'elasticloadbalancervm');
+
+-- Drop all backup records and change date column type to DATETIME. The data 
will be resynchronized automatically later;
+DELETE FROM `cloud`.`backups`

Review Comment:
   Wouldn't that cause data loss for existing backup entries? Why not modify 
the column date/time?



-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[cloudstack] branch main updated (65b0bcb069 -> e1c7a447cc)

2022-07-09 Thread rohit
This is an automated email from the ASF dual-hosted git repository.

rohit pushed a change to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


from 65b0bcb069 api: Deprecated changeServiceForVirtualMachine API and 
replaced all the occurences in the tests with scaleVirtualMachine (#6540)
 add 600d81e345 UI: Fixes some issues from zone wizard with VMWare 
hypervisor (#6480)
 add 764ee30ecc ui: fix zone icon in vm deploy zone selection (#6543)
 add ab9a0fd69f Updated log message and throw error when unable to update 
the secret key file (#6542)
 new e1c7a447cc Merge remote-tracking branch 'origin/4.17'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../utils/crypt/EncryptionSecretKeyChanger.java|  2 +-
 setup/bindir/cloud-setup-databases.in  |  6 -
 ui/src/components/view/ResourceIcon.vue|  4 
 ui/src/locales/index.js|  3 ++-
 ui/src/views/compute/DeployVM.vue  | 12 --
 ui/src/views/infra/ClusterAdd.vue  |  6 +++--
 ui/src/views/infra/zone/ZoneWizardAddResources.vue |  6 ++---
 .../zone/ZoneWizardPhysicalNetworkSetupStep.vue| 26 ++
 8 files changed, 40 insertions(+), 25 deletions(-)



[cloudstack] 01/01: Merge remote-tracking branch 'origin/4.17'

2022-07-09 Thread rohit
This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git

commit e1c7a447cc3b18f83a184f6c1652cf2078013443
Merge: 65b0bcb069 ab9a0fd69f
Author: Rohit Yadav 
AuthorDate: Sat Jul 9 22:01:55 2022 +0530

Merge remote-tracking branch 'origin/4.17'

 .../utils/crypt/EncryptionSecretKeyChanger.java|  2 +-
 setup/bindir/cloud-setup-databases.in  |  6 -
 ui/src/components/view/ResourceIcon.vue|  4 
 ui/src/locales/index.js|  3 ++-
 ui/src/views/compute/DeployVM.vue  | 12 --
 ui/src/views/infra/ClusterAdd.vue  |  6 +++--
 ui/src/views/infra/zone/ZoneWizardAddResources.vue |  6 ++---
 .../zone/ZoneWizardPhysicalNetworkSetupStep.vue| 26 ++
 8 files changed, 40 insertions(+), 25 deletions(-)




[GitHub] [cloudstack] floxdevbot commented on issue #3843: HTTP ERROR 503 - Service Unavailable

2022-07-09 Thread GitBox


floxdevbot commented on issue #3843:
URL: https://github.com/apache/cloudstack/issues/3843#issuecomment-1179595204

   Y'all need some better dependency management and documentation. 


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6526: [HEALTH] 4.17 Health Check please don't merge this

2022-07-09 Thread GitBox


blueorangutan commented on PR #6526:
URL: https://github.com/apache/cloudstack/pull/6526#issuecomment-1179616143

   Trillian test result (tid-4467)
   Environment: vmware-65u2 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 65934 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr6526-t4467-vmware-65u2.zip
   Smoke tests completed. 95 look OK, 3 have errors
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_01_template_usage | `Error` | 1800.52 | test_usage.py
   test_02_upgrade_kubernetes_cluster | `Failure` | 560.97 | 
test_kubernetes_clusters.py
   test_05_deploy_vm_with_extraconfig_vmware | `Error` | 3605.28 | 
test_deploy_vm_extra_config_data.py
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6512: Refactor test and change IP range

2022-07-09 Thread GitBox


blueorangutan commented on PR #6512:
URL: https://github.com/apache/cloudstack/pull/6512#issuecomment-1179631789

   Trillian test result (tid-4474)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 29507 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr6512-t4474-kvm-centos7.zip
   Smoke tests completed. 91 look OK, 1 have errors
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   ContextSuite context=TestRVPCSite2SiteVpn>:setup | `Error` | 0.00 | 
test_vpc_vpn.py
   ContextSuite context=TestVPCSite2SiteVPNMultipleOptions>:setup | `Error` | 
0.00 | test_vpc_vpn.py
   ContextSuite context=TestVpcRemoteAccessVpn>:setup | `Error` | 0.00 | 
test_vpc_vpn.py
   ContextSuite context=TestVpcSite2SiteVpn>:setup | `Error` | 0.00 | 
test_vpc_vpn.py
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6507: Externalizes logrotate service frequency timer in VR

2022-07-09 Thread GitBox


blueorangutan commented on PR #6507:
URL: https://github.com/apache/cloudstack/pull/6507#issuecomment-1179646468

   Trillian test result (tid-4473)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 37253 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr6507-t4473-kvm-centos7.zip
   Smoke tests completed. 98 look OK, 0 have errors
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6540: Deprecated changeServiceForVirtualMachine API and replaced all the oc…

2022-07-09 Thread GitBox


blueorangutan commented on PR #6540:
URL: https://github.com/apache/cloudstack/pull/6540#issuecomment-1179648138

   Trillian test result (tid-4469)
   Environment: vmware-67u3 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 40609 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr6540-t4469-vmware-67u3.zip
   Smoke tests completed. 98 look OK, 0 have errors
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6526: [HEALTH] 4.17 Health Check please don't merge this

2022-07-09 Thread GitBox


blueorangutan commented on PR #6526:
URL: https://github.com/apache/cloudstack/pull/6526#issuecomment-1179654300

   Trillian test result (tid-4470)
   Environment: xenserver-71 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 42415 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr6526-t4470-xenserver-71.zip
   Smoke tests completed. 97 look OK, 1 have errors
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_02_upgrade_kubernetes_cluster | `Failure` | 580.11 | 
test_kubernetes_clusters.py
   test_08_upgrade_kubernetes_ha_cluster | `Failure` | 670.52 | 
test_kubernetes_clusters.py
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6526: [HEALTH] 4.17 Health Check please don't merge this

2022-07-09 Thread GitBox


blueorangutan commented on PR #6526:
URL: https://github.com/apache/cloudstack/pull/6526#issuecomment-1179655936

   Trillian test result (tid-4471)
   Environment: kvm-centos7 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 43393 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr6526-t4471-kvm-centos7.zip
   Smoke tests completed. 97 look OK, 1 have errors
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   test_08_upgrade_kubernetes_ha_cluster | `Failure` | 556.88 | 
test_kubernetes_clusters.py
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



[GitHub] [cloudstack] blueorangutan commented on pull request #6526: [HEALTH] 4.17 Health Check please don't merge this

2022-07-09 Thread GitBox


blueorangutan commented on PR #6526:
URL: https://github.com/apache/cloudstack/pull/6526#issuecomment-1179656358

   Trillian test result (tid-4472)
   Environment: vmware-65u2 (x2), Advanced Networking with Mgmt server 7
   Total time taken: 43939 seconds
   Marvin logs: 
https://github.com/blueorangutan/acs-prs/releases/download/trillian/pr6526-t4472-vmware-65u2.zip
   Smoke tests completed. 98 look OK, 0 have errors
   Only failed tests results shown below:
   
   
   Test | Result | Time (s) | Test File
   --- | --- | --- | ---
   


-- 
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.

To unsubscribe, e-mail: commits-unsubscr...@cloudstack.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org