Tarak v1.0.11
⚡ Tarak v1.0.11
Next-Generation, Native Kubernetes Alternative for All Platforms
🚀 Release Highlights
- Version:
1.0.11(v1.0.11) - Release Type:
Fix/Patch detected (patch) - Commit:
538610c - Build Date:
2026-08-23T11:59:58Z - Included Binaries:
- ⚡
tarak: All-in-one unified server, agent & CLI runtime - 🖥️
tarakd: Dedicated API server & control plane daemon - 🤖
taraks: Dedicated worker node agent daemon - 🎮
tarakctl/taraktl: Kubernetes-compatible command-line control tool
- ⚡
- Zero External Dependencies: Natively runs on Windows, Linux, and macOS without Docker Desktop, WSL, or Podman.
📦 Quick Installation
🐧 Linux & 🍎 macOS (One-Line Install)
curl -fsSL https://raw.githubusercontent.com/vikukumar/tarak/main/install.sh | bashOr manually extract and add to your PATH:
# Example for Linux AMD64
curl -LO https://github.com/vikukumar/tarak/releases/download/v1.0.11/tarak_1.0.11_linux_amd64.tar.gz
tar -xzf tarak_1.0.11_linux_amd64.tar.gz
sudo mv tarak tarakctl /usr/local/bin/🪟 Windows (PowerShell One-Line Install)
# Download and extract automatically
$ver = "1.0.11"
Invoke-WebRequest -Uri "https://github.com/vikukumar/tarak/releases/download/v$ver/tarak_${ver}_windows_amd64.zip" -OutFile "tarak.zip"
Expand-Archive -Path "tarak.zip" -DestinationPath "$env:ProgramFiles\Tarak" -Force
[Environment]::SetEnvironmentVariable("Path", $env:Path + ";$env:ProgramFiles\Tarak", [EnvironmentVariableTarget]::Machine)📊 Platform & Binary Matrix
| OS | Architecture | Package Archive | Description |
|---|---|---|---|
| Linux | amd64 (x86_64) |
tarak_1.0.11_linux_amd64.tar.gz |
Standard 64-bit Linux Servers & Desktops |
| Linux | arm64 (aarch64) |
tarak_1.0.11_linux_arm64.tar.gz |
ARM Linux (Raspberry Pi 4/5, AWS Graviton) |
| Windows | amd64 (x86_64) |
tarak_1.0.11_windows_amd64.zip |
Windows 10/11 & Windows Server (64-bit) |
| Windows | arm64 |
tarak_1.0.11_windows_arm64.zip |
Windows on ARM (Surface Pro, Snapdragon X) |
| macOS | arm64 (Apple Silicon) |
tarak_1.0.11_darwin_arm64.tar.gz |
Apple M1/M2/M3/M4 Macs |
| macOS | amd64 (Intel) |
tarak_1.0.11_darwin_amd64.tar.gz |
Intel-based Macs |
🛡️ Verification & Integrity
Verify the integrity of downloaded binaries using the official checksums:
# Verify checksums
sha256sum -c checksums.txt⚡ Getting Started
# 1. Start the Tarak Server & Native Runtime
tarak server
# 2. Deploy your workloads
tarakctl apply -f app-sample.yml
# 3. View running pods & services
tarakctl get all -A -o wide