For the complete documentation index, see llms.txt. This page is also available as Markdown.

Container Deployments (CaaS)

AceCloud CaaS lets you deploy containers without managing Kubernetes clusters. Choose between shared infrastructure (pay per CPU/memory) or dedicated flavors with your own network.

Command Structure

ace deployment list                     # List all deployments
ace deployment get <name>               # Get deployment details
ace deployment create ...               # Create a deployment
ace deployment update <name> ...        # Update a deployment
ace deployment delete <name>            # Delete a deployment
ace deployment restart <name>           # Restart a deployment
ace deployment replicas <name>          # List replica pods

Aliases

Command
Aliases

ace deployment

ace deploy, ace caas

ace deployment delete

ace deployment rm

ace deployment get

ace deployment show, ace deployment describe

ace deployment replicas

ace deployment pods

Deployment Types

Shared

  • Pay per CPU core and memory

  • No VPC required

  • Simpler setup

  • Flags: --cpu, --memory

Dedicated

  • Uses a flavor (specific VM type)

  • Requires a VPC network (--network-id or --network-cidr)

  • Flags: --type dedicated, --flavor, --network-id or --network-cidr

Quick Start

Topics

  • Deployments -- Full deployment lifecycle: create, update, delete, restart, and scaling

Last updated