<?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: Failed to install Converged Edge Insights in Edge Software Catalog</title>
    <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265320#M1624</link>
    <description>&lt;P&gt;Hi Eric,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Meanwhile, you can use the following manual steps to install Openness.&lt;/P&gt;
&lt;DIV&gt;1. Modify the two files as I mentioned above&lt;BR /&gt;2. cd Converged_Edge_Insights_20.06/OpenNESS/openness-experience-kits/&lt;BR /&gt;3. cat inventory.ini -&amp;gt; check ip for controller and node&lt;BR /&gt;4. ./deploy_ne.sh&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Let me know if it doesn't work.&lt;/DIV&gt;</description>
    <pubDate>Wed, 17 Mar 2021 22:41:17 GMT</pubDate>
    <dc:creator>ChunSheong_F_Intel</dc:creator>
    <dc:date>2021-03-17T22:41:17Z</dc:date>
    <item>
      <title>Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1262191#M1618</link>
      <description>&lt;P&gt;Hi Teams,&lt;/P&gt;
&lt;P&gt;I tried to install the Converged Edge Insights on a single node configuration, but I failed in this.&lt;/P&gt;
&lt;P&gt;After digging into the log files, it seemed caused by adding an old HELM chart repository.&lt;/P&gt;
&lt;P&gt;I post parts of log file as below. Could someone help me resolve it? Thank you!&lt;/P&gt;
&lt;P&gt;=====================================&lt;/P&gt;
&lt;P&gt;TASK [telemetry/prometheus : add default Helm repository] *****************************************************************************************************************************&lt;BR /&gt;task path: /root/converged_edge_insights/Converged_Edge_Insights_20.06/OpenNESS/openness-experience-kits/roles/telemetry/prometheus/tasks/main.yml:54&lt;BR /&gt;fatal: [controller]: FAILED! =&amp;gt; {&lt;BR /&gt;"changed": true,&lt;BR /&gt;"cmd": [&lt;BR /&gt;"helm",&lt;BR /&gt;"repo",&lt;BR /&gt;"add",&lt;BR /&gt;"stable",&lt;BR /&gt;"&lt;A href="https://kubernetes-charts.storage.googleapis.com/" target="_blank"&gt;https://kubernetes-charts.storage.googleapis.com/&lt;/A&gt;"&lt;BR /&gt;],&lt;BR /&gt;"delta": "0:00:00.288381",&lt;BR /&gt;"end": "2021-03-01 22:31:15.415360",&lt;BR /&gt;"rc": 1,&lt;BR /&gt;"start": "2021-03-01 22:31:15.126979"&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;STDERR:&lt;/P&gt;
&lt;P&gt;Error: looks like "&lt;A href="https://kubernetes-charts.storage.googleapis.com/" target="_blank"&gt;https://kubernetes-charts.storage.googleapis.com/&lt;/A&gt;" is not a valid chart repository or cannot be reached: failed to fetch &lt;A href="https://kubernetes-charts.storage.googleapis.com/index.yaml" target="_blank"&gt;https://kubernetes-charts.storage.googleapis.com/index.yaml&lt;/A&gt; : 403 Forbidden&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;MSG:&lt;/P&gt;
&lt;P&gt;non-zero return code&lt;/P&gt;
&lt;P&gt;=====================================&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Eric&lt;/P&gt;</description>
      <pubDate>Mon, 08 Mar 2021 00:43:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1262191#M1618</guid>
      <dc:creator>EricHsu</dc:creator>
      <dc:date>2021-03-08T00:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1263249#M1619</link>
      <description>&lt;P&gt;Hi Eric,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looks like the Helm stable URL location has changed and it causes the openness installation to fail. You can fix it by modifying the following two files.&lt;/P&gt;
&lt;P&gt;In file&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;roles/telemetry/grafana/tasks/main.yml&lt;/CODE&gt;,&lt;/P&gt;
&lt;DIV class="highlight highlight-source-diff"&gt;
&lt;PRE&gt;  - name: add default Helm repository
&lt;SPAN class="pl-md"&gt;-    command: helm repo add stable https://kubernetes-charts.storage.googleapis.com/&lt;/SPAN&gt;
&lt;SPAN class="pl-mi1"&gt;+    command: helm repo add stable https://charts.helm.sh/stable&lt;/SPAN&gt;
    changed_when: true
    when: not offline_enable&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;And in file&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;CODE&gt;roles/telemetry/prometheus/tasks/main.yml&lt;/CODE&gt;,&lt;/P&gt;
&lt;DIV class="highlight highlight-source-diff"&gt;
&lt;PRE&gt;  - name: add default Helm repository
&lt;SPAN class="pl-md"&gt;-    command: helm repo add stable https://kubernetes-charts.storage.googleapis.com/&lt;/SPAN&gt;
&lt;SPAN class="pl-mi1"&gt;+	command: helm repo add stable https://charts.helm.sh/stable&lt;/SPAN&gt;
    changed_when: true
    when: not offline_enable&lt;/PRE&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Source:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://github.com/open-ness/openness-experience-kits/issues/78" target="_blank"&gt;https://github.com/open-ness/openness-experience-kits/issues/78&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://helm.sh/blog/new-location-stable-incubator-charts/" target="_blank"&gt;https://helm.sh/blog/new-location-stable-incubator-charts/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 11 Mar 2021 00:38:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1263249#M1619</guid>
      <dc:creator>ChunSheong_F_Intel</dc:creator>
      <dc:date>2021-03-11T00:38:03Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1263702#M1620</link>
      <description>&lt;P&gt;Tried this option but it didn't help. The installation scripts are overwriting these files and failing at the same point Is there any way to prevent that? .&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 12 Mar 2021 14:54:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1263702#M1620</guid>
      <dc:creator>RaviKira</dc:creator>
      <dc:date>2021-03-12T14:54:21Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1264252#M1621</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/57"&gt;@ChunSheong_F_Intel&lt;/a&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I got the same&amp;nbsp;&lt;/SPAN&gt;phenomenon with &lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/155966"&gt;@RaviKira&lt;/a&gt;. Is there any way to resolve it?&lt;/P&gt;
&lt;P&gt;Such as modify the source version of the OpenNESS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Eric&lt;/P&gt;</description>
      <pubDate>Mon, 15 Mar 2021 02:17:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1264252#M1621</guid>
      <dc:creator>EricHsu</dc:creator>
      <dc:date>2021-03-15T02:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265208#M1622</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://community.intel.com/t5/user/viewprofilepage/user-id/57" target="_blank"&gt;@ChunSheong_F_Intel&lt;/A&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Is there any solution? we are stuck at the installation.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;I tried changing the&amp;nbsp;"edgesoftware_configuration.xml" to take 20.12 version of OpenNESS as github is showing these files corrected. But looks like the&amp;nbsp;edgesoftware binary is downloading it from somewhere else.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Ravi&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 16:33:26 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265208#M1622</guid>
      <dc:creator>RaviKira</dc:creator>
      <dc:date>2021-03-17T16:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265316#M1623</link>
      <description>&lt;P&gt;Hi Ravi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We're working with the engineering team to provide the solution for this as we're aware that the current installation script will just re-write any changes made in these two files. We will update once we have the solution for this.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Mar 2021 22:32:49 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265316#M1623</guid>
      <dc:creator>Nadia_J_Intel</dc:creator>
      <dc:date>2021-03-17T22:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265320#M1624</link>
      <description>&lt;P&gt;Hi Eric,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Meanwhile, you can use the following manual steps to install Openness.&lt;/P&gt;
&lt;DIV&gt;1. Modify the two files as I mentioned above&lt;BR /&gt;2. cd Converged_Edge_Insights_20.06/OpenNESS/openness-experience-kits/&lt;BR /&gt;3. cat inventory.ini -&amp;gt; check ip for controller and node&lt;BR /&gt;4. ./deploy_ne.sh&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Let me know if it doesn't work.&lt;/DIV&gt;</description>
      <pubDate>Wed, 17 Mar 2021 22:41:17 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265320#M1624</guid>
      <dc:creator>ChunSheong_F_Intel</dc:creator>
      <dc:date>2021-03-17T22:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265335#M1625</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/155966"&gt;@RaviKira&lt;/a&gt;&amp;nbsp;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I had tried this method before. However, it didn't work.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;The version control of it seems embedded in the installation tool. FYI.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I could't find a way to change the version so far.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Eric&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Mar 2021 00:58:04 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265335#M1625</guid>
      <dc:creator>EricHsu</dc:creator>
      <dc:date>2021-03-18T00:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265336#M1626</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/57"&gt;@ChunSheong_F_Intel&lt;/a&gt;&amp;nbsp;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;This is a standard installation process of the OpenNESS.&lt;/P&gt;
&lt;P&gt;I think it should be work, but just a workaround, right?&lt;/P&gt;
&lt;P&gt;Eventually, I hope the installation can be completed by the standard installation method of the Converged Edge Insight package. Thank you!&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Eric&lt;/P&gt;</description>
      <pubDate>Thu, 18 Mar 2021 00:55:59 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265336#M1626</guid>
      <dc:creator>EricHsu</dc:creator>
      <dc:date>2021-03-18T00:55:59Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265338#M1627</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.intel.com/t5/user/viewprofilepage/user-id/143375"&gt;@EricHsu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That's right, we will update our installation script internally to fix this issue so that you do not need to do this workaround in the future.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Mar 2021 00:55:12 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265338#M1627</guid>
      <dc:creator>ChunSheong_F_Intel</dc:creator>
      <dc:date>2021-03-18T00:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265476#M1628</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Sorry, there are more obsolete links even with this workaround.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;Error occurred. Will retry after 5 seconds. You can find details below:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Failure downloading &lt;A href="http://linuxsoft.cern.ch/scientific/7x/x86_64/os/Packages/tuned-2.11.0-8.el7.noarch.rpm" target="_blank"&gt;http://linuxsoft.cern.ch/scientific/7x/x86_64/os/Packages/tuned-2.11.0-8.el7.noarch.rpm&lt;/A&gt;, HTTP Error 404: Not Found&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;============&lt;/P&gt;
&lt;P&gt;I solved it with a workaround by updating the links in the following files.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;group_vars/edgenode_group/10-default.yml:&lt;BR /&gt;host_vars/_example_variables.yml:-&lt;BR /&gt;roles/machine_setup/configure_tuned/defaults/main.yml:&lt;/P&gt;
&lt;P&gt;replaced the following lines&amp;nbsp;&lt;/P&gt;
&lt;P&gt;# - &lt;A href="http://linuxsoft.cern.ch/scientific/7x/x86_64/os/Packages/tuned-2.11.0-8.el7.noarch.rpm" target="_blank"&gt;http://linuxsoft.cern.ch/scientific/7x/x86_64/os/Packages/tuned-2.11.0-8.el7.noarch.rpm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="http://linuxsoft.cern.ch/scientific/7x/x86_64/os/Packages/tuned-profiles-realtime-2.11.0-8.el7.noarch.rpm" target="_blank"&gt;# -&amp;nbsp; http://linuxsoft.cern.ch/scientific/7x/x86_64/os/Packages/tuned-profiles-realtime-2.11.0-8.el7.noarch.rpm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;with&lt;BR /&gt;- &lt;A href="http://ftp.pbone.net/mirror/vault.centos.org/7.7.1908/cr/x86_64/Packages/tuned-2.11.0-8.el7.noarch.rpm" target="_blank"&gt;http://ftp.pbone.net/mirror/vault.centos.org/7.7.1908/cr/x86_64/Packages/tuned-2.11.0-8.el7.noarch.rpm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;- &lt;A href="ftp://ftp.pbone.net/mirror/ftp.scientificlinux.org/linux/scientific/7.8/x86_64/os/Packages/tuned-profiles-realtime-2.11.0-8.el7.noarch.rpm" target="_blank"&gt;ftp://ftp.pbone.net/mirror/ftp.scientificlinux.org/linux/scientific/7.8/x86_64/os/Packages/tuned-profiles-realtime-2.11.0-8.el7.noarch.rpm&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;==========&lt;/P&gt;
&lt;P&gt;But still stuck with the below error when I do ./build_ne.sh single&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;ERROR: unsatisfiable constraints:&lt;/FONT&gt;&lt;BR /&gt;&lt;STRONG&gt;&lt;FONT size="2"&gt;sudo-1.9.5p2-r0:&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;breaks: world[sudo=1.9.0-r0]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;....&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;....&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Building edgednssvr&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;Service 'edgednssvr' failed to build: The command '/bin/sh -c apk add --no-cache sudo=1.9.0-r0' returned a non-zero code: 1&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;make: *** [edgednssvr] Error 1&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT size="2"&gt;PLAY RECAP ******************************************************************************************************************************&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;controller : ok=353 changed=222 unreachable=0 failed=0 skipped=120 rescued=0 ignored=10&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT size="2"&gt;node01 : ok=119 changed=26 unreachable=0 failed=1 skipped=84 rescued=0 ignored=0&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;========================&lt;/P&gt;
&lt;P&gt;The SUDO command version issue is I guess is related to: &lt;BR /&gt;&lt;A href="https://githubmemory.com/repo/open-ness/edgenode/issues/26" target="_self"&gt;https://githubmemory.com/repo/open-ness/edgenode/issues/26&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Not sure how to resolve this !! Please guide.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Mar 2021 08:29:40 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1265476#M1628</guid>
      <dc:creator>RaviKira</dc:creator>
      <dc:date>2021-03-18T08:29:40Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1266863#M1629</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.intel.com/t5/user/viewprofilepage/user-id/57" target="_blank"&gt;@ChunSheong_F_Intel&lt;/A&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;any clue on how to solve this?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Ravi Kiran&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 09:23:56 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1266863#M1629</guid>
      <dc:creator>RaviKira</dc:creator>
      <dc:date>2021-03-23T09:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1266959#M1630</link>
      <description>&lt;P&gt;Hi Ravi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have new release for the Converged Edge Insights that will help to fix this issue.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can go to this link here to download:&amp;nbsp;&lt;A href="https://software.intel.com/iot/edgesoftwarehub/download/home/convergededgeinsights/" target="_blank"&gt;https://software.intel.com/iot/edgesoftwarehub/download/home/convergededgeinsights/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 15:20:46 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1266959#M1630</guid>
      <dc:creator>Nadia_J_Intel</dc:creator>
      <dc:date>2021-03-23T15:20:46Z</dc:date>
    </item>
    <item>
      <title>Re: Failed to install Converged Edge Insights</title>
      <link>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1267646#M1631</link>
      <description>&lt;P&gt;Thank you. Now the installation is resolved.&lt;/P&gt;
&lt;P&gt;(Worked despite of the fact that the memory requirements of the servers doubled in this new release).&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Mar 2021 04:57:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Edge-Software-Catalog/Failed-to-install-Converged-Edge-Insights/m-p/1267646#M1631</guid>
      <dc:creator>RaviKira</dc:creator>
      <dc:date>2021-03-25T04:57:48Z</dc:date>
    </item>
  </channel>
</rss>

