CoreOS "ExecStart" not installing coreos to disk?

Hello All,

I'm trying to get CoreOS to both boot and install in my test libvirt
cluster.

I can get VMs to boot to CoreOS no problem once I manually downloaded and
correctly named the files in /var/lib/tftpboot/boot/.

However, once booted, the CoreOS VM doesn't install anything.

Once it is booted, I can ssh in as core and sudo to root. "parted -l" just
shows /dev/vda as having no disk label or partition table.

Does anyone know if the following should work, or if I need to change
something? This was taken directly from the community templates github
repo:

content: |
[Unit]
Description=Install coreos to disk
[Service]
ExecStart=/bin/bash -c "/usr/bin/coreos-install -C stable -d /dev/vda -c
/home/core/cloud-config.yml -b http://stable.release.core-os.net/amd64-usr
&& wget -q -O /dev/null --no-check-certificate
http://192.168.122.2:80/unattended/built?token=6c3b490f-2c8e-489c-96ff-2a801f76366f
&& reboot"

Should "coreos-install" be able to label and partition a disk? Is there a
way to view a log of what it attempted?

Many Thanks,

I solved this by updating to the latest stable CoreOS (766.4.0)

ยทยทยท On Sunday, October 4, 2015 at 1:01:18 PM UTC-4, Anthony Clark wrote: > > Hello All, > > I'm trying to get CoreOS to both boot and install in my test libvirt > cluster. > > I can get VMs to boot to CoreOS no problem once I manually downloaded and > correctly named the files in /var/lib/tftpboot/boot/. > > However, once booted, the CoreOS VM doesn't install anything. > > Once it is booted, I can ssh in as core and sudo to root. "parted -l" > just shows /dev/vda as having no disk label or partition table. > > Does anyone know if the following should work, or if I need to change > something? This was taken directly from the community templates github > repo: > > content: | > [Unit] > Description=Install coreos to disk > [Service] > ExecStart=/bin/bash -c "/usr/bin/coreos-install -C stable -d /dev/vda -c > /home/core/cloud-config.yml -b http://stable.release.core-os.net/amd64-usr > && wget -q -O /dev/null --no-check-certificate > http://192.168.122.2:80/unattended/built?token=6c3b490f-2c8e-489c-96ff-2a801f76366f > && reboot" > > > Should "coreos-install" be able to label and partition a disk? Is there a > way to view a log of what it attempted? > > Many Thanks, >