Corein
Initializing Interface
Initializing Interface
Zero-ops control plane. Auto-scaling nodes. Native integration with Corein Load Balancers and Block Storage.
We manage the master nodes. You only pay for the worker nodes you use.
Automatically add or remove nodes based on CPU/RAM usage policies.
Automatic replacement of unhealthy nodes and 99.95% uptime SLA.
Define your infrastructure as code. Our official Terraform provider lets you version control your entire cluster configuration.
resource "corein_kubernetes_cluster" "prod" {
name = "production-cluster"
region = "us-west-1"
version = "1.29"
node_pool {
name = "standard-nodes"
size = "s-2vcpu-4gb"
node_count = 3
auto_scale = true
}
}