Frank
Frank

Reputation: 512

Install ArgoCD using Docker DesktopK8s

Following the quick start guide to install ArgoCD using Docker DesktopK8s on a MacOS Darwin Kernel Version 23.6.0

kubectl create namespace argocd
kubectl apply -n argo -f https://github.com/argoproj/argo-workflows/releases/download/v3.6.2/install.yaml

But only 2 pods come up.

NAME                                   READY   STATUS    RESTARTS   AGE
argo-server-57cd4c4845-rsfrn           1/1     Running   0          13m
workflow-controller-5bfddc4596-88ggs   1/1     Running   0          13m

Any ideas? Thx

Upvotes: 0

Views: 7

Answers (1)

Frank
Frank

Reputation: 512

Using a stable version seems to be the answer, not sure why the release does not work. :(

kubectl apply -n argo -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml

Upvotes: 0

Related Questions