Setting up ArgoCD

ArgoCD SetUp Prepare Helm Add ArgoCD Helm Repository helm repo add argo https://argoproj.github.io/argo-helm helm repo update Inside argocd-values.yaml server: service: type: NodePort ports: http: 80 configs: params: server.insecure: "true" # ArgoCD needs to run with TLS disabled since Traefik will handle it. controller: resources: requests: cpu: 250m memory: 256Mi Because I will use argocd to deploy traefik, i’ll have to access argocd via node ip or port forward. I’ll configure a nicer way once I have my ingress up and running. ...

January 15, 2026