User Avatar

Enabling Cost Optimization in your Kubernetes cluster

Code Sample

# values.yaml
capabilities:
  admissionController:
    enabled: true
  rightsizing:
    enabled: true
  binpacking:
    enabled: true

#!/usr/bin/env bash

export API_KEY=<your_komodor_api_key>
export CLUSTER_NAME=<your_cluster_name>
helm repo add komodorio https://helm-charts.komodor.io 
helm repo update
helm install komodor-agent komodorio/komodor-agent -f values.yaml --set apiKey=$API_KEY --set clusterName=$CLUSTER_NAME