<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[XO debian 10 cloud ready VM template (cloud-init)]]></title><description><![CDATA[<p dir="auto">Gents,</p>
<ol>
<li>where can I find a debian 10 cloud ready template for XO</li>
<li>is there a manual for creating it from scratch?</li>
</ol>
<p dir="auto">I am trying to build customs VMs with XO but it fails to pass any config data to the new VM (created from template) probably because of configuration mistakes when preparing VM for template.</p>
<p dir="auto">Thanks for help</p>
<p dir="auto">PS. I found this but it needs to be updated for debian 10 and newer version on XO and links do not work anymore:<br />
<a href="https://xen-orchestra.com/blog/full-cloudinit-power-in-xenserver/" target="_blank" rel="noopener noreferrer nofollow ugc">https://xen-orchestra.com/blog/full-cloudinit-power-in-xenserver/</a></p>
]]></description><link>https://xcp-ng.org/forum/topic/3369/xo-debian-10-cloud-ready-vm-template-cloud-init</link><generator>RSS for Node</generator><lastBuildDate>Mon, 17 Aug 2026 04:55:21 GMT</lastBuildDate><atom:link href="https://xcp-ng.org/forum/topic/3369.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 03 Aug 2020 21:33:46 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Mon, 19 Oct 2020 15:59:18 GMT]]></title><description><![CDATA[<p dir="auto">I was able to find the reason XO is not working with cloud-init.<br />
XO attaches iso with the cloud-config data as additional disk xvdb and it does not work.<br />
But if you provide it as a cd? It will.</p>
<p dir="auto">That is why - as for now you will need to create your own iso and attach it as a cd-rom.<br />
You do that this way:</p>
<p dir="auto"><strong>Get your files ready</strong> (meta-data network-config user-data). My examples below:</p>
<p dir="auto">metadata:</p>
<pre><code>instance-id: local-nocloud
local-hostname: myhost.example.com
</code></pre>
<p dir="auto">network-config:</p>
<pre><code>network:
  version: 1
  config:
    - type: physical
      name: eth0
      subnets:
         - type: static
           address: 10.0.0.5/24
           gateway: 10.0.0.254
    - type: nameserver
      address:
        - 8.8.8.8
        - 8.8.4.4
      search:
        - example.com
    
    - type: physical
      name: eth1
      subnets:
         - type: static
           address: 192.168.0.5/24
</code></pre>
<p dir="auto">user-data:</p>
<pre><code>#cloud-config

### RUN CMD
runcmd:
  - /usr/bin/apt -y install mc
  - /usr/bin/date &gt;&gt; /root/testfile
  
# set system default user
system_info:
  default_user:
    name: testuser
    gecos: Default Cloud User

# password auth - comment out if not using passwords
password: testpassword
ssh_pwauth: true
chpasswd: { expire: false }

# do some package management
#package_update: true
packages:
 - iptraf
 - mtr
 - screen
 - net-tools
 - atop
</code></pre>
<p dir="auto"><strong>Generate iso</strong></p>
<pre><code>genisoimage -output myiso.iso -volid cidata -joliet -rock user-data meta-data network-config
</code></pre>
<p dir="auto"><strong>Upload iso to XO</strong><br />
home -&gt; storage -&gt; iso's -&gt; disks -&gt; new disk</p>
<p dir="auto"><strong>Prepare VM/template</strong></p>
<ul>
<li>Install Debian 10.6 with xo-tools</li>
<li>install cloud-init and cloud-initramfs-growroot</li>
<li>remove all network configuration leave just "allow-hotplug ethxxx"<br />
(network config will be added in /etc/network/interfaces/50-cloud-init. It will not overwrite yours)</li>
<li>shutdown the machine and create the template if you want or just restart VM.</li>
<li>DO NOT LET IT BOOT! - keep it in grub.</li>
<li>attach your iso</li>
<li>let it run</li>
</ul>
<p dir="auto">It will do whatever you need on the machine.</p>
]]></description><link>https://xcp-ng.org/forum/post/32483</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/32483</guid><dc:creator><![CDATA[mietek]]></dc:creator><pubDate>Mon, 19 Oct 2020 15:59:18 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Fri, 25 Sep 2020 21:21:10 GMT]]></title><description><![CDATA[<p dir="auto">FYI If you are looking for more info on the matter yourself ...</p>
<p dir="auto">ver: 20.2-2 of the cloud-init is still the one with the bug mentioned by <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/olivierlambert" aria-label="Profile: olivierlambert">@<bdi>olivierlambert</bdi></a> earlier:<br />
<a href="https://github.com/vatesfr/xen-orchestra/issues/4449" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/vatesfr/xen-orchestra/issues/4449</a></p>
<p dir="auto">There is version 20.3 awaiting to be delivered but still awaiting to be packaged:<br />
<a href="https://tracker.debian.org/pkg/cloud-init" target="_blank" rel="noopener noreferrer nofollow ugc">https://tracker.debian.org/pkg/cloud-init</a></p>
]]></description><link>https://xcp-ng.org/forum/post/31705</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/31705</guid><dc:creator><![CDATA[mietek]]></dc:creator><pubDate>Fri, 25 Sep 2020 21:21:10 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Fri, 11 Sep 2020 17:01:51 GMT]]></title><description><![CDATA[<p dir="auto">Great - thanks for the info <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/fohdeesha" aria-label="Profile: fohdeesha">@<bdi>fohdeesha</bdi></a>.</p>
]]></description><link>https://xcp-ng.org/forum/post/31261</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/31261</guid><dc:creator><![CDATA[mietek]]></dc:creator><pubDate>Fri, 11 Sep 2020 17:01:51 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Fri, 11 Sep 2020 03:06:54 GMT]]></title><description><![CDATA[<p dir="auto">Hey again:</p>
<ol>
<li>
<p dir="auto">With the latest debian and the latest cloud-init, no there should not  be any extra steps now that the weird drive detection bug has been patched upstream. The important thing is that cloud-init inside your template VM is set to look for the <code>nocloud</code> datatype among others, and in the default config, it's already in the list of types of sources to look for so it shouldn't need changing</p>
</li>
<li>
<p dir="auto">No at this time I am not aware of any plans to add ignition support as there hasn't been any demand (we prioritize features added by demand mostly). Personally, pretending I'm a non-employee, I would like to see Ignition support included as it would be quite handy, so it  may be something we can approach down the road</p>
</li>
</ol>
]]></description><link>https://xcp-ng.org/forum/post/31197</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/31197</guid><dc:creator><![CDATA[fohdeesha]]></dc:creator><pubDate>Fri, 11 Sep 2020 03:06:54 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Wed, 09 Sep 2020 04:11:40 GMT]]></title><description><![CDATA[<p dir="auto">Gents [ <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/olivierlambert" aria-label="Profile: olivierlambert">@<bdi>olivierlambert</bdi></a> <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/fohdeesha" aria-label="Profile: fohdeesha">@<bdi>fohdeesha</bdi></a>], let me reply to both of you and finish this unfortunate (part of) the discussion.<br />
It took this drastic downturn and I am not enjoying it at all [!] as both you as well.</p>
<p dir="auto">Your active engaged in community forum is admirable and I mean it! (especially because of your position, Olivier).<br />
I was directed to XO project because of very favorable opinions about the support and robust community.</p>
<p dir="auto">That being said - please do not hold it against me though that I am disappointed that I received answers which were not helpful.<br />
You do not have to have malicious intent to do so and that is - unfortunately - my experience.<br />
I can see though how my post might be read this way - I could phrase it better - my bad! I am sorry - that inappropriate.</p>
<p dir="auto">To end up this negative chain - I respect you guys and it was not my intention to make it such a sour experience for everyone.<br />
If I may propose one thing though - If you reply to the post with X number of questions try to reply to all of them.<br />
Even if that would be just one sentence that would put requestor on the right path. That would be very appreciated.</p>
<p dir="auto">Going back to the cloud-init itself.<br />
Explanation that it caused a lot o issues in the past very well explains my experience with it and feel that I got from XO and cloud-init implementation of it.</p>
<ol>
<li>is default config for NoCloud "should" make VM responsive to it or there are some additional steps I should go through?<br />
(I will be going back to testing with CentOS before trying Deb 10 just to be sure I am working on something that I may expect to work)</li>
<li>do you support or plan to support Ignition or another project that would do the trick of on-the-fly config for cloud purposes?</li>
<li>(if you do) is there any documentation for it?</li>
</ol>
<p dir="auto">Thanks for help and have a good one, Gents!</p>
]]></description><link>https://xcp-ng.org/forum/post/31106</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/31106</guid><dc:creator><![CDATA[mietek]]></dc:creator><pubDate>Wed, 09 Sep 2020 04:11:40 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Mon, 31 Aug 2020 03:37:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/mietek" aria-label="Profile: mietek">@<bdi>mietek</bdi></a> I can assure you there's no malicious intent to mislead you, why we would do that to our users is beyond me. Olivier is simply one of the most busy people I've worked with, and he still takes the time to come here and answer free users when he can. He might not have the time to scour the internet and github for the relevant patches and news for niche threads like this. We were not made aware of the cloud-init fix until just a few days ago when a patch was submitted. Cloud-init has been notoriously hard to support and document because the upstream project is constantly doing things like this, and as you noticed it can affect how it works on one OS version versus another very differently. If it were up to me we would drop built-in support for it because of this mess (and a lot of large projects have dropped it entirely and moved to Ignition, like CoreOS) but a lot of users still find it very useful so we continue to support it as best we can, baring with the mess going on upstream.</p>
<p dir="auto">I'm not sure if you're aware, but Olivier is the founder and CEO of Vates, who is behind both XCP-ng and XOA. I welcome you to go to the ESXI forum and try and get the CEO of VMware to personally answer your questions, as a free user to top it off.</p>
]]></description><link>https://xcp-ng.org/forum/post/30733</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/30733</guid><dc:creator><![CDATA[fohdeesha]]></dc:creator><pubDate>Mon, 31 Aug 2020 03:37:52 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Sat, 29 Aug 2020 07:47:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/mietek" aria-label="Profile: mietek">@<bdi>mietek</bdi></a> things aren't orbiting around your own person. I'm very busy, and I answer on threads when I can. Other people too.</p>
<p dir="auto">Your answers are confirming my impression: you think people have obligation to answer you here. It's not the case. It's a <strong>community</strong> forum, where people are answering when they can/if they want. Your attitude is really not welcome here. However, you can fix this attitude if you like and continue here. People asking things nicely (or without sulking) are <strong>always welcome</strong>.</p>
<p dir="auto">Also, there's no plot against you, just lack of people/time to explain stuff sometimes. I agree it's sad but it happens, but asking "Why anyone can answer me?" and complain or found it's disappointing or a community forum (we are not talking about paid support!), is beyond me.</p>
<p dir="auto">Fix that and people will help.</p>
]]></description><link>https://xcp-ng.org/forum/post/30664</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/30664</guid><dc:creator><![CDATA[olivierlambert]]></dc:creator><pubDate>Sat, 29 Aug 2020 07:47:21 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Fri, 28 Aug 2020 22:47:40 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/fohdeesha" aria-label="Profile: fohdeesha">@<bdi>fohdeesha</bdi></a> Thanks for the answer. I will test is with the new Deb 10 version.</p>
]]></description><link>https://xcp-ng.org/forum/post/30655</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/30655</guid><dc:creator><![CDATA[mietek]]></dc:creator><pubDate>Fri, 28 Aug 2020 22:47:40 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Fri, 28 Aug 2020 22:53:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/olivierlambert" aria-label="Profile: olivierlambert">@<bdi>olivierlambert</bdi></a></p>
<ol>
<li>First of all Thanks for the link to the Xen Documentation it is helpful.</li>
<li>".. You aren't alone in the world"<br />
From what I see is that you have replied to me for the first time the same day I have posted my question. Although your answered just one question regarding cloud image - nothing about creating it from scratch. Even though I continued asking about it it took you another 6 days to reply. Then when you provided me with the link to the Debian bug I found that you knew about that issue being involved in discussions about it for almost a year now.<br />
To summarise</li>
</ol>
<ul>
<li>you knew I will be struggling - because of the Debian bug</li>
<li>you never provided me with the data sources even though I asked about it explicitly</li>
<li>after that you directed me to Debian 8 manual which is irrelevant to Debian 10 (even though you knew there is a bug in Debian 10)</li>
<li>and as a cherry on the top you've told me to "google it".</li>
<li>you have provided me with the link to the Debian bug 9 days after my initial question only when I raised my concern and disappointment.</li>
</ul>
<p dir="auto">From my point of view you were deliberately not answering my questions which just proves that you never wanted to help quite the contrary ... and this IS truly disappointing my friend!</p>
]]></description><link>https://xcp-ng.org/forum/post/30654</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/30654</guid><dc:creator><![CDATA[mietek]]></dc:creator><pubDate>Fri, 28 Aug 2020 22:53:21 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Fri, 21 Aug 2020 13:22:17 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/mietek" aria-label="Profile: mietek">@<bdi>mietek</bdi></a> said in <a href="/forum/post/30014">XO debian 10 cloud ready VM template (cloud-init)</a>:</p>
<blockquote>
<p dir="auto">You gents need a proper manual/documentation because as of now it's just a slipshod work.<br />
All of this is just so disappointing ...</p>
</blockquote>
<p dir="auto">What is this sulking? Pathetic... Go somewhere else, what an ungrateful piece of shit.</p>
]]></description><link>https://xcp-ng.org/forum/post/30352</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/30352</guid><dc:creator><![CDATA[p4-k4]]></dc:creator><pubDate>Fri, 21 Aug 2020 13:22:17 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Fri, 14 Aug 2020 06:27:48 GMT]]></title><description><![CDATA[<p dir="auto">If it wasn't already mentioned, the preferred data source now is NoCloud: <a href="https://cloudinit.readthedocs.io/en/latest/topics/datasources/nocloud.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://cloudinit.readthedocs.io/en/latest/topics/datasources/nocloud.html</a></p>
<p dir="auto">That's what XOA passes to VMs, a NoCloud config drive. Note that there was a serious upstream bug in cloud-init that was stopping OS's like debian from seeing this drive - as Olivier linked above it seems it was finally just now fixed.</p>
]]></description><link>https://xcp-ng.org/forum/post/30061</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/30061</guid><dc:creator><![CDATA[fohdeesha]]></dc:creator><pubDate>Fri, 14 Aug 2020 06:27:48 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Thu, 13 Aug 2020 10:01:16 GMT]]></title><description><![CDATA[<p dir="auto">So I took few seconds to give you this link explaining why "by default", due to an cloudinit bug, you have the problem on current Debian 10: <a href="https://github.com/vatesfr/xen-orchestra/issues/4449" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/vatesfr/xen-orchestra/issues/4449</a></p>
<p dir="auto">Good news is: it's fixed upstream now <img src="https://xcp-ng.org/forum/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=f084dd9e819" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /> And you have the workaround in the issue content, so you can already start to use it.</p>
]]></description><link>https://xcp-ng.org/forum/post/30041</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/30041</guid><dc:creator><![CDATA[olivierlambert]]></dc:creator><pubDate>Thu, 13 Aug 2020 10:01:16 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Thu, 13 Aug 2020 07:02:44 GMT]]></title><description><![CDATA[<p dir="auto">You are just looking at the wrong place: <a href="https://xen-orchestra.com/docs/advanced.html#cloud-init" target="_blank" rel="noopener noreferrer nofollow ugc">https://xen-orchestra.com/docs/advanced.html#cloud-init</a></p>
<p dir="auto">You are on a community forum, if you are not happy with our pace to answer you, I'm sorry but it happens, especially with a pandemic and summer holidays for a lot of people.</p>
<p dir="auto">You aren't alone in the world.</p>
]]></description><link>https://xcp-ng.org/forum/post/30027</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/30027</guid><dc:creator><![CDATA[olivierlambert]]></dc:creator><pubDate>Thu, 13 Aug 2020 07:02:44 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Wed, 12 Aug 2020 17:27:13 GMT]]></title><description><![CDATA[<p dir="auto">Is there anyone who is able to answer my questions?</p>
<ul>
<li>
<p dir="auto">You are referring me to outdated, unusable and even misleading dock<br />
[as far I can see Xen changed cloud-init datasource from "OpenStack Config Drive" to "NoCloud" at lease as a main one:<br />
<a href="https://xen-orchestra.com/forum/topic/1315/cloud-init-from-templates-do-not-read-local-datasource" target="_blank" rel="noopener noreferrer nofollow ugc">https://xen-orchestra.com/forum/topic/1315/cloud-init-from-templates-do-not-read-local-datasource</a></p>
</li>
<li>
<p dir="auto">XEN documentation is unavailable [404]:<br />
<a href="https://xen-orchestra.com/docs/cloudinit.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://xen-orchestra.com/docs/cloudinit.html</a></p>
</li>
<li>
<p dir="auto">I hope the network issues were resolved:<br />
<a href="https://xcp-ng.org/forum/topic/2256/cloudinit-network-config-is-being-saved-in-the-config-drive-but-its-not-being-applied/4">https://xcp-ng.org/forum/topic/2256/cloudinit-network-config-is-being-saved-in-the-config-drive-but-its-not-being-applied/4</a></p>
</li>
<li>
<p dir="auto">To hear this kind of comment on the official forum is just pure gold:<br />
"but most of what's require to do is available on Google"</p>
</li>
</ul>
<p dir="auto">You gents need a proper manual/documentation because as of now it's just a slipshod work.<br />
All of this is just so disappointing ...</p>
]]></description><link>https://xcp-ng.org/forum/post/30014</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/30014</guid><dc:creator><![CDATA[mietek]]></dc:creator><pubDate>Wed, 12 Aug 2020 17:27:13 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Tue, 11 Aug 2020 16:33:53 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/fohdeesha" aria-label="Profile: fohdeesha">@<bdi>fohdeesha</bdi></a> : may I ask you to provide me with the answers to my questions (see above)  / prequisits regarding preparing Debian 10 VM for template for cloud-init please?</p>
]]></description><link>https://xcp-ng.org/forum/post/29954</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/29954</guid><dc:creator><![CDATA[mietek]]></dc:creator><pubDate>Tue, 11 Aug 2020 16:33:53 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Thu, 06 Aug 2020 17:07:38 GMT]]></title><description><![CDATA[<p dir="auto">Thanks Olivier. I will wait for <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/fohdeesha" aria-label="Profile: fohdeesha">@<bdi>fohdeesha</bdi></a> then as my list of questions is based on that blog post which unfortunately does not apply to Debian 10.</p>
]]></description><link>https://xcp-ng.org/forum/post/29758</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/29758</guid><dc:creator><![CDATA[mietek]]></dc:creator><pubDate>Thu, 06 Aug 2020 17:07:38 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Thu, 06 Aug 2020 17:00:00 GMT]]></title><description><![CDATA[<p dir="auto">You can do it manually yes <img src="https://xcp-ng.org/forum/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=f084dd9e819" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /> When <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/fohdeesha" aria-label="Profile: fohdeesha">@<bdi>fohdeesha</bdi></a> is around it could give you a quick guide but most of what's require to do is available on Google (we have a blog post here: <a href="https://xen-orchestra.com/blog/debian-cloud-template-for-xenserver/" target="_blank" rel="noopener noreferrer nofollow ugc">https://xen-orchestra.com/blog/debian-cloud-template-for-xenserver/</a> )</p>
]]></description><link>https://xcp-ng.org/forum/post/29756</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/29756</guid><dc:creator><![CDATA[olivierlambert]]></dc:creator><pubDate>Thu, 06 Aug 2020 17:00:00 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Thu, 06 Aug 2020 16:04:06 GMT]]></title><description><![CDATA[<p dir="auto">I have XO that is why I have no access to it (I have an option to upgrade it though) - thanks <a class="plugin-mentions-user plugin-mentions-a" href="/forum/user/tony" aria-label="Profile: tony">@<bdi>tony</bdi></a> .</p>
<p dir="auto">Still my question remains - is there a manual to do it from scratch or at least requirement list?</p>
<ul>
<li>packages (obviously) : cloud-init and cloud-initramfs-growroot</li>
<li>sources:
<ul>
<li>"OpenStack Config Drive"? (as mentioned here: <a href="https://xen-orchestra.com/blog/debian-cloud-template-for-xenserver/" target="_blank" rel="noopener noreferrer nofollow ugc">https://xen-orchestra.com/blog/debian-cloud-template-for-xenserver/</a>)<br />
So OpenStack or Config Drive (now there are separate)<br />
<a href="https://cloudinit.readthedocs.io/en/latest/topics/datasources/configdrive.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://cloudinit.readthedocs.io/en/latest/topics/datasources/configdrive.html</a></li>
<li>NoData - or NoData as I have seen somewhere</li>
</ul>
</li>
<li>dpkg-reconfigure cloud-init is giving you nothing in Debian 10 so you will have to set it up manually I guess.<br />
Are there any tips on that then?</li>
<li>should cloud-init run as a demon? (enabled and running via systemd)</li>
<li>anything else?</li>
</ul>
<p dir="auto">That would be very helpful to have this sorted as probably I am not the only one who for whatever reason is not able or wants to use XOA.</p>
<p dir="auto">Thanks for help.</p>
]]></description><link>https://xcp-ng.org/forum/post/29748</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/29748</guid><dc:creator><![CDATA[mietek]]></dc:creator><pubDate>Thu, 06 Aug 2020 16:04:06 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Thu, 06 Aug 2020 06:17:15 GMT]]></title><description><![CDATA[<p dir="auto">I said in XOA, not XO from the sources. XOA Free got it <img src="https://xcp-ng.org/forum/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=f084dd9e819" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
]]></description><link>https://xcp-ng.org/forum/post/29726</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/29726</guid><dc:creator><![CDATA[olivierlambert]]></dc:creator><pubDate>Thu, 06 Aug 2020 06:17:15 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Thu, 06 Aug 2020 01:59:25 GMT]]></title><description><![CDATA[<p dir="auto">I'm also a free user, and I can see it on the side menu, between Jobs and Proxies. Are you using XOA or XO from sources?</p>
<p dir="auto">There is a template for Debain 10 Buster, but I don't know if it will work with cloud-init version.</p>
]]></description><link>https://xcp-ng.org/forum/post/29723</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/29723</guid><dc:creator><![CDATA[tony]]></dc:creator><pubDate>Thu, 06 Aug 2020 01:59:25 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Wed, 05 Aug 2020 22:24:08 GMT]]></title><description><![CDATA[<p dir="auto">Hey Olivier,<br />
Thanks for the info. I have access to free plan although I cannot find HUB category there. Is this only for non-free plans?</p>
<p dir="auto">Is there a manual how to prepare Debian 10 template from the scratch to make it work with XO?</p>
]]></description><link>https://xcp-ng.org/forum/post/29720</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/29720</guid><dc:creator><![CDATA[mietek]]></dc:creator><pubDate>Wed, 05 Aug 2020 22:24:08 GMT</pubDate></item><item><title><![CDATA[Reply to XO debian 10 cloud ready VM template (cloud-init) on Tue, 04 Aug 2020 07:51:44 GMT]]></title><description><![CDATA[<p dir="auto">In XOA, Hub category.</p>
]]></description><link>https://xcp-ng.org/forum/post/29662</link><guid isPermaLink="true">https://xcp-ng.org/forum/post/29662</guid><dc:creator><![CDATA[olivierlambert]]></dc:creator><pubDate>Tue, 04 Aug 2020 07:51:44 GMT</pubDate></item></channel></rss>