<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: nulldutra</title>
    <description>The latest articles on DEV Community by nulldutra (@nulldutra).</description>
    <link>https://dev.to/nulldutra</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F1110067%2F60179127-ff60-407a-8598-9dca71917170.jpeg</url>
      <title>DEV Community: nulldutra</title>
      <link>https://dev.to/nulldutra</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nulldutra"/>
    <language>en</language>
    <item>
      <title>Disabling TLS in ArgoCD server</title>
      <dc:creator>nulldutra</dc:creator>
      <pubDate>Wed, 28 Jun 2023 18:04:42 +0000</pubDate>
      <link>https://dev.to/nulldutra/disabling-tls-in-argocd-server-4jij</link>
      <guid>https://dev.to/nulldutra/disabling-tls-in-argocd-server-4jij</guid>
      <description>&lt;p&gt;Hi everyone,&lt;/p&gt;

&lt;p&gt;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.&lt;/p&gt;

&lt;p&gt;For disable, edit the configmap &lt;code&gt;argocd-cmd-params-cm&lt;/code&gt; and add &lt;code&gt;server.insecure: "true"&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Example
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;apiVersion: v1
data:
  server.insecure: &lt;span class="s2"&gt;"true"&lt;/span&gt;
kind: ConfigMap
metadata:
  ...
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Restarting deployment
&lt;/h2&gt;

&lt;p&gt;It's necessary to restart the deployment to apply the configuration&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;kubectl rollout restart deployment argocd-server &lt;span class="nt"&gt;-n&lt;/span&gt; argocd
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
      <category>argo</category>
      <category>tls</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
