Skip to main content
๐ŸŽ“ Claude Code Masterclass Learn AI-assisted development on Udemy โ€” plus the companion book on Leanpub & Amazon. Start Learning
Install ArgoCD on Ubuntu 24.04 LTS
DevOps

Install ArgoCD on Ubuntu 24.04 LTS: Complete Guide (2026)

Step-by-step guide to install ArgoCD on Ubuntu 24.04 LTS. Repository setup, installation, configuration, and verification.

LB
Luca Berton
ยท 1 min read

Here is how to install ArgoCD on Ubuntu 24.04 LTS. Tested and verified.

Prerequisites

  • Ubuntu 24.04 LTS installed and updated
  • Root or sudo access
  • Internet connection

Step 1: Update System

sudo apt update && sudo apt upgrade -y

Step 2: Add Official Repository

ArgoCD should be installed from the official repository to get the latest stable version and security updates.

# Add the official ArgoCD repository
# Check ArgoCD documentation for the latest repo URL
sudo apt install -y curl gnupg2

Step 3: Install ArgoCD

sudo apt install -y argocd

Step 4: Verify Installation

argocd version

Expected output should show the installed version.

Step 5: Post-Install Configuration

# Enable and start the service (if applicable)
sudo systemctl enable --now argocd

# Verify status
sudo systemctl status argocd

Troubleshooting

Package Not Found

Make sure the repository was added correctly:

# List configured repositories
apt repolist

Permission Denied

Ensure your user has the correct group membership:

sudo usermod -aG argocd $USER
newgrp argocd

Uninstall

sudo apt remove -y argocd

About the Author

I am Luca Berton, AI and Cloud Advisor. Book a consultation to get help with your infrastructure setup.

Free 30-min AI & Cloud consultation

Book Now