[GitHub] [cloudstack-cloudmonkey] rahulbcn27 commented on issue #120: Migrate to Github Actions

2023-01-17 Thread GitBox


rahulbcn27 commented on issue #120:
URL: 
https://github.com/apache/cloudstack-cloudmonkey/issues/120#issuecomment-1386450517

   Thanks @rohityadavcloud . Looking into it.


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] weizhouapache commented on pull request #301: KVM: do not listen on TCP port when configure kvm host

2023-01-17 Thread GitBox


weizhouapache commented on PR #301:
URL: 
https://github.com/apache/cloudstack-documentation/pull/301#issuecomment-1385544546

   
https://qa.cloudstack.cloud/builds/docs-build/pr/301/installguide/hypervisor/kvm.html#install-and-configure-libvirt


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #301: KVM: do not listen on TCP port when configure kvm host

2023-01-17 Thread GitBox


blueorangutan commented on PR #301:
URL: 
https://github.com/apache/cloudstack-documentation/pull/301#issuecomment-1385542049

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/301. 
(QA-JID 30)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #301: KVM: do not listen on TCP port when configure kvm host

2023-01-17 Thread GitBox


blueorangutan commented on PR #301:
URL: 
https://github.com/apache/cloudstack-documentation/pull/301#issuecomment-1385541202

   @weizhouapache a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-cloudmonkey] rohityadavcloud opened a new issue, #120: Migrate to Github Actions

2023-01-17 Thread GitBox


rohityadavcloud opened a new issue, #120:
URL: https://github.com/apache/cloudstack-cloudmonkey/issues/120

   Migrate from Travis to Github Actions
   with @rahulbcn27


-- 
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: dev-unsubscr...@cloudstack.apache.org.apache.org

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



[GitHub] [cloudstack-terraform-provider] ccycv opened a new issue, #48: error retrieving ID of zone all: No match found for all: &{Count:0 Zones:[]}

2023-01-16 Thread GitBox


ccycv opened a new issue, #48:
URL: https://github.com/apache/cloudstack-terraform-provider/issues/48

   Is there a way to register a template in all the available zones without 
having to specify each zone?
   
   I tested with value "all" and I get this error.
   
   
   ```
   cloudstack_template.Test1: Creating...
   ╷
   │ Error: Error retrieving ID of zone all: No match found for all: &{Count:0 
Zones:[]}
   │
   │   with cloudstack_template.Test1,
   │   on acs.tf line 95, in resource "cloudstack_template" "Test1":
   │   95: resource "cloudstack_template" "Test1" {
   
   ```
   
   And with value "-1" works... but is still get this error even the template 
is registered in all cloudstack zones.
   
   
   ```
   cloudstack_template.Test1: Still creating... [10s elapsed]
   ╷
   │ Error: There is more then one result for Template UUID: 
f16ffd67-c9a8-42fe-91b1-30624a3635ba!
   │
   │   with cloudstack_template.Test1,
   │   on acs.tf line 96, in resource "cloudstack_template" "Test1":
   │   96: resource "cloudstack_template" "Test1" {
   │
   ╵
   PS I:\terraform\cloudstack Register Templates>
   ``` 
   


-- 
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: dev-unsubscr...@cloudstack.apache.org.apache.org

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



[GitHub] [cloudstack-terraform-provider] ccycv opened a new issue, #47: cannot unmarshal object into Go struct field RegisterTemplateResponse.template of type string

2023-01-16 Thread GitBox


ccycv opened a new issue, #47:
URL: https://github.com/apache/cloudstack-terraform-provider/issues/47

   I'm getting the following error for  registering new template in cloudstack 
via terraform.
   
   ```
   cloudstack_template.Test: Creating...
   ╷
   │ Error: Error creating template Test: json: cannot unmarshal object into Go 
struct field RegisterTemplateResponse.template of type string
   │
   │   with cloudstack_template.Test,
   │   on acs.tf line 76, in resource "cloudstack_template" "Test":
   │   76: resource "cloudstack_template" "Test" {
   │
   ╵
   ```
   
   My terraform code looks like this;
   
   ```
   terraform {
 required_providers {
   cloudstack = {
 source = "cloudstack/cloudstack"
 version = "0.4.0-pre"
   }
 }
   }
   
   
   provider "cloudstack" {
 alias = "env0"
 api_url = "http://acs-001.xxx.host:8080/client/api;
 api_key = "my apy key"
 secret_key = "my secret key"
   }
   
   provider "cloudstack" {
 alias = "env1"
 api_url = "http://acs-002.xxx.host:8080/client/api;
 api_key = "my apy key"
 secret_key = "my secret key"
   }
   
   
   variable "template_url" {
 default = "http://5.xxx.xxx.5/cloudstack/RockyLinux/RockyLinux-9.ova;
   }
   
   variable "template_name" {
 default = "Test"
   }
   
   variable "password_enabled" {
 default = true
   }
   
   variable "public" {
 default = true
   }
   
   variable "featured" {
 default = true
   }
   
   variable "hypervisor" {
 default = "VMware"
   }
   
   variable "ostype" {
 default = "Other Linux (64-bit)"
   }
   
   
   resource "cloudstack_template" "Test" {
 provider = cloudstack.env0
 name = var.template_name
 url = var.template_url
 format = "OVA"
 hypervisor = var.hypervisor
 os_type = var.ostype
 password_enabled = var.password_enabled
 is_public = var.public
 is_featured = var.featured
 zone = "DE-001"
   }
   
   /*resource "cloudstack_template" "Test1" {
 provider = cloudstack.env1
 name = var.template_name
 url = var.template_url
 format = "OVA"
 hypervisor = var.hypervisor
 os_type = var.ostype
 password_enabled = var.password_enabled
 is_public = var.public
 is_featured = var.featured
 zone = "-1"
   }*/
   ```
   I also try here with only 1 zone "DE-001", to see if works, the question for 
zone, is the parameter value "-1" for zone parameter valid?


-- 
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: dev-unsubscr...@cloudstack.apache.org.apache.org

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



[GitHub] [cloudstack-documentation] weizhouapache commented on pull request #301: KVM: do not listen on TCP port when configure kvm host

2023-01-16 Thread GitBox


weizhouapache commented on PR #301:
URL: 
https://github.com/apache/cloudstack-documentation/pull/301#issuecomment-1384017587

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] weizhouapache commented on pull request #301: KVM: do not listen on TCP port when configure kvm host

2023-01-16 Thread GitBox


weizhouapache commented on PR #301:
URL: 
https://github.com/apache/cloudstack-documentation/pull/301#issuecomment-1383739245

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] weizhouapache opened a new pull request, #301: KVM: do not listen on TCP port when configure kvm host

2023-01-16 Thread GitBox


weizhouapache opened a new pull request, #301:
URL: https://github.com/apache/cloudstack-documentation/pull/301

   This fixes [#5834](https://github.com/apache/cloudstack/issues/5834)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-www] rohityadavcloud merged pull request #93: Update acs-events.csv

2023-01-12 Thread GitBox


rohityadavcloud merged PR #93:
URL: https://github.com/apache/cloudstack-www/pull/93


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland merged pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


DaanHoogland merged PR #299:
URL: https://github.com/apache/cloudstack-documentation/pull/299


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] sbrueseke commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


sbrueseke commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377348842

   LGTM


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


blueorangutan commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377301411

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/299. 
(QA-JID 29)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


blueorangutan commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377300733

   @DaanHoogland a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


DaanHoogland commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377299446

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


DaanHoogland commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377203936

   @sbrueseke if you go to files you can add all sugestions that you want in 
one commit. I _think_ my latest suggestions will solve your list issue.


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on a diff in pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


DaanHoogland commented on code in PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#discussion_r1065736778


##
source/adminguide/systemvm.rst:
##
@@ -372,17 +372,43 @@ are still in default PEM format (no URL encoding needed 
here).
 After editing the database, please restart management server, and destroy SSVM 
and CPVM after that,
 so the new SSVM and CPVM with new certificates are created.
 
-Load-balancing Console Proxies
-~~
+Load-balancing Console Proxies / Secondary Storage VMs
+~~
 An alternative to using dynamic DNS or creating a range of DNS entries
 as described in the last section would be to create a SSL certificate
 for a specific domain name, configure CloudStack to use that particular
 FQDN, and then configure a load balancer to load balance the console
-proxy's IP address behind the FQDN. As the functionality for this is
-still new, please see
+proxy's IP address behind the FQDN. When using a load balancer it is
+also possible to perform SSL-Offloading, so no certificate needs to be
+configured on CloudStack itself. For further information please see
 https://cwiki.apache.org/confluence/display/CLOUDSTACK/Realhost+IP+changes
 for more details.
 
+These ports needed to be configured for load-balancing:
+-  443 to 443 (to CPVM)
+-  8080 to 8080 (to CPVM)
+-  443 to 443 (to SSVM)
+
+SSL-Offloading with Load-balancing for Console Proxies / Secondary Storage VMs
+~~
+To implement SSL-Offloading you need 2 public IP addresses (one for Console 
Proxy and one for Secondary Storage VM) which
+each of them resolve to a different FQDN and terminate at the load balancer. 
Also 3 global settings need to be edited.
+- The setting ‘consoleproxy.url.domain’ to the FQDN used by the certificate 
(For example: cpvm.company.com)
+- The setting ‘secstorage.ssl.cert.domain’ to the FQDN used by the cerrificate 
(For example: ssvm.company.com)
+- The setting ‘secstorage.encrypt.copy’ to true
+
+.. warning::
+   For sake of security you should block direct public access to the IP of 
Console Proxy and Secondary Storage VM. It is also
+   possible to add a fake public IP range to CloudStack which uses internal IP 
addresses for SystemVM use only. Please
+   be aware that the load balancer needs access to the used IP addresses to 
forward traffic.
+
+After edited global settings mentioned above you need to recreate both System 
VMs by destroying them. CloudStack will recreate
+them with the new settings automatically.
+
+When using SSL-Offloading you need to configure following ports on the load 
balancer after adding the correct certificate to the public IP of each FQDN:
+-  lb-publicip1:443 to CPVM:80
+-  lb-publicip1:8080 to CPVM:8080
+-  lb-publicip2:443 to SSVM:80

Review Comment:
   ```suggestion
   When using SSL-Offloading you need to configure following ports on the load 
balancer after adding the correct certificate to the public IP of each FQDN:
   
   - lb-publicip1:443 to CPVM:80
   - lb-publicip1:8080 to CPVM:8080
   - lb-publicip2:443 to SSVM:80
   ```



-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on a diff in pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


DaanHoogland commented on code in PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#discussion_r1065736042


##
source/adminguide/systemvm.rst:
##
@@ -372,17 +372,43 @@ are still in default PEM format (no URL encoding needed 
here).
 After editing the database, please restart management server, and destroy SSVM 
and CPVM after that,
 so the new SSVM and CPVM with new certificates are created.
 
-Load-balancing Console Proxies
-~~
+Load-balancing Console Proxies / Secondary Storage VMs
+~~
 An alternative to using dynamic DNS or creating a range of DNS entries
 as described in the last section would be to create a SSL certificate
 for a specific domain name, configure CloudStack to use that particular
 FQDN, and then configure a load balancer to load balance the console
-proxy's IP address behind the FQDN. As the functionality for this is
-still new, please see
+proxy's IP address behind the FQDN. When using a load balancer it is
+also possible to perform SSL-Offloading, so no certificate needs to be
+configured on CloudStack itself. For further information please see
 https://cwiki.apache.org/confluence/display/CLOUDSTACK/Realhost+IP+changes
 for more details.
 
+These ports needed to be configured for load-balancing:
+-  443 to 443 (to CPVM)
+-  8080 to 8080 (to CPVM)
+-  443 to 443 (to SSVM)
+
+SSL-Offloading with Load-balancing for Console Proxies / Secondary Storage VMs
+~~
+To implement SSL-Offloading you need 2 public IP addresses (one for Console 
Proxy and one for Secondary Storage VM) which
+each of them resolve to a different FQDN and terminate at the load balancer. 
Also 3 global settings need to be edited.
+- The setting ‘consoleproxy.url.domain’ to the FQDN used by the certificate 
(For example: cpvm.company.com)
+- The setting ‘secstorage.ssl.cert.domain’ to the FQDN used by the cerrificate 
(For example: ssvm.company.com)
+- The setting ‘secstorage.encrypt.copy’ to true

Review Comment:
   ```suggestion
   each of them resolve to a different FQDN and terminate at the load balancer. 
Also 3 global settings need to be edited.
   
   - The setting ‘consoleproxy.url.domain’ to the FQDN used by the certificate 
(For example: cpvm.company.com)
   - The setting ‘secstorage.ssl.cert.domain’ to the FQDN used by the 
cerrificate (For example: ssvm.company.com)
   - The setting ‘secstorage.encrypt.copy’ to true
   ```



-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on a diff in pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


DaanHoogland commented on code in PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#discussion_r1065735341


##
source/adminguide/systemvm.rst:
##
@@ -372,17 +372,43 @@ are still in default PEM format (no URL encoding needed 
here).
 After editing the database, please restart management server, and destroy SSVM 
and CPVM after that,
 so the new SSVM and CPVM with new certificates are created.
 
-Load-balancing Console Proxies
-~~
+Load-balancing Console Proxies / Secondary Storage VMs
+~~
 An alternative to using dynamic DNS or creating a range of DNS entries
 as described in the last section would be to create a SSL certificate
 for a specific domain name, configure CloudStack to use that particular
 FQDN, and then configure a load balancer to load balance the console
-proxy's IP address behind the FQDN. As the functionality for this is
-still new, please see
+proxy's IP address behind the FQDN. When using a load balancer it is
+also possible to perform SSL-Offloading, so no certificate needs to be
+configured on CloudStack itself. For further information please see
 https://cwiki.apache.org/confluence/display/CLOUDSTACK/Realhost+IP+changes
 for more details.
 
+These ports needed to be configured for load-balancing:
+-  443 to 443 (to CPVM)
+-  8080 to 8080 (to CPVM)
+-  443 to 443 (to SSVM)

Review Comment:
   ```suggestion
   These ports needed to be configured for load-balancing:
   
   - 443 to 443 (to CPVM)
   - 8080 to 8080 (to CPVM)
   - 443 to 443 (to SSVM)
   ```



-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


blueorangutan commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377193362

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/299. 
(QA-JID 28)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


blueorangutan commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377192805

   @DaanHoogland a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


DaanHoogland commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377192369

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] sbrueseke commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


sbrueseke commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377179534

   @DaanHoogland thx Daan! I did some layout fixing so the port reference will 
be shown in a list. Hope it made it to the pull request.


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on a diff in pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


DaanHoogland commented on code in PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#discussion_r1065704106


##
source/adminguide/systemvm.rst:
##
@@ -372,17 +372,44 @@ are still in default PEM format (no URL encoding needed 
here).
 After editing the database, please restart management server, and destroy SSVM 
and CPVM after that,
 so the new SSVM and CPVM with new certificates are created.
 
-Load-balancing Console Proxies
+Load-balancing Console Proxies / Secondary Storage VMs
 ~~
 An alternative to using dynamic DNS or creating a range of DNS entries
 as described in the last section would be to create a SSL certificate
 for a specific domain name, configure CloudStack to use that particular
 FQDN, and then configure a load balancer to load balance the console
-proxy's IP address behind the FQDN. As the functionality for this is
+proxy's IP address behind the FQDN. When using a load balancer it is
+also possible to perform SSL-Offloading, so no certificate needs to be
+configured on CloudStack itself. As the functionality for this is
 still new, please see

Review Comment:
   I don´t think this is new anymore:
   ```suggestion
   proxy's IP address behind the FQDN. When using a load balancer it is
   also possible to perform SSL-Offloading, so no certificate needs to be
   configured on CloudStack itself. For further information please see
   ```



##
source/adminguide/systemvm.rst:
##
@@ -372,17 +372,44 @@ are still in default PEM format (no URL encoding needed 
here).
 After editing the database, please restart management server, and destroy SSVM 
and CPVM after that,
 so the new SSVM and CPVM with new certificates are created.
 
-Load-balancing Console Proxies
+Load-balancing Console Proxies / Secondary Storage VMs
 ~~

Review Comment:
   ```suggestion
   Load-balancing Console Proxies / Secondary Storage VMs
   ~~
   ```



##
source/adminguide/systemvm.rst:
##
@@ -372,17 +372,44 @@ are still in default PEM format (no URL encoding needed 
here).
 After editing the database, please restart management server, and destroy SSVM 
and CPVM after that,
 so the new SSVM and CPVM with new certificates are created.
 
-Load-balancing Console Proxies
+Load-balancing Console Proxies / Secondary Storage VMs
 ~~
 An alternative to using dynamic DNS or creating a range of DNS entries
 as described in the last section would be to create a SSL certificate
 for a specific domain name, configure CloudStack to use that particular
 FQDN, and then configure a load balancer to load balance the console
-proxy's IP address behind the FQDN. As the functionality for this is
+proxy's IP address behind the FQDN. When using a load balancer it is
+also possible to perform SSL-Offloading, so no certificate needs to be
+configured on CloudStack itself. As the functionality for this is
 still new, please see
 https://cwiki.apache.org/confluence/display/CLOUDSTACK/Realhost+IP+changes
 for more details.
 
+These ports needed to be configured for load-balancing:
+- 443 to 443 (to CPVM)
+- 8080 to 8080 (to CPVM)
+- 443 to 443 (to SSVM)
+
+SSL-Offloading with Load-balancing for Console Proxies / Secondary Storage VMs
+~~

Review Comment:
   ```suggestion
   SSL-Offloading with Load-balancing for Console Proxies / Secondary Storage 
VMs
   
~~
   ```



##
source/adminguide/systemvm.rst:
##
@@ -258,7 +258,7 @@ communication with SSL:
 
 -  Set up a SSL wild-card certificate and domain name resolution
 
--  Set up SSL certificate for specific FQDN and configure load-balancer
+-  Set up SSL certificate for specific FQDN and configure load-balancer (with 
ssl offloading optional)

Review Comment:
   ```suggestion
   -  Set up SSL certificate for specific FQDN and configure a load-balancer 
with optional ssl offloading.
   ```



-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland merged pull request #298: fix typo

2023-01-10 Thread GitBox


DaanHoogland merged PR #298:
URL: https://github.com/apache/cloudstack-documentation/pull/298


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


blueorangutan commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377140817

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/299. 
(QA-JID 27)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


blueorangutan commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377139611

   @DaanHoogland a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on pull request #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-10 Thread GitBox


DaanHoogland commented on PR #299:
URL: 
https://github.com/apache/cloudstack-documentation/pull/299#issuecomment-1377137990

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland merged pull request #281: DELLEMC Networker B Plugin Documentation

2023-01-09 Thread GitBox


DaanHoogland merged PR #281:
URL: https://github.com/apache/cloudstack-documentation/pull/281


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #281: DELLEMC Networker B Plugin Documentation

2023-01-09 Thread GitBox


blueorangutan commented on PR #281:
URL: 
https://github.com/apache/cloudstack-documentation/pull/281#issuecomment-1375740584

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/281. 
(QA-JID 26)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #281: DELLEMC Networker B Plugin Documentation

2023-01-09 Thread GitBox


blueorangutan commented on PR #281:
URL: 
https://github.com/apache/cloudstack-documentation/pull/281#issuecomment-1375739823

   @DaanHoogland a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on pull request #281: DELLEMC Networker B Plugin Documentation

2023-01-09 Thread GitBox


DaanHoogland commented on PR #281:
URL: 
https://github.com/apache/cloudstack-documentation/pull/281#issuecomment-1375739082

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on a diff in pull request #281: DELLEMC Networker B Plugin Documentation

2023-01-09 Thread GitBox


DaanHoogland commented on code in PR #281:
URL: 
https://github.com/apache/cloudstack-documentation/pull/281#discussion_r1064721481


##
source/adminguide/networker_plugin.rst:
##
@@ -0,0 +1,221 @@
+.. Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information#
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+   http://www.apache.org/licenses/LICENSE-2.0
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.
+
+.. _DELL EMC Networker Backup and Recovery Plugin:
+
+DELL EMC Networker Backup and Recovery Plugin
+=
+
+About the DELL EMC Networker Backup and Recovery Plugin
+-
+
+Administrators must make sure that the following requirements and 
prerequisites are met in order for the plugin
+to work as expected.
+
+EMC Networker Server
+
+#. A fairly recent .rpm or .deb Linux distribution that is supported by DELL 
EMC Networker for the installed version.
+#. Network connectivity between the Cloudstack Management Servers in your zone 
and DELL EMC Networker Server
+#. Administration access to the DELL EMC Networker management consoles
+#. Unrestricted access to API port (running default at: 9090/tcp)
+#. A proper timezone set. Identical to the Hypervisors and Management server
+#. Proper DNS resolution of the Clients
+
+KVM Hypervisor(s)
+
+#. A BASH shell at minimum version 4.4.19
+#. DELL EMC Networker client must be installed and in running state
+#. Hypervisor must be associated with the DELL EMC Networker server as CLIENT
+#. DELL EMC Networker can connect and verify certificates to the Hyper-v Client
+#. A Hypervisor must be in UP and ENABLED state and resource state 
respectively in order to be able to get backups
+   for the VMS running.
+#. A proper timezone set. Identical to the EMC Networker Server and Management 
server
+#. Proper DNS resolution of the EMC Networker server
+
+Virtual Machines
+
+#. It is HIGHLY recommended to run qemu-guest-agent on the Machines you are 
planning to backup.
+#. There has been no testing regarding KVM Primary Storage snapshots and 
possible problems with EMC DELL Networker plugin
+#. In case you are using KVM Primary Storage snapshots, you have EMC Networker 
and you want to proceed with the
+   installation of this plugin proceed with extreme caution.
+
+General Concepts
+
+#. DELL EMC Networker POLICIES are presented as Backup Provider Offerings to 
Cloudstack.
+   At that level we can set the Protection Period (aka Expiration) to specify 
when backups
+   will expire. Restricted data zones can also be defined in POLICIES to 
create fine grain permissions.
+#. As per EMC Networker Glossary and design those POLICIES are not actually 
used. They act as a placeholder
+   for the backup offerings and the retention policies.
+#. DELL EMC Networker has no ability to initiate backup tasks for KVM Virtual 
Machines at the moment.
+   The implementation is based on manual save sets initiated by the Cloudstack 
Networker plugin.
+#. The tag -CSBKP- in the comment of the POLICY indicates that this policy is 
available to Cloudstack
+   Other POLICIES used in your infrastructure will not be visible inside 
Cloudstack. It is recommended to create
+   brand new POLICIES dedicated to Cloudstack and settings the Protection 
Periods to match the backup plan retention
+   you wish to enable for each of the offerings.
+#. For each KVM Cluster you have, a relevant dummy client must be created in 
the DELL EMC Networker. This is used as a
+   placeholder for being able to backup and restore your Virtual Machines from 
all hosts within the cluster.
+#. Cross cluster restores are indirectly supported by restoring to the 
original cluster and then migrating the Virtual
+   Machine to the destination cluster.
+#. Any manual KVM backup you initiate (from the hyper-v command line) will be 
registered in Cloudstack automatically.
+   You need to use the client scripts and pass the proper parameteres to do so.
+#. Any backup you expire/remove from the DELL EMC Networker side will be 
unregistered in Cloudstack automatically.
+
+Installing DELL EMC Networker Backup and Recovery Plugin
+
+
+The B Networker plugin has been designed and implemented taking in mind the 
particularities of the DELL EMC Networker
+backup suite. It has been 

[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #300: Guest OS and hypervisor mappings

2023-01-06 Thread GitBox


blueorangutan commented on PR #300:
URL: 
https://github.com/apache/cloudstack-documentation/pull/300#issuecomment-1373542193

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/300. 
(QA-JID 25)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #300: Guest OS and hypervisor mappings

2023-01-06 Thread GitBox


blueorangutan commented on PR #300:
URL: 
https://github.com/apache/cloudstack-documentation/pull/300#issuecomment-1373541645

   @weizhouapache a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] weizhouapache commented on pull request #300: Guest OS and hypervisor mappings

2023-01-06 Thread GitBox


weizhouapache commented on PR #300:
URL: 
https://github.com/apache/cloudstack-documentation/pull/300#issuecomment-1373541033

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #300: Guest OS and hypervisor mappings

2023-01-05 Thread GitBox


blueorangutan commented on PR #300:
URL: 
https://github.com/apache/cloudstack-documentation/pull/300#issuecomment-1373194227

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/300. 
(QA-JID 24)


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

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

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #300: Guest OS and hypervisor mappings

2023-01-05 Thread GitBox


blueorangutan commented on PR #300:
URL: 
https://github.com/apache/cloudstack-documentation/pull/300#issuecomment-1373193926

   @harikrishna-patnala a Jenkins job has been kicked to build the document. 
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.

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

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



[GitHub] [cloudstack-documentation] harikrishna-patnala commented on pull request #300: Guest OS and hypervisor mappings

2023-01-05 Thread GitBox


harikrishna-patnala commented on PR #300:
URL: 
https://github.com/apache/cloudstack-documentation/pull/300#issuecomment-1373193612

   
   @blueorangutan docbuild
   
   


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] harikrishna-patnala opened a new pull request, #300: Guest OS and hypervisor mappings

2023-01-05 Thread GitBox


harikrishna-patnala opened a new pull request, #300:
URL: https://github.com/apache/cloudstack-documentation/pull/300

   This documentation is related to the PR 
https://github.com/apache/cloudstack/pull/6979 which is for the improved guest 
OS and hypervisor mappings.


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland merged pull request #279: Configurable MTU for VR

2023-01-05 Thread GitBox


DaanHoogland merged PR #279:
URL: https://github.com/apache/cloudstack-documentation/pull/279


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-terraform-provider] codemoos closed issue #46: Using datasource cloudstack_template crashes the provider

2023-01-05 Thread GitBox


codemoos closed issue #46: Using datasource cloudstack_template crashes the 
provider
URL: https://github.com/apache/cloudstack-terraform-provider/issues/46


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-terraform-provider] codemoos commented on issue #46: Using datasource cloudstack_template crashes the provider

2023-01-05 Thread GitBox


codemoos commented on issue #46:
URL: 
https://github.com/apache/cloudstack-terraform-provider/issues/46#issuecomment-1372533622

   Yes, that works!


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] shwstppr commented on a diff in pull request #279: Configurable MTU for VR

2023-01-05 Thread GitBox


shwstppr commented on code in PR #279:
URL: 
https://github.com/apache/cloudstack-documentation/pull/279#discussion_r1062724396


##
source/adminguide/networking/advanced_zone_config.rst:
##
@@ -49,6 +49,14 @@ configure the base guest network:
-  **Network offering**: If the administrator has configured multiple
   network offerings, select the one you want to use for this network
 
+   - **Public MTU**: The MTU that will be configured on the public interfaces
+  of the network's VR. 
+  **NOTE:** This will not be considered for VPC network tiers, as the 
+  public MTU defined at the VPC network creation level will be considered

Review Comment:
   @weizhouapache yes I tested basic deployments with multiple tiers with 
different MTU for each tier



-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-terraform-provider] Damans227 commented on issue #46: Using datasource cloudstack_template crashes the provider

2023-01-05 Thread GitBox


Damans227 commented on issue #46:
URL: 
https://github.com/apache/cloudstack-terraform-provider/issues/46#issuecomment-1372390814

   I see. Can you do a quick test, and use following as a filter: 
   
   ```
 filter {
   name = "displaytext"
   value = "Ubuntu 22.04"
 }
   }
   ```
   
   If that works, then you can use it as a workaround for now. The fix shall 
become available in the next release. 


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-terraform-provider] codemoos commented on issue #46: Using datasource cloudstack_template crashes the provider

2023-01-05 Thread GitBox


codemoos commented on issue #46:
URL: 
https://github.com/apache/cloudstack-terraform-provider/issues/46#issuecomment-1372360458

   Aah thanks, did not see that one. But the latest release is from feb 2022, 
this fix is merged after.


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-terraform-provider] Damans227 commented on issue #46: Using datasource cloudstack_template crashes the provider

2023-01-05 Thread GitBox


Damans227 commented on issue #46:
URL: 
https://github.com/apache/cloudstack-terraform-provider/issues/46#issuecomment-1372316215

   Seems like a duplicate of 
https://github.com/apache/cloudstack-terraform-provider/issues/42. I also 
provided a fix for this issue which is merged already 
https://github.com/apache/cloudstack-terraform-provider/pull/43. Are you on the 
latest build @codemoos ? 


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #279: Configurable MTU for VR

2023-01-05 Thread GitBox


blueorangutan commented on PR #279:
URL: 
https://github.com/apache/cloudstack-documentation/pull/279#issuecomment-1372265505

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/279. 
(QA-JID 23)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #279: Configurable MTU for VR

2023-01-05 Thread GitBox


blueorangutan commented on PR #279:
URL: 
https://github.com/apache/cloudstack-documentation/pull/279#issuecomment-1372264676

   @DaanHoogland a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on pull request #279: Configurable MTU for VR

2023-01-05 Thread GitBox


DaanHoogland commented on PR #279:
URL: 
https://github.com/apache/cloudstack-documentation/pull/279#issuecomment-1372264069

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-terraform-provider] codemoos opened a new issue, #46: Using datasource cloudstack_template crashes the provider

2023-01-05 Thread GitBox


codemoos opened a new issue, #46:
URL: https://github.com/apache/cloudstack-terraform-provider/issues/46

   Plugin crashes when passing name = display_text in datasource 
cloudstack_template, as shown below code block.
   
   data "cloudstack_template" "my_template" {
 template_filter = "featured"
   
 filter {
   name = "display_text"
   value = "Ubuntu 22.04"
 }
   }
   
   What does work is passing name = name with value = "Ubuntu"
   
   data "cloudstack_template" "my_template" {
 template_filter = "featured"
   
 filter {
   name = "name"
   value = "Ubuntu 22.04"
 }
   }
   
   ### Response 
   Error: Plugin did not respond
   │ 
   │   with data.cloudstack_template.my_template,
   │   on firstdeployment.tf line 36, in data "cloudstack_template" 
"my_template":
   │   36: data "cloudstack_template" "my_template" {
   │ 
   │ The plugin encountered an error, and failed to respond to the 
plugin.(*GRPCProvider).ReadDataSource call. The plugin logs may contain more 
details.
   ╵
   
   Stack trace from the terraform-provider-cloudstack_v0.4.0 plugin:
   
   panic: interface conversion: interface {} is nil, not string
   
   goroutine 23 [running]:
   
github.com/terraform-providers/terraform-provider-cloudstack/cloudstack.applyFilters(0xc0001983e0,
 0x1c28e53)
   
github.com/terraform-providers/terraform-provider-cloudstack/cloudstack/data_source_cloudstack_template.go:184
 +0x292
   
github.com/terraform-providers/terraform-provider-cloudstack/cloudstack.dataSourceCloudstackTemplateRead(0xc000528270,
 {0x1af41a0, 0xcdcb00})
   
github.com/terraform-providers/terraform-provider-cloudstack/cloudstack/data_source_cloudstack_template.go:106
 +0x2cd
   
github.com/hashicorp/terraform/helper/schema.(*Resource).ReadDataApply(0xc000292a80,
 0x1a9e980, {0x1af41a0, 0xcdcb00})
   github.com/hashicorp/terraform@v0.12.0/helper/schema/resource.go:390 
+0x66
   
github.com/hashicorp/terraform/helper/schema.(*Provider).ReadDataApply(0xc000293a00,
 0xc000177988, 0x1a9e980)
   github.com/hashicorp/terraform@v0.12.0/helper/schema/provider.go:442 
+0x65
   
github.com/hashicorp/terraform/helper/plugin.(*GRPCProviderServer).ReadDataSource(0xc0e518,
 {0xc000190dc0, 0x10aede6}, 0xc000190dc0)
   
github.com/hashicorp/terraform@v0.12.0/helper/plugin/grpc_provider.go:990 +0x2e5
   
github.com/hashicorp/terraform/internal/tfplugin5._Provider_ReadDataSource_Handler({0x1badca0,
 0xc0e518}, {0x1da4170, 0xc00015acc0}, 0xc00057d2c0, 0x0)
   
github.com/hashicorp/terraform@v0.12.0/internal/tfplugin5/tfplugin5.pb.go:3055 
+0x170
   google.golang.org/grpc.(*Server).processUnaryRPC(0xc00045a600, {0x1db1338, 
0xc00045a780}, 0xc000539b00, 0xc000546420, 0x24107b0, 0x0)
   google.golang.org/grpc@v1.18.0/server.go:966 +0xe47
   google.golang.org/grpc.(*Server).handleStream(0xc00045a600, {0x1db1338, 
0xc00045a780}, 0xc000539b00, 0x0)
   google.golang.org/grpc@v1.18.0/server.go:1245 +0x9e5
   google.golang.org/grpc.(*Server).serveStreams.func1.1()
   google.golang.org/grpc@v1.18.0/server.go:685 +0x98
   created by google.golang.org/grpc.(*Server).serveStreams.func1
   google.golang.org/grpc@v1.18.0/server.go:683 +0xef
   
   Error: The terraform-provider-cloudstack_v0.4.0 plugin crashed!
   
   This is always indicative of a bug within the plugin. It would be immensely
   helpful if you could report the crash with the plugin's maintainers so that 
it
   can be fixed. The output above should help diagnose the issue.


-- 
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: dev-unsubscr...@cloudstack.apache.org.apache.org

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



[GitHub] [cloudstack-documentation] weizhouapache commented on a diff in pull request #279: Configurable MTU for VR

2023-01-05 Thread GitBox


weizhouapache commented on code in PR #279:
URL: 
https://github.com/apache/cloudstack-documentation/pull/279#discussion_r1062432363


##
source/adminguide/networking/advanced_zone_config.rst:
##
@@ -49,6 +49,14 @@ configure the base guest network:
-  **Network offering**: If the administrator has configured multiple
   network offerings, select the one you want to use for this network
 
+   - **Public MTU**: The MTU that will be configured on the public interfaces
+  of the network's VR. 
+  **NOTE:** This will not be considered for VPC network tiers, as the 
+  public MTU defined at the VPC network creation level will be considered

Review Comment:
   I have a question, not related to this doc PR, but to the feature.
   
   Have you tested public MTU in VPC VR ? @shwstppr @NuxRo  



-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] sbrueseke opened a new pull request, #299: Add documentation regarding SystemVMs load-balancing and SSL-Offloading

2023-01-04 Thread GitBox


sbrueseke opened a new pull request, #299:
URL: https://github.com/apache/cloudstack-documentation/pull/299

   I found it very difficult to get load-balancing for Console Proxy and 
Secondary Storage VM working and added some information regarding a working 
SSL-Offloading.


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #298: fix typo

2023-01-04 Thread GitBox


blueorangutan commented on PR #298:
URL: 
https://github.com/apache/cloudstack-documentation/pull/298#issuecomment-1370781640

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/298. 
(QA-JID 22)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #298: fix typo

2023-01-04 Thread GitBox


blueorangutan commented on PR #298:
URL: 
https://github.com/apache/cloudstack-documentation/pull/298#issuecomment-1370780989

   @DaanHoogland a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on pull request #298: fix typo

2023-01-04 Thread GitBox


DaanHoogland commented on PR #298:
URL: 
https://github.com/apache/cloudstack-documentation/pull/298#issuecomment-1370780446

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland merged pull request #292: fix RPM package repository url

2022-12-30 Thread GitBox


DaanHoogland merged PR #292:
URL: https://github.com/apache/cloudstack-documentation/pull/292


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #292: fix RPM package repository url

2022-12-30 Thread GitBox


blueorangutan commented on PR #292:
URL: 
https://github.com/apache/cloudstack-documentation/pull/292#issuecomment-1367927106

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/292. 
(QA-JID 21)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #292: fix RPM package repository url

2022-12-30 Thread GitBox


blueorangutan commented on PR #292:
URL: 
https://github.com/apache/cloudstack-documentation/pull/292#issuecomment-1367926875

   @DaanHoogland a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on pull request #292: fix RPM package repository url

2022-12-30 Thread GitBox


DaanHoogland commented on PR #292:
URL: 
https://github.com/apache/cloudstack-documentation/pull/292#issuecomment-1367926534

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #294: metrics notes

2022-12-30 Thread GitBox


blueorangutan commented on PR #294:
URL: 
https://github.com/apache/cloudstack-documentation/pull/294#issuecomment-1367844193

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/294. 
(QA-JID 20)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #294: metrics notes

2022-12-30 Thread GitBox


blueorangutan commented on PR #294:
URL: 
https://github.com/apache/cloudstack-documentation/pull/294#issuecomment-1367843940

   @shwstppr a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] shwstppr commented on pull request #294: metrics notes

2022-12-30 Thread GitBox


shwstppr commented on PR #294:
URL: 
https://github.com/apache/cloudstack-documentation/pull/294#issuecomment-1367843539

   Thanks @DaanHoogland for pointing it out. Made the changes
   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on a diff in pull request #292: fix RPM package repository url

2022-12-29 Thread GitBox


DaanHoogland commented on code in PR #292:
URL: 
https://github.com/apache/cloudstack-documentation/pull/292#discussion_r1059267160


##
source/installguide/management-server/_pkg_repo.rst:
##
@@ -51,11 +51,13 @@ To add the CloudStack repository, create
 ``/etc/yum.repos.d/cloudstack.repo`` and insert the following
 information.
 
+In the case of RHEL you could replace centos by rhel in baseurl

Review Comment:
   ```suggestion
   In the case of RHEL being used, you can replace 'centos' by 'rhel' in the 
value of baseurl
   ```



-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on a diff in pull request #290: Update _nfs.rst

2022-12-29 Thread GitBox


DaanHoogland commented on code in PR #290:
URL: 
https://github.com/apache/cloudstack-documentation/pull/290#discussion_r1059265944


##
source/installguide/management-server/_nfs.rst:
##
@@ -162,7 +162,7 @@ operating system version.
 
   exportfs -a
 
-#. Edit the /etc/sysconfig/nfs file.
+#. Edit the /etc/sysconfig/nfs file(if not exists, create one).

Review Comment:
   ```suggestion
   #. Edit the /etc/sysconfig/nfs file (if it doesn´t exist, create one).
   ```



##
source/installguide/management-server/_nfs.rst:
##
@@ -179,7 +179,7 @@ operating system version.
   STATD_PORT=662
   STATD_OUTGOING_PORT=2020
 
-#. Edit the /etc/sysconfig/iptables file.
+#. Edit the /etc/sysconfig/iptables file(if not exists, create one).

Review Comment:
   ```suggestion
   #. Edit the /etc/sysconfig/iptables file (if it doesn´t exist, create one).
   ```



##
source/installguide/management-server/_nfs.rst:
##
@@ -246,15 +246,21 @@ operating system version.
  chkconfig rpcbind on
  reboot
 
+   #. The command chkconfig is no longer available in Ubuntu, to check if the 
nfs service has been running, use following command, if you see words like 
*nfsd*, the service has been started succcessfully:

Review Comment:
   ```suggestion
  #. The command chkconfig is no longer available on Ubuntu systems. To 
check if the nfs service has been running, use following command, if you see 
words like *nfsd*, the service has been started successfully:
   ```
   I also sugest adding the version of ubuntu from which it is no longer 
available



-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland merged pull request #291: Non-strict affinity groups: update doc and add examples

2022-12-29 Thread GitBox


DaanHoogland merged PR #291:
URL: https://github.com/apache/cloudstack-documentation/pull/291


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland merged pull request #286: VM Autoscaling with virtual router

2022-12-29 Thread GitBox


DaanHoogland merged PR #286:
URL: https://github.com/apache/cloudstack-documentation/pull/286


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on pull request #294: metrics notes

2022-12-29 Thread GitBox


DaanHoogland commented on PR #294:
URL: 
https://github.com/apache/cloudstack-documentation/pull/294#issuecomment-1367755247

   @shwstppr the images do not show in the paragraph they are intended for (or 
am I looking with crooked eyes/false expectations?)
   see [the 
paragraphs](https://qa.cloudstack.cloud/builds/docs-build/pr/294/adminguide/virtual_machines.html?highlight=virtual%20machines%20metric#vm-disk-metrics)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland merged pull request #297: Update about.rst

2022-12-29 Thread GitBox


DaanHoogland merged PR #297:
URL: https://github.com/apache/cloudstack-documentation/pull/297


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] DaanHoogland commented on a diff in pull request #281: DELLEMC Networker B Plugin Documentation

2022-12-29 Thread GitBox


DaanHoogland commented on code in PR #281:
URL: 
https://github.com/apache/cloudstack-documentation/pull/281#discussion_r1059261214


##
source/adminguide/networker_plugin.rst:
##
@@ -0,0 +1,221 @@
+.. Licensed to the Apache Software Foundation (ASF) under one
+   or more contributor license agreements.  See the NOTICE file
+   distributed with this work for additional information#
+   regarding copyright ownership.  The ASF licenses this file
+   to you under the Apache License, Version 2.0 (the
+   "License"); you may not use this file except in compliance
+   with the License.  You may obtain a copy of the License at
+   http://www.apache.org/licenses/LICENSE-2.0
+   Unless required by applicable law or agreed to in writing,
+   software distributed under the License is distributed on an
+   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+   KIND, either express or implied.  See the License for the
+   specific language governing permissions and limitations
+   under the License.
+
+.. _DELL EMC Networker Backup and Recovery Plugin:
+
+DELL EMC Networker Backup and Recovery Plugin
+=
+
+About the DELL EMC Networker Backup and Recovery Plugin
+-
+
+Administrators must make sure that the following requirements and 
prerequisites are met in order for the plugin
+to work as expected.
+
+EMC Networker Server
+
+#. A fairly recent .rpm or .deb Linux distribution that is supported by DELL 
EMC Networker for the installed version.
+#. Network connectivity between the Cloudstack Management Servers in your zone 
and DELL EMC Networker Server
+#. Administration access to the DELL EMC Networker management consoles
+#. Unrestricted access to API port (running default at: 9090/tcp)
+#. A proper timezone set. Identical to the Hypervisors and Management server
+#. Proper DNS resolution of the Clients
+
+KVM Hypervisor(s)
+
+#. A BASH shell at minimum version 4.4.19
+#. DELL EMC Networker client must be installed and in running state
+#. Hypervisor must be associated with the DELL EMC Networker server as CLIENT
+#. DELL EMC Networker can connect and verify certificates to the Hyper-v Client
+#. A Hypervisor must be in UP and ENABLED state and resource state 
respectively in order to be able to get backups
+   for the VMS running.
+#. A proper timezone set. Identical to the EMC Networker Server and Management 
server
+#. Proper DNS resolution of the EMC Networker server
+
+Virtual Machines
+
+#. It is HIGHLY recommended to run qemu-guest-agent on the Machines you are 
planning to backup.
+#. There has been no testing regarding KVM Primary Storage snapshots and 
possible problems with EMC DELL Networker plugin
+#. In case you are using KVM Primary Storage snapshots, you have EMC Networker 
and you want to proceed with the
+   installation of this plugin proceed with extreme caution.
+
+General Concepts
+
+#. DELL EMC Networker POLICIES are presented as Backup Provider Offerings to 
Cloudstack.
+   At that level we can set the Protection Period (aka Expiration) to specify 
when backups
+   will expire. Restricted data zones can also be defined in POLICIES to 
create fine grain permissions.
+#. As per EMC Networker Glossary and design those POLICIES are not actually 
used. They act as a placeholder
+   for the backup offerings and the retention policies.
+#. DELL EMC Networker has no ability to initiate backup tasks for KVM Virtual 
Machines at the moment.
+   The implementation is based on manual save sets initiated by the Cloudstack 
Networker plugin.
+#. The tag -CSBKP- in the comment of the POLICY indicates that this policy is 
available to Cloudstack
+   Other POLICIES used in your infrastructure will not be visible inside 
Cloudstack. It is recommended to create
+   brand new POLICIES dedicated to Cloudstack and settings the Protection 
Periods to match the backup plan retention
+   you wish to enable for each of the offerings.
+#. For each KVM Cluster you have, a relevant dummy client must be created in 
the DELL EMC Networker. This is used as a
+   placeholder for being able to backup and restore your Virtual Machines from 
all hosts within the cluster.
+#. Cross cluster restores are indirectly supported by restoring to the 
original cluster and then migrating the Virtual
+   Machine to the destination cluster.
+#. Any manual KVM backup you initiate (from the hyper-v command line) will be 
registered in Cloudstack automatically.
+   You need to use the client scripts and pass the proper parameteres to do so.
+#. Any backup you expire/remove from the DELL EMC Networker side will be 
unregistered in Cloudstack automatically.
+
+Installing DELL EMC Networker Backup and Recovery Plugin
+
+
+The B Networker plugin has been designed and implemented taking in mind the 
particularities of the DELL EMC Networker
+backup suite. It has been 

[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #281: DELLEMC Networker B Plugin Documentation

2022-12-21 Thread GitBox


blueorangutan commented on PR #281:
URL: 
https://github.com/apache/cloudstack-documentation/pull/281#issuecomment-1362307988

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/281. 
(QA-JID 19)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #281: DELLEMC Networker B Plugin Documentation

2022-12-21 Thread GitBox


blueorangutan commented on PR #281:
URL: 
https://github.com/apache/cloudstack-documentation/pull/281#issuecomment-1362307695

   @fermosan a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] fermosan commented on pull request #281: DELLEMC Networker B Plugin Documentation

2022-12-21 Thread GitBox


fermosan commented on PR #281:
URL: 
https://github.com/apache/cloudstack-documentation/pull/281#issuecomment-1362307035

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #297: Update about.rst

2022-12-16 Thread GitBox


blueorangutan commented on PR #297:
URL: 
https://github.com/apache/cloudstack-documentation/pull/297#issuecomment-1355177252

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/297. 
(QA-JID 18)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #297: Update about.rst

2022-12-16 Thread GitBox


blueorangutan commented on PR #297:
URL: 
https://github.com/apache/cloudstack-documentation/pull/297#issuecomment-1355175866

   @rohityadavcloud a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] rohityadavcloud commented on pull request #297: Update about.rst

2022-12-16 Thread GitBox


rohityadavcloud commented on PR #297:
URL: 
https://github.com/apache/cloudstack-documentation/pull/297#issuecomment-1355175301

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] alexandremattioli opened a new pull request, #297: Update about.rst

2022-12-16 Thread GitBox


alexandremattioli opened a new pull request, #297:
URL: https://github.com/apache/cloudstack-documentation/pull/297

   typo fix


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #294: metrics notes

2022-12-16 Thread GitBox


blueorangutan commented on PR #294:
URL: 
https://github.com/apache/cloudstack-documentation/pull/294#issuecomment-1355045327

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/294. 
(QA-JID 17)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #294: metrics notes

2022-12-16 Thread GitBox


blueorangutan commented on PR #294:
URL: 
https://github.com/apache/cloudstack-documentation/pull/294#issuecomment-1355044511

   @rohityadavcloud a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] rohityadavcloud commented on pull request #294: metrics notes

2022-12-16 Thread GitBox


rohityadavcloud commented on PR #294:
URL: 
https://github.com/apache/cloudstack-documentation/pull/294#issuecomment-1355042362

   
   @blueorangutan docbuild
   
   


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] rohityadavcloud merged pull request #295: 4.17.2.0 release and upgrade notes

2022-12-16 Thread GitBox


rohityadavcloud merged PR #295:
URL: https://github.com/apache/cloudstack-documentation/pull/295


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #296: config: edge zone

2022-12-16 Thread GitBox


blueorangutan commented on PR #296:
URL: 
https://github.com/apache/cloudstack-documentation/pull/296#issuecomment-1354465599

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/296. 
(QA-JID 16)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #296: config: edge zone

2022-12-16 Thread GitBox


blueorangutan commented on PR #296:
URL: 
https://github.com/apache/cloudstack-documentation/pull/296#issuecomment-1354464914

   @shwstppr a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] shwstppr commented on pull request #296: config: edge zone

2022-12-16 Thread GitBox


shwstppr commented on PR #296:
URL: 
https://github.com/apache/cloudstack-documentation/pull/296#issuecomment-1354463764

   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] shwstppr opened a new pull request, #296: config: edge zone

2022-12-16 Thread GitBox


shwstppr opened a new pull request, #296:
URL: https://github.com/apache/cloudstack-documentation/pull/296

   For feature: https://github.com/apache/cloudstack/pull/6840


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #295: 4.17.2.0 release and upgrade notes

2022-12-13 Thread GitBox


blueorangutan commented on PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#issuecomment-1348168650

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/295. 
(QA-JID 15)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #295: 4.17.2.0 release and upgrade notes

2022-12-13 Thread GitBox


blueorangutan commented on PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#issuecomment-1348168040

   @rohityadavcloud a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] rohityadavcloud commented on pull request #295: 4.17.2.0 release and upgrade notes

2022-12-13 Thread GitBox


rohityadavcloud commented on PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#issuecomment-1348167278

   Thanks @weizhouapache I've removed it.
   @blueorangutan docbuild


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] weizhouapache commented on a diff in pull request #295: 4.17.2.0 release and upgrade notes

2022-12-13 Thread GitBox


weizhouapache commented on code in PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#discussion_r1046902790


##
source/upgrading/upgrade/upgrade-4.17.rst:
##
@@ -47,6 +48,13 @@ Overview of Upgrade Steps:
 
 .. include:: _customisation_warnings.rst
 
+.. warning::
+If you are not already using the |sysvm64-version| System VM template you 
will need to

Review Comment:
   @rohityadavcloud 
   that's fine.
   
   I meant the line 39 and the new warning (line 51 to line 54) can be removed, 
   or change to other word like "**Upload the 4.17.2 System VM template if they 
are not bundled with cloudstack-management package.**"
   
   now it looks like (it should be optional)
   
![image](https://user-images.githubusercontent.com/57355700/207284970-27062d80-c7ff-4cee-b006-a8ad3baad166.png)
   and
   
![image](https://user-images.githubusercontent.com/57355700/207285205-16335dbb-a917-4f06-bdac-b4ecf8412f30.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.

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

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



[GitHub] [cloudstack-documentation] rohityadavcloud commented on a diff in pull request #295: 4.17.2.0 release and upgrade notes

2022-12-13 Thread GitBox


rohityadavcloud commented on code in PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#discussion_r1046838530


##
source/upgrading/upgrade/upgrade-4.17.rst:
##
@@ -47,6 +48,13 @@ Overview of Upgrade Steps:
 
 .. include:: _customisation_warnings.rst
 
+.. warning::
+If you are not already using the |sysvm64-version| System VM template you 
will need to

Review Comment:
   Here's what we say in the doc build page @weizhouapache : 
https://qa.cloudstack.cloud/builds/docs-build/pr/295/upgrading/upgrade/upgrade-4.17.html
   
   And this is same for all the upgrade 4.x.y versions:
   https://user-images.githubusercontent.com/95203/207274623-f167eede-6e07-4396-bc6b-ea4845548be2.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.

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

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



[GitHub] [cloudstack-documentation] weizhouapache commented on a diff in pull request #295: 4.17.2.0 release and upgrade notes

2022-12-13 Thread GitBox


weizhouapache commented on code in PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#discussion_r1046834517


##
source/upgrading/upgrade/upgrade-4.17.rst:
##
@@ -47,6 +48,13 @@ Overview of Upgrade Steps:
 
 .. include:: _customisation_warnings.rst
 
+.. warning::
+If you are not already using the |sysvm64-version| System VM template you 
will need to

Review Comment:
   @rohityadavcloud 
   thanks. if so, this part may be not required.
   (systemvm registration is required for 4.16, but not since 4.17)



-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] rohityadavcloud commented on a diff in pull request #295: 4.17.2.0 release and upgrade notes

2022-12-13 Thread GitBox


rohityadavcloud commented on code in PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#discussion_r1046791959


##
source/upgrading/upgrade/upgrade-4.17.rst:
##
@@ -47,6 +48,13 @@ Overview of Upgrade Steps:
 
 .. include:: _customisation_warnings.rst
 
+.. warning::
+If you are not already using the |sysvm64-version| System VM template you 
will need to

Review Comment:
   Yes, the new 4.17.2 systemvmtemplate is bundled with cloudstack-management 
package @weizhouapache 
   (this boilerplate is same for all other files. I copied it from 
upgrade-4.16.rst)



-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] weizhouapache commented on a diff in pull request #295: 4.17.2.0 release and upgrade notes

2022-12-13 Thread GitBox


weizhouapache commented on code in PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#discussion_r1046781435


##
source/upgrading/upgrade/upgrade-4.17.rst:
##
@@ -47,6 +48,13 @@ Overview of Upgrade Steps:
 
 .. include:: _customisation_warnings.rst
 
+.. warning::
+If you are not already using the |sysvm64-version| System VM template you 
will need to

Review Comment:
   @rohityadavcloud 
   Is the new systemvm templates bundled with cloudstack-management 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.

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

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #295: 4.17.2.0 release and upgrade notes

2022-12-13 Thread GitBox


blueorangutan commented on PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#issuecomment-1347902367

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/295. 
(QA-JID 14)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #295: 4.17.2.0 release and upgrade notes

2022-12-13 Thread GitBox


blueorangutan commented on PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#issuecomment-1347901758

   @rohityadavcloud a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] rohityadavcloud commented on pull request #295: 4.17.2.0 release and upgrade notes

2022-12-13 Thread GitBox


rohityadavcloud commented on PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#issuecomment-1347900920

   
   @blueorangutan docbuild
   
   


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #295: 4.17.2.0 release and upgrade notes

2022-12-12 Thread GitBox


blueorangutan commented on PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#issuecomment-1346860073

   QA-Doc build preview: https://qa.cloudstack.cloud/builds/docs-build/pr/295. 
(QA-JID 13)


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



[GitHub] [cloudstack-documentation] blueorangutan commented on pull request #295: 4.17.2.0 release and upgrade notes

2022-12-12 Thread GitBox


blueorangutan commented on PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#issuecomment-1346859284

   @rohityadavcloud a Jenkins job has been kicked to build the document. 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.

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

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



[GitHub] [cloudstack-documentation] rohityadavcloud commented on pull request #295: 4.17.2.0 release and upgrade notes

2022-12-12 Thread GitBox


rohityadavcloud commented on PR #295:
URL: 
https://github.com/apache/cloudstack-documentation/pull/295#issuecomment-1346858291

   
   @blueorangutan docbuild
   
   


-- 
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: dev-unsubscr...@cloudstack.apache.org

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



  1   2   3   4   5   6   7   8   9   10   >