Feedback

Chat Icon

GitOps the Hard Way, with Argo CD

Build Real GitOps Pipelines From Empty Clusters to Automated Deploys

Install Argo CD: From kubectl apply to argocd login
34%

Installing the Argo CD CLI

In addition to the Web UI, you can also interact with your Argo CD instance using a CLI from your terminal. Here is how to install it:

# Download the binary
curl -sSL -o argocd-linux-amd64 \
  https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64

# Install it
install -m 555 argocd-linux-amd64 /usr/local/bin/argocd

# Remove the binary from the current directory
rm argocd-linux-amd64

GitOps the Hard Way, with Argo CD

Build Real GitOps Pipelines From Empty Clusters to Automated Deploys

Enroll now to unlock all content and receive all future updates for free.