castai-deploy-integration

Featured

Deploy CAST AI across multi-cloud Kubernetes clusters with Terraform modules. Use when onboarding EKS, GKE, or AKS clusters to CAST AI using infrastructure-as-code patterns. Trigger with phrases like "deploy cast ai", "cast ai eks", "cast ai gke", "cast ai aks", "cast ai terraform module".

DevOps & Infrastructure 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# CAST AI Deploy Integration ## Overview Deploy CAST AI to EKS, GKE, and AKS clusters using official Terraform modules. Each cloud provider has a dedicated CAST AI module that handles IAM roles, node configuration, and autoscaler setup. ## Prerequisites - Terraform 1.0+ - CAST AI Full Access API key - Cloud provider credentials configured - Existing Kubernetes cluster ## Instructions ### EKS Deployment ```hcl # main.tf -- EKS cluster onboarding module "castai_eks" { source = "castai/eks-cluster/castai" version = "~> 3.0" api_token = var.castai_api_token aws_account_id = data.aws_caller_identity.current.account_id aws_cluster_region = var.region aws_cluster_name = var.cluster_name # IAM role for CAST AI to manage nodes aws_instance_profile_arn = aws_iam_instance_profile.castai.arn # Autoscaler configuration autoscaler_policies_json = jsonencode({ enabled = true unschedulablePods = { enabled = true } nodeDownscaler = { enabled = true emptyNodes = { enabled = true, delaySeconds = 300 } } spotInstances = { enabled = true spotDiversityEnabled = true } clusterLimits = { enabled = true cpu = { minCores = 4, maxCores = 200 } } }) # Node templates default_node_configuration = module.castai_eks.castai_node_configurations["default"] } ``` ### GKE Deployment ```hcl module "castai_gke" { source = "castai/gke-cluster/castai" version = "~> 2.0" api_token ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category

AI & Automation Featured

castai-reference-architecture

CAST AI reference architecture for multi-cluster Kubernetes cost optimization. Use when designing CAST AI deployment across environments, planning Terraform module structure, or establishing team standards. Trigger with phrases like "cast ai architecture", "cast ai best practices", "cast ai multi-cluster", "cast ai terraform structure".

2,266 Updated today
jeremylongshore
AI & Automation Featured

castai-install-auth

Install and configure CAST AI agent on a Kubernetes cluster with API key authentication. Use when onboarding a cluster to CAST AI, setting up Helm charts, or configuring Terraform provider authentication. Trigger with phrases like "install cast ai", "connect cluster to cast ai", "cast ai setup", "cast ai api key", "cast ai helm install".

2,266 Updated today
jeremylongshore
AI & Automation Featured

castai-local-dev-loop

Set up a local Kubernetes development loop with CAST AI cost monitoring. Use when building cost-aware deployments, testing autoscaler policies, or iterating on Terraform CAST AI configurations locally. Trigger with phrases like "cast ai dev setup", "cast ai local testing", "develop with cast ai", "cast ai terraform dev".

2,266 Updated today
jeremylongshore
AI & Automation Featured

castai-ci-integration

Integrate CAST AI policy validation and cost checks into CI/CD pipelines. Use when adding CAST AI savings verification to GitHub Actions, validating Terraform plans, or gating deployments on cost thresholds. Trigger with phrases like "cast ai CI", "cast ai github actions", "cast ai terraform CI", "cast ai pipeline".

2,266 Updated today
jeremylongshore
AI & Automation Featured

castai-performance-tuning

Optimize CAST AI autoscaler performance, node provisioning speed, and API efficiency. Use when nodes take too long to provision, autoscaler is not reacting fast enough, or optimizing API call patterns for multi-cluster dashboards. Trigger with phrases like "cast ai performance", "cast ai slow", "cast ai node provisioning", "cast ai autoscaler speed".

2,266 Updated today
jeremylongshore