Hi, I am creating droplet from doctl command with cloud-init file:
doctl compute droplet create myodds-api221 --size s-1vcpu-1gb --image ubuntu-22-04-x64 --region fra1 --wait --user-data-file cloud-init.yml
I have simple file with:
#cloud-config
package_update: true
package_upgrade: true
It looks like the file is ignored from doctl command, when I create droplet in UI and copy paste cloud-init config in advance settings it works. I tried serveral versions of Ubuntu, renamed file extension to yaml and cfg, but nothing helps. Any idea?
Thank you
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey!
One thing there might be that the file locally does not have read privileges so the command is failing to get its content.
You could try passing the user data using the
--user-data
flag instead, eg:If this still fails, can you confirm how exactly verifying that this is failing?
Best,
Bobby