This message was deleted.
# k3d
a
This message was deleted.
1
r
c
I'm having the same issue. I don't have any solution yet, but I'll pass along if I find anything.
I'm following the setup instructions as well but not using argo. Something is wonky with k3d generally is my guess. Hopefully its not a Mac issue. I'm also using a mac.
p
Works fine for me on mac m2. Are you sure your kubeconfig is up to date?
r
actually I found other way to run everything, so you have to do next: • checkout argocd. • create cluster a cluster and all the resources:
Copy code
kubectl create namespace argocd
kubectl apply -n argocd --force -f manifests/install.yaml
• scale down everything via:
Copy code
kubectl -n argocd scale statefulset/argocd-application-controller --replicas 0
kubectl -n argocd scale deployment/argocd-dex-server --replicas 0
kubectl -n argocd scale deployment/argocd-repo-server --replicas 0
kubectl -n argocd scale deployment/argocd-server --replicas 0
kubectl -n argocd scale deployment/argocd-redis --replicas 0
kubectl -n argocd scale deployment/argocd-applicationset-controller --replicas 0
kubectl -n argocd scale deployment/argocd-notifications-controller --replicas 0
• run from your IDE or cli(you have to be in project root)
Copy code
make start-local
• Im using Goland as my primary IDE so I did next:
Copy code
go get -t <http://github.com/google/gops/|github.com/google/gops/>
• then you will be able to attach to the running ArgoCD processes/services and debug everything.
👀 1