installing extension argo rollout as a plugin for kubectl on linux
To setup argocd plugin for kubectl, we need to run the following command on our linux machine
curl -LO https://github.com/argoproj/argo-rollouts/releases/latest/download/kubectl-argo-rollouts-linux-amd64
chmod +x ./kubectl-argo-rollouts-linux-amd64
sudo mv ./kubectl-argo-rollouts-linux-amd64 /usr/local/bin/kubectl-argo-rollouts
Finally test if it is working
kubectl argo rollouts version
Comments