DEV Community

Cover image for Disabling TLS in ArgoCD server
nulldutra
nulldutra

Posted on

Disabling TLS in ArgoCD server

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:
  ...
Enter fullscreen mode Exit fullscreen mode

Restarting deployment

It's necessary to restart the deployment to apply the configuration

kubectl rollout restart deployment argocd-server -n argocd
Enter fullscreen mode Exit fullscreen mode

Top comments (0)