A tool to automate the deployment of containerized applications on AWS EKS securely within the user's account.
AstraOps is a cloud deployment automation platform that simplifies the deployment of containerized applications on AWS EKS. The platform handles infrastructure provisioning, application deployment, and monitoring setup through a simple command-line interface.
The AstraOps platform consists of three main components:
The backend orchestration engine that manages the deployment lifecycle. Built with Bun and Hono, it provides a REST API that coordinates Terraform for infrastructure provisioning, kubectl for Kubernetes deployments, and Helm for monitoring setup. Handles AWS service integrations and streams real-time deployment logs via SSE.
A command-line interface tool that serves as the entry point for developers. Built with TypeScript and distributed as standalone binaries for Linux, Windows, and macOS. Manages AWS IAM authentication, creates execution roles with least-privilege policies, and communicates with the AstraBack API to orchestrate deployments.
A reference implementation demonstrating the platform capabilities. A simple full-stack points counter application with React frontend, Express.js backend, and MongoDB database. Includes a complete CI/CD pipeline with GitHub Actions that automatically builds Docker images and deploys to AWS EKS using AstraOps.
- Define your application services in an
astraops.yamlfile - Run
astraops-cli deployto provision infrastructure and deploy - AstraCLI authenticates with AWS and creates necessary IAM roles
- AstraBack orchestrates Terraform to create EKS cluster and VPC
- Application containers are deployed to Kubernetes
- Optional monitoring stack (Grafana + Prometheus) is installed
- Run
astraops-cli destroyto tear down all infrastructure
Install the CLI:
npm install -g @astraops/astraops-cliConfigure environment variables and create an astraops.yaml file:
applicationName: my-app
services:
- name: frontend
image: my-frontend:latest
port: 80Deploy:
astraops-cli deploy --monitoringFor detailed documentation, visit:
Apache License 2.0
