Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minimal installer: support cloud-init #39088

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions nixos/modules/installer/cd-dvd/installation-cd-minimal.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,7 @@
imports =
[ ./installation-cd-base.nix
];

# Enable cloud-init so the image can also be used for cloud providers
services.cloud-init.enable = true;
Copy link
Member

@Mic92 Mic92 Apr 17, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This adds python + libraries to the iso. How much does this increase the image size?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Python 2.7 is already in the minimal image, so I'm hoping not much. I hope I can find out via ofBorg :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ouch, running nix-shell -p cloud-init on the minimal ISO turns into a 60MB download and 500MB unpacked :-/

Not sure if that is the best way to test though.

}