Managed Kubernetes
Deploy, scale, and manage containerized applications with ease.
Creating a Cluster
- Navigate to Enterprise > Kubernetes.
- Click Create Cluster.
- Cluster Config: Name your cluster and select the Kubernetes version.
- Node Pools: Add worker nodes.
- Select Instance Type (e.g.,
c6.xlarge). - Set Node Count (minimum 1).
- Enable Auto-scaling if needed.
- Select Instance Type (e.g.,

Accessing the Cluster
Once provisioned, download the kubeconfig file.
# Set credentials
export KUBECONFIG=~/Downloads/kubeconfig.yaml
# Check nodes
kubectl get nodes
Installing Add-ons
You can install common add-ons directly from the dashboard:
- Metrics Server (for auto-scaling)
- Ingress NGINX (for load balancing)
- Cert Manager (for SSL/TLS)