Skip to main content

Questions tagged [cloud-init]

The tag has no usage guidance.

0 votes
1 answer
3k views

Persistent promiscuous mode in Debian 12

TLDR: How do you add persistent promiscuous mode in Debian 12? I'm running a Proxmox server with a few virtual machines and each VM is running separate Docker containers for different tasks. ...
samumoil's user avatar
1 vote
1 answer
5k views

Deploying Ubuntu 22.04 with PXEBoot using Syslinux

I have a functional DHCP, ftp and tftp server with a tftpboot directory in which the machines configured in PXEboot come to load syslinux without problems, from the network. I am trying to install ...
Andy McRae's user avatar
3 votes
1 answer
296 views

Password of new user with LXD and Cloud-init

I'm trying to create a profile to automate the creation of a container, but I'm having trouble with cloud-init. For some reason the password is not being set for the user and is also not being added ...
Matheus Saraiva's user avatar
1 vote
1 answer
764 views

Cloned Ubuntu VMs in vSphere get same IP, despite resetting /etc/machine && /var/lib/dbus/machine-id

vSphere 7.0 + Ubuntu 18 / 20 (tried both) I am trying the steps from this blog post: https://blah.cloud/kubernetes/creating-an-ubuntu-18-04-lts-cloud-image-for-cloning-on-vmware/ I also tried this ...
KidACrimson's user avatar
3 votes
1 answer
4k views

invalid config for cloud-init but apparently still works -- how do I remove the warning?

This is my cloud-init #cloud-config package_update: true package_upgrade: true users: - name: sammy ssh-authorized-keys: - ssh-rsa abcd - ssh-rsa efgh after i successfully run it on ...
Kim Stacks's user avatar
2 votes
2 answers
2k views

cloud-init how to run a curl before and after every non runcmd

This is my default cloud-init package_update: true package_upgrade: true users: - name: sammy ssh_authorized_keys: - ssh-rsa AAAAB3NzaC1... sudo: ['ALL=(ALL) NOPASSWD:ALL'] groups: ...
Kim Stacks's user avatar