Skip to content

Latest commit

 

History

History
50 lines (37 loc) · 1.7 KB

File metadata and controls

50 lines (37 loc) · 1.7 KB
title linkTitle weight description
User Guide
User Guide
20
Install, configure, and operate AICR

Documentation for platform operators deploying and operating GPU-accelerated Kubernetes clusters using AI Cluster Runtime (AICR).

Audience

This section is for users who:

  • Install and use the aicr CLI tool
  • Deploy the AICR agent to capture cluster snapshots
  • Generate recipes and bundles for their environments
  • Use the API for programmatic configuration generation

Documents

Document Description
Installation Install the aicr CLI (automated script, manual, or build from source)
CLI Reference Complete command reference with examples for all CLI operations
API Reference REST API quick start and endpoint documentation
Agent Deployment Deploy the Kubernetes agent for automated cluster snapshots

Quick Start

# Install aicr CLI (Homebrew)
brew tap NVIDIA/aicr
brew install aicr

# Or use the install script
curl -sfL https://raw.githubusercontent.com/NVIDIA/aicr/main/install | bash -s --

# Generate a recipe for your environment
aicr recipe --service eks --accelerator h100 --intent training -o recipe.yaml

# Create deployment bundles
aicr bundle --recipe recipe.yaml -o ./bundles

# Deploy to your cluster
cd bundles && chmod +x deploy.sh && ./deploy.sh

Related Documentation