Skip to content

Tarak v1.0.13

Choose a tag to compare

@github-actions github-actions released this 23 Aug 12:34
· 3 commits to main since this release

⚡ Tarak v1.0.13

Next-Generation, Native Kubernetes Alternative for All Platforms


🚀 Release Highlights

  • Version: 1.0.13 (v1.0.13)
  • Release Type: Fix/Patch detected (patch)
  • Commit: 4d1d07d
  • Build Date: 2026-08-23T12:31:53Z
  • 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 | bash

Or manually extract and add to your PATH:

# Example for Linux AMD64
curl -LO https://github.com/vikukumar/tarak/releases/download/v1.0.13/tarak_1.0.13_linux_amd64.tar.gz
tar -xzf tarak_1.0.13_linux_amd64.tar.gz
sudo mv tarak tarakctl /usr/local/bin/

🪟 Windows (PowerShell One-Line Install)

# Download and extract automatically
$ver = "1.0.13"
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.13_linux_amd64.tar.gz Standard 64-bit Linux Servers & Desktops
Linux arm64 (aarch64) tarak_1.0.13_linux_arm64.tar.gz ARM Linux (Raspberry Pi 4/5, AWS Graviton)
Windows amd64 (x86_64) tarak_1.0.13_windows_amd64.zip Windows 10/11 & Windows Server (64-bit)
Windows arm64 tarak_1.0.13_windows_arm64.zip Windows on ARM (Surface Pro, Snapdragon X)
macOS arm64 (Apple Silicon) tarak_1.0.13_darwin_arm64.tar.gz Apple M1/M2/M3/M4 Macs
macOS amd64 (Intel) tarak_1.0.13_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