Hi everyone,
Recently, I started using ArgoCD, and I encountered some issues while configuring it with Ingress nginx. For instance, I faced errors related to TLS, which resulted in many redirects. To resolve this problem, it was necessary to disable TLS in the ArgoCD server.
For disable, edit the configmap argocd-cmd-params-cm
and add server.insecure: "true"
Example
apiVersion: v1
data:
server.insecure: "true"
kind: ConfigMap
metadata:
...
Restarting deployment
It's necessary to restart the deployment to apply the configuration
kubectl rollout restart deployment argocd-server -n argocd
Top comments (0)