Cloud-init: Difference between revisions

From DWIKI
(Created page with "=Documentation= *[http://docs.cloudstack.apache.org/en/latest/adminguide/templates/_cloud_init.html Cloud-init integration] =FAQ= ==Keep cloud-init from regerating ssh keys== Disable all of cloud-init: touch /etc/cloud/cloud-init.disabled or add to cloud.cfg: ssh_deletekeys: 0")
 
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
=Documentation=
=Documentation=
*[https://cloudinit.readthedocs.io/en/latest/ The cloud-init readthedocs]
*[http://docs.cloudstack.apache.org/en/latest/adminguide/templates/_cloud_init.html Cloud-init integration]
*[http://docs.cloudstack.apache.org/en/latest/adminguide/templates/_cloud_init.html Cloud-init integration]
*[https://github.com/chris2k20/proxmox-cloud-init Proxmox: Use Custom Cloud-Init File (User-Data)]
*[https://cloudinit.readthedocs.io/en/latest/explanation/format.html User data formats]
*[https://akashrajvanshi.medium.com/step-by-step-guide-creating-a-ready-to-use-ubuntu-cloud-image-on-proxmox-03d057f04fb2 Step-by-Step Guide: Creating a Ready-to-Use Ubuntu Cloud Image on Proxmox]
*[https://curtin.readthedocs.io/en/latest/topics/storage.html Curtin: Storage]


 
=Notes=
==Creating template==
CUSTOM_USERNAME
=FAQ=
=FAQ=
==Keep cloud-init from regerating ssh keys==
==Keep cloud-init from regerating ssh keys==
Line 8: Line 15:
  touch /etc/cloud/cloud-init.disabled
  touch /etc/cloud/cloud-init.disabled
or add to cloud.cfg:
or add to cloud.cfg:
  ssh_deletekeys: 0
  ssh_deletekeys: false

Latest revision as of 17:32, 4 July 2024

Documentation

Notes

Creating template

CUSTOM_USERNAME

FAQ

Keep cloud-init from regerating ssh keys

Disable all of cloud-init:

touch /etc/cloud/cloud-init.disabled

or add to cloud.cfg:

ssh_deletekeys: false