Skip to main content

Managed Kubernetes

Deploy, scale, and manage containerized applications with ease.

Creating a Cluster

  1. Navigate to Enterprise > Kubernetes.
  2. Click Create Cluster.
  3. Cluster Config: Name your cluster and select the Kubernetes version.
  4. Node Pools: Add worker nodes.
    • Select Instance Type (e.g., c6.xlarge).
    • Set Node Count (minimum 1).
    • Enable Auto-scaling if needed.

Kubernetes Cluster Creation

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)