I've been trying to set up ArgoCD for the past day, but I'm hitting a wall. I follow the install instructions in the documentation, but when I run `kubectl apply -n argocd -f https://raw.githubusercontent`, I keep getting a timeout error. Is anyone else running into this issue? What should I do?
3 Answers
Can you clarify what's timing out? It might help to download the file manually and then run `kubectl apply -f ` instead of using the direct link.
It looks like you're using an incomplete URL. Make sure you have the full raw GitHub link. Also, check if you're connected to your cluster by running `kubectl get nodes`.
You might want to try these commands:
`kubectl create namespace argocd`
`kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml`
This should get you up and running!
Yes, that's the URL I've been using per the documentation, but I still encounter a timeout.