Note: This is the CD part. The CI part is located in GitHub Actions
kubectl create namespace argocd
kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml
kubectl get all -n argocd
Note: I got stuck coz we need to add flag --address='0.0.0.0'
to allow all traffic.
kubectl port-forward service/argocd-server -n argocd 8000:443 --address='0.0.0.0'
Default username: admin
#Pass
kubectl -n argocd get secret argocd-initial-admin-secret -o jsonpath="{.data.password}" | base64 -d