Re: Hard limit for Kubernetes worker nodes

2022-06-13 Thread Rohit Yadav
Hi Rishab,

There is no upper limit enforced by CloudStack, the number of VMs, volumes, IPs 
etc are limited on the account/domain and project level and the same 
affect/apply for CKS.


Regards.


From: Rishabh Rapatwar 
Sent: Tuesday, June 7, 2022 16:51
To: dev@cloudstack.apache.org ; 
us...@cloudstack.apache.org 
Subject: Hard limit for Kubernetes worker nodes

Hi all,

I was wondering what is the limit for the number of worker nodes and master
nodes that cloudstack kubernetes service can spin up.

Any input will be appreciated.

Thanks,
Rishabh Rapatwar

 



Re: SystemVM Type? Routing or System?

2022-06-13 Thread Pearl d'Silva
Hi Sean,

It is not necessary to register the system VM template as Routing. During the 
upgrade process ACS detects the registered template by name and sets its type 
to SYSTEM.

The link - http://docs.cloudstack.apache.org/en/latest/adminguide/systemvm.html 
which mentions specifying 'Routing' as the template type is done in case one 
wants to override an existing system VM template with a new one for deploying 
Virtual routers and internal LBs

Regards,
Pearl

From: Sean Lair 
Sent: Thursday, June 9, 2022 1:47 AM
To: dev@cloudstack.apache.org 
Subject: SystemVM Type? Routing or System?

We have some confusion on which Template Type SystemVM templates should be set 
to.  The documentation seems to be inconsistent, could someone help clarify?

The following URL says to set "Routing" to NO when registering a new SystemVM 
Template:
http://docs.cloudstack.apache.org/en/latest/upgrading/upgrade/upgrade-4.16.html

The following URL says to "select Routing":
http://docs.cloudstack.apache.org/en/latest/adminguide/systemvm.html


The following URL says to manually edit the DB and make it type "System":
https://docs.cloudstack.apache.org/en/latest/adminguide/templates/_bypass-secondary-storage-kvm.html?highlight=bypass%20secondary
UPDATE cloud.vm_template SET type='SYSTEM' WHERE uuid='UUID_OF_NEW_TEMPLATE';


Thanks
Sean

 



[GitHub] [cloudstack-terraform-provider] rohityadavcloud commented on pull request #35: Adding support for Kubernetes Clusters

2022-06-13 Thread GitBox


rohityadavcloud commented on PR #35:
URL: 
https://github.com/apache/cloudstack-terraform-provider/pull/35#issuecomment-1153591252

   Good stuff


-- 
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 opened a new pull request, #37: create ssh keypair data-source

2022-06-13 Thread GitBox


Damans227 opened a new pull request, #37:
URL: https://github.com/apache/cloudstack-terraform-provider/pull/37

   From `main.tf`:
   
   ```
   resource "cloudstack_ssh_keypair" "test-key" {
 name   = "myKey"
   
   }
   
   data "cloudstack_ssh_keypair" "my-key-pair" {
   filter {
   name = "name" 
   value = "myKey"
 }
   depends_on = [
   cloudstack_ssh_keypair.test-key
 ]
   }
   
   output "instance-output" {
 value = "${data.cloudstack_ssh_keypair.my-key-pair}"
   }
   
   ```
   
   `terraform apply` output:
   
   ```
   Apply complete! Resources: 1 added, 0 changed, 0 destroyed.
   
   Outputs:
   
   instance-output = {
 "filter" = toset([
   {
 "name" = "name"
 "value" = "myKey"
   },
 ])
 "fingerprint" = "7b:c2:46:e2:71:50:82:2a:3a:ed:fe:84:5a:bd:b4:61"
 "id" = "myKey"
 "name" = "myKey"
   }
   ```
   
   Issue: https://github.com/apache/cloudstack/issues/6016


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