Question

Cloud-init is ignored from doctl

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

Show comments

Submit an answer


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!

Sign In or Sign Up to Answer

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.

Bobby Iliev
Site Moderator
Site Moderator badge
May 11, 2024

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:

doctl compute droplet create myodds-api221-2 --size s-1vcpu-1gb --image ubuntu-22-04-x64 --region fra1 --wait --user-data "#cloud-config\npackage_update: true\npackage_upgrade: true"

If this still fails, can you confirm how exactly verifying that this is failing?

Best,

Bobby

Try DigitalOcean for free

Click below to sign up and get $200 of credit to try our products over 60 days!

Sign up

Featured on Community

Get our biweekly newsletter

Sign up for Infrastructure as a Newsletter.

Hollie's Hub for Good

Working on improving health and education, reducing inequality, and spurring economic growth? We'd like to help.

Become a contributor

Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.

Welcome to the developer cloud

DigitalOcean makes it simple to launch in the cloud and scale up as you grow — whether you're running one virtual machine or ten thousand.

Learn more
DigitalOcean Cloud Control Panel