Hi Everyone,
I’m trying to PXE boot k3OS but it’s stalling out before I get a shell. Console log,
- Starting k3s-service … [ ok ]
[ ok ] - Caching service dependencies … [ ok ]
- Checking open-iSCSI configuration … * Loading iSCSI modules … * Loading libiscsi … [ ok ]
- Loading scsi_transport_iscsi … [ ok ]
- Loading iscsi_tcp … [ ok ]
- Starting iscsid … * Setting up iSCSI targets …iscsiadm: No records found
[ ok ] - Starting issue … [ ok ]
ssh-keygen: generating new host keys: RSA DSA ECDSA ED25519 - Starting sshd … [ ok ]
- Starting local … [ ok ]
~stalls here~
Can someone spot the mistake?
== cloud-config.yml
ssh_authorized_keys:
- “ssh-rsa A4CowH66a6bJbRK3W5zZ”
run_cmd: - “echo run && echo bye”
boot_cmd: - “echo boot && echo bye”
init_cmd: - “echo init && echo bye”
k3os:
password: rancher
dns_nameservers:- 10.0.0.1
ntp_servers: - 10.0.0.1
- 10.0.0.1
==
== PXE Config
#!ipxe
dhcp
set base-url http://ipxe.domain/k3OS/0.2.1
kernel ${base-url}/vmlinuz printk.devkmsg=on console=tty1 console=ttyS0,9600n8
k3os.mode=live k3os.debug=true k3os.install.config_url=http://ipxe.domain/k3OS/cloud-
config.yml
initrd ${base-url}/initrd
boot
==
Those are the only config files I’ve used. SSH doesn’t work using either my SSH key or connecting as rancher user with the password set in the cloud-config even though it starts sshd.
Thx, J