Trouble Installing ArgoCD?

0
0
Asked By TechWanderer99 On

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

Answered By CloudRunner42 On

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.

Answered By GitHubGuru27 On

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`.

Answered By YAMLmaster92 On

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!

SelfDoubter88 -

Yes, that's the URL I've been using per the documentation, but I still encounter a timeout.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.