<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Is Hybrid architecture (shared activegates beetween oneagent in vm and oneagent in container) valid ? in Container platforms</title>
    <link>https://community.dynatrace.com/t5/Container-platforms/Is-shared-ActiveGates-between-OneAgent-in-vm-and-OneAgent-in/m-p/286442#M3286</link>
    <description>&lt;P&gt;Thank your for your reply&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/4669"&gt;@michiel_otten&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's indeed the error we are getting.&lt;/P&gt;&lt;P&gt;Here is the solution we chose to avoid to change the shared ActiveGate's certificates.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;We choose to &lt;STRONG&gt;not&lt;/STRONG&gt; ignore the certificate.&lt;/LI&gt;&lt;LI&gt;We inject the trustedCAs to authorize the communication between CSI and Docker Registry to download code module.&lt;/LI&gt;&lt;LI&gt;We add 2 env var to oneagent to ignore the self signed certificate&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;apiVersion: dynatrace.com/v1beta5
kind: DynaKube
spec:
  skipCertCheck: false
  trustedCAs: companyCA
  oneAgent:
    cloudNativeFullStack:
      env:
        - name: DT_SSLVERIFYHOST
          value: "false"
        - name: DT_SSLVERIFYPEER
          value: "false"&lt;/LI-CODE&gt;&lt;P&gt;Could be usefull for people in the same shared ActiveGate configuration.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;I found this workaround here :&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://community.dynatrace.com/t5/Heads-up-from-Dynatrace/Resolved-OneAgent-pods-unable-to-validate-SSL-cert-of/ta-p/255723" target="_blank"&gt;https://community.dynatrace.com/t5/Heads-up-from-Dynatrace/Resolved-OneAgent-pods-unable-to-validate-SSL-cert-of/ta-p/255723&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 19 Sep 2025 12:23:43 GMT</pubDate>
    <dc:creator>prgss</dc:creator>
    <dc:date>2025-09-19T12:23:43Z</dc:date>
    <item>
      <title>Is shared ActiveGates between OneAgent in vm and OneAgent in container valid?</title>
      <link>https://community.dynatrace.com/t5/Container-platforms/Is-shared-ActiveGates-between-OneAgent-in-vm-and-OneAgent-in/m-p/286119#M3281</link>
      <description>&lt;P&gt;Hi Dynatrace,&lt;/P&gt;
&lt;P&gt;We have trouble deploying CloudNative Dynatrace in OpenShift clusters.&lt;BR /&gt;Can you confirm us that these "hybrid" architecture is valid ?&lt;BR /&gt;&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dynatrace-noname.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30088iA681F0166F3E806D/image-size/large?v=v2&amp;amp;px=999" role="button" title="dynatrace-noname.png" alt="dynatrace-noname.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;- Install CloudNative Dynatrace in OpenShift clusters with Company trustedCA in Dynakube&lt;/P&gt;
&lt;P&gt;- Private docker registry holding OneAgent and codemodules images exposing the Company certificate (green box on the left)&lt;/P&gt;
&lt;P&gt;- ActiveGate VM with Dynatrace self signed Certificate (purple box)&lt;/P&gt;
&lt;P&gt;- Company Internet Proxy (no certificate)&lt;/P&gt;
&lt;P&gt;- Notice that we have many oneagent deployed in virtual machine. These oneagents trust the ActiveGate VM Certificate.&lt;/P&gt;
&lt;P&gt;- We don't want to change the exposed certificate of ActiveGate.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;When we add the trustedCAs field in the dynakube configuration, the communication between oneagent pod and activegate vm are broken (invalid certificate).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="broken-cert.png" style="width: 999px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30089iE470B8DA2E614070/image-size/large?v=v2&amp;amp;px=999" role="button" title="broken-cert.png" alt="broken-cert.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jan 2026 10:30:28 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Container-platforms/Is-shared-ActiveGates-between-OneAgent-in-vm-and-OneAgent-in/m-p/286119#M3281</guid>
      <dc:creator>prgss</dc:creator>
      <dc:date>2026-01-09T10:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Is Hybrid architecture (shared activegates beetween oneagent in vm and oneagent in container) valid ?</title>
      <link>https://community.dynatrace.com/t5/Container-platforms/Is-shared-ActiveGates-between-OneAgent-in-vm-and-OneAgent-in/m-p/286134#M3282</link>
      <description>&lt;P&gt;In my opinion, the problem is that when you configure a&amp;nbsp;&lt;SPAN&gt;trustedCA&amp;nbsp;in Kubernetes, it will use it for &lt;U&gt;all outgoing communication&lt;/U&gt;. Now: when the OneAgents want to sent out that information, it'll mismatch with the self-signed one.&lt;BR /&gt;&lt;/SPAN&gt;You could potentially test this to add it to 1 of the Environment ActiveGate and put that one in a network zone.&lt;BR /&gt;&lt;BR /&gt;if this doesn't help, I'd recommend getting Dynatrace support onboard to figure out what the best solution for you is.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="michiel_otten_0-1758021178503.png" style="width: 400px;"&gt;&lt;img src="https://community.dynatrace.com/t5/image/serverpage/image-id/30096i5D3EA678F0B2A1F7/image-size/medium?v=v2&amp;amp;px=400" role="button" title="michiel_otten_0-1758021178503.png" alt="michiel_otten_0-1758021178503.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Sep 2025 11:13:09 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Container-platforms/Is-shared-ActiveGates-between-OneAgent-in-vm-and-OneAgent-in/m-p/286134#M3282</guid>
      <dc:creator>michiel_otten</dc:creator>
      <dc:date>2025-09-16T11:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Is Hybrid architecture (shared activegates beetween oneagent in vm and oneagent in container) valid ?</title>
      <link>https://community.dynatrace.com/t5/Container-platforms/Is-shared-ActiveGates-between-OneAgent-in-vm-and-OneAgent-in/m-p/286442#M3286</link>
      <description>&lt;P&gt;Thank your for your reply&amp;nbsp;&lt;a href="https://community.dynatrace.com/t5/user/viewprofilepage/user-id/4669"&gt;@michiel_otten&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's indeed the error we are getting.&lt;/P&gt;&lt;P&gt;Here is the solution we chose to avoid to change the shared ActiveGate's certificates.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;We choose to &lt;STRONG&gt;not&lt;/STRONG&gt; ignore the certificate.&lt;/LI&gt;&lt;LI&gt;We inject the trustedCAs to authorize the communication between CSI and Docker Registry to download code module.&lt;/LI&gt;&lt;LI&gt;We add 2 env var to oneagent to ignore the self signed certificate&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;apiVersion: dynatrace.com/v1beta5
kind: DynaKube
spec:
  skipCertCheck: false
  trustedCAs: companyCA
  oneAgent:
    cloudNativeFullStack:
      env:
        - name: DT_SSLVERIFYHOST
          value: "false"
        - name: DT_SSLVERIFYPEER
          value: "false"&lt;/LI-CODE&gt;&lt;P&gt;Could be usefull for people in the same shared ActiveGate configuration.&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;I found this workaround here :&amp;nbsp;&lt;SPAN&gt;&lt;A href="https://community.dynatrace.com/t5/Heads-up-from-Dynatrace/Resolved-OneAgent-pods-unable-to-validate-SSL-cert-of/ta-p/255723" target="_blank"&gt;https://community.dynatrace.com/t5/Heads-up-from-Dynatrace/Resolved-OneAgent-pods-unable-to-validate-SSL-cert-of/ta-p/255723&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Sep 2025 12:23:43 GMT</pubDate>
      <guid>https://community.dynatrace.com/t5/Container-platforms/Is-shared-ActiveGates-between-OneAgent-in-vm-and-OneAgent-in/m-p/286442#M3286</guid>
      <dc:creator>prgss</dc:creator>
      <dc:date>2025-09-19T12:23:43Z</dc:date>
    </item>
  </channel>
</rss>

