Releases: plantonhq/planton
Releases · plantonhq/planton
v0.1.0
Planton v0.1.0
This release includes the CLI and website deployment.
Pre-built Pulumi binaries and Terraform module zips are hosted on downloads.planton.dev.
Changelog
- e27ce5c: rebrand OpenMCF to Planton (Swarup Donepudi swarup.donepudi@gmail.com)
CLI Installation
macOS (Homebrew)
brew tap plantonhq/tap
brew install plantonTo upgrade:
brew upgrade plantonmacOS (Manual)
# Apple Silicon (M1/M2/M3)
curl -LO https://github.com/plantonhq/planton/releases/download/v0.1.0/cli_0.1.0_darwin_arm64.tar.gz
tar -xzf cli_0.1.0_darwin_arm64.tar.gz
chmod +x planton
sudo mv planton /usr/local/bin/
# Intel
curl -LO https://github.com/plantonhq/planton/releases/download/v0.1.0/cli_0.1.0_darwin_amd64.tar.gz
tar -xzf cli_0.1.0_darwin_amd64.tar.gz
chmod +x planton
sudo mv planton /usr/local/bin/Linux
# x86_64
curl -LO https://github.com/plantonhq/planton/releases/download/v0.1.0/cli_0.1.0_linux_amd64.tar.gz
tar -xzf cli_0.1.0_linux_amd64.tar.gz
chmod +x planton
sudo mv planton /usr/local/bin/
# ARM64
curl -LO https://github.com/plantonhq/planton/releases/download/v0.1.0/cli_0.1.0_linux_arm64.tar.gz
tar -xzf cli_0.1.0_linux_arm64.tar.gz
chmod +x planton
sudo mv planton /usr/local/bin/Windows
# Download the ZIP file
Invoke-WebRequest -Uri "https://github.com/plantonhq/planton/releases/download/v0.1.0/cli_0.1.0_windows_amd64.zip" -OutFile "cli.zip"
# Extract
Expand-Archive -Path "cli.zip" -DestinationPath "."
# Add to PATH or move to a directory in PATH
Move-Item -Path "planton.exe" -Destination "C:\Windows\System32\"Website
The updated documentation website is available at:
Pulumi Module Binaries
Pre-built Pulumi module binaries are hosted on downloads.planton.dev for all platforms. Each binary is gzip-compressed.
Browse all binaries: downloads.planton.dev/releases/v0.1.0/modules/pulumi/
Available Platforms
| Platform | Suffix | Example |
|---|---|---|
| Linux x86-64 | _linux_amd64.gz |
awsecsservice_linux_amd64.gz |
| macOS Apple Silicon | _darwin_arm64.gz |
awsecsservice_darwin_arm64.gz |
| macOS Intel | _darwin_amd64.gz |
awsecsservice_darwin_amd64.gz |
| Windows x86-64 | _windows_amd64.exe.gz |
awsecsservice_windows_amd64.exe.gz |
Download and Extract
# Example: Download the AWS ECS Service module for your platform
# Linux x86-64
curl -LO https://downloads.planton.dev/releases/v0.1.0/modules/pulumi/awsecsservice_linux_amd64.gz
gunzip awsecsservice_linux_amd64.gz
chmod +x awsecsservice_linux_amd64
# macOS Apple Silicon (M1/M2/M3)
curl -LO https://downloads.planton.dev/releases/v0.1.0/modules/pulumi/awsecsservice_darwin_arm64.gz
gunzip awsecsservice_darwin_arm64.gz
chmod +x awsecsservice_darwin_arm64Terraform Modules
Terraform module zips are hosted on downloads.planton.dev for all deployment components across all providers.
Browse all modules: downloads.planton.dev/releases/v0.1.0/modules/terraform/
Download Zip (Recommended)
# Example: AWS ECS Service
curl -LO https://downloads.planton.dev/releases/v0.1.0/modules/terraform/awsecsservice.zip
unzip awsecsservice.zip -d awsecsservice
cd awsecsservice
terraform init && terraform planGit Source Reference (Alternative)
Reference modules directly in your Terraform configuration:
module "awsecsservice" {
source = "git::https://github.com/plantonhq/planton.git//apis/dev/planton/provider/aws/awsecsservice/v1/iac/tf?ref=v0.1.0"
}Full Changelog: ...v0.1.0