<?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>question Re: Runtime Addon Upload Failing - &amp;quot;Failed saving addon content to NFS&amp;quot; in Support Questions</title>
    <link>https://community.cloudera.com/t5/Support-Questions/Runtime-Addon-Upload-Failing-quot-Failed-saving-addon/m-p/413653#M254182</link>
    <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/144911"&gt;@DevOpsWorld&lt;/a&gt;&amp;nbsp;Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 05 Mar 2026 17:53:40 GMT</pubDate>
    <dc:creator>DianaTorres</dc:creator>
    <dc:date>2026-03-05T17:53:40Z</dc:date>
    <item>
      <title>Runtime Addon Upload Failing - "Failed saving addon content to NFS"</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Runtime-Addon-Upload-Failing-quot-Failed-saving-addon/m-p/413563#M254140</link>
      <description>&lt;P&gt;I'm running into an issue with custom runtime addon uploads on CML 2.0.44-h1-b4 (Kubernetes). Wondering if anyone else has seen this or can confirm my fix is safe.&lt;/P&gt;&lt;P&gt;**Problem:**&lt;BR /&gt;When uploading a runtime addon via the API endpoint `/api/v2/runtimeaddons/custom`, it shows "Initialized" in the UI, then fails after ~5 minutes with no error message. API logs show:&lt;/P&gt;&lt;P&gt;```&lt;BR /&gt;ERROR api.runtimeaddons Finish writing Custom Runtime Addon: failed.&lt;BR /&gt;ERROR api.runtimeaddons Finish adding new custom runtime addon failed: Failed saving addon content to NFS.&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;**What I Found:**&lt;BR /&gt;After digging through the deployment configs, the API pod is missing the `projects-pvc` volume mount. Other pods like `ds-vfs` and `s2i-client` have it mounted at `/projects`, but the API deployment doesn't.&lt;/P&gt;&lt;P&gt;```bash&lt;BR /&gt;# PVC shows it's used by ds-vfs and s2i-client, but NOT api&lt;BR /&gt;kubectl describe pvc projects-pvc&lt;/P&gt;&lt;P&gt;# API deployment has no projects-pvc volume&lt;BR /&gt;kubectl get deploy/api -o yaml | grep projects&lt;BR /&gt;# (returns nothing)&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;**Proposed Fix:**&lt;BR /&gt;Add the volume mount to the API deployment:&lt;/P&gt;&lt;P&gt;```bash&lt;BR /&gt;kubectl -n [namespace] patch deployment api --type='json' -p='[&lt;BR /&gt;{&lt;BR /&gt;"op": "add",&lt;BR /&gt;"path": "/spec/template/spec/volumes/-",&lt;BR /&gt;"value": {"name": "projects-claim", "persistentVolumeClaim": {"claimName": "projects-pvc"}}&lt;BR /&gt;},&lt;BR /&gt;{&lt;BR /&gt;"op": "add",&lt;BR /&gt;"path": "/spec/template/spec/containers/0/volumeMounts/-",&lt;BR /&gt;"value": {"name": "projects-claim", "mountPath": "/projects"}&lt;BR /&gt;}&lt;BR /&gt;]'&lt;BR /&gt;```&lt;/P&gt;&lt;P&gt;**Questions:**&lt;BR /&gt;1. Has anyone else hit this issue?&lt;BR /&gt;2. Is this mount supposed to be there by default?&lt;BR /&gt;3. Any risks to patching this in production?&lt;BR /&gt;4. Is this a known bug or did our installation miss something?&lt;/P&gt;&lt;P&gt;The addon metadata DOES save to the database, but the tarball content fails to write. My tarball and metadata.json are valid per the docs.&lt;/P&gt;&lt;P&gt;Any insights appreciated before I patch our production cluster!&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Tue, 21 Apr 2026 06:10:39 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Runtime-Addon-Upload-Failing-quot-Failed-saving-addon/m-p/413563#M254140</guid>
      <dc:creator>DevOpsWorld</dc:creator>
      <dc:date>2026-04-21T06:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Addon Upload Failing - "Failed saving addon content to NFS"</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Runtime-Addon-Upload-Failing-quot-Failed-saving-addon/m-p/413564#M254141</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/144911"&gt;@DevOpsWorld&lt;/a&gt;&amp;nbsp;Welcome to the Cloudera Community!&lt;BR /&gt;&lt;BR /&gt;To help you get the best possible solution, I have tagged our CDP experts&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/13587"&gt;@venkatsambath&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/79328"&gt;@abdulpasithali&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/95611"&gt;@upadhyayk04&lt;/a&gt;&amp;nbsp;&amp;nbsp;who may be able to assist you further.&lt;BR /&gt;&lt;BR /&gt;Please keep us updated on your post, and we hope you find a satisfactory solution to your query.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Feb 2026 20:18:16 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Runtime-Addon-Upload-Failing-quot-Failed-saving-addon/m-p/413564#M254141</guid>
      <dc:creator>DianaTorres</dc:creator>
      <dc:date>2026-02-20T20:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Addon Upload Failing - "Failed saving addon content to NFS"</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Runtime-Addon-Upload-Failing-quot-Failed-saving-addon/m-p/413584#M254150</link>
      <description>&lt;P&gt;Hello&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;That error is not normal, and the mount should exist.&amp;nbsp;&lt;BR /&gt;So this points to be some external issues that may be identified by Cloudera Support on case.&amp;nbsp;&lt;/P&gt;&lt;P&gt;What risks you may face, the first is considering that deployments are handled by Cloudera, so in future updates of it may get overwritten.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Your steps are fine, should work, but still a support case would be a safer option.&amp;nbsp;&lt;BR /&gt;If you still want to proceed, do that, rollout the pods and then check status:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;kubectl exec -it deploy/api -- ls -lah /projects
kubectl exec -it deploy/api -- touch /projects/test.txt&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 23 Feb 2026 23:57:05 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Runtime-Addon-Upload-Failing-quot-Failed-saving-addon/m-p/413584#M254150</guid>
      <dc:creator>vafs</dc:creator>
      <dc:date>2026-02-23T23:57:05Z</dc:date>
    </item>
    <item>
      <title>Re: Runtime Addon Upload Failing - "Failed saving addon content to NFS"</title>
      <link>https://community.cloudera.com/t5/Support-Questions/Runtime-Addon-Upload-Failing-quot-Failed-saving-addon/m-p/413653#M254182</link>
      <description>&lt;P&gt;&lt;a href="https://community.cloudera.com/t5/user/viewprofilepage/user-id/144911"&gt;@DevOpsWorld&lt;/a&gt;&amp;nbsp;Has the reply helped resolve your issue? If so, please mark the appropriate reply as the solution, as it will make it easier for others to find the answer in the future. Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Mar 2026 17:53:40 GMT</pubDate>
      <guid>https://community.cloudera.com/t5/Support-Questions/Runtime-Addon-Upload-Failing-quot-Failed-saving-addon/m-p/413653#M254182</guid>
      <dc:creator>DianaTorres</dc:creator>
      <dc:date>2026-03-05T17:53:40Z</dc:date>
    </item>
  </channel>
</rss>

