./virtctl vnc testvm
kubectl get -o yaml vm testvm > kubectl-get-yaml-vm-testvm.txt
kubectl describe pod virt-launcher-testvm-x9kzn > kubectl-describe-pod-virt-launcher-testvm.txt
kubectl logs virt-launcher-testvm-x9kzn -c compute > kubectl-logs-virt-launcher-testvm.txt
--
You received this message because you are subscribed to the Google Groups "kubevirt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubevirt-dev+unsubscribe@googlegroups.com.
To post to this group, send email to kubevi...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubevirt-dev/559c1022-deb3-403d-91c3-7ab0343d8232%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
MARC SLUITER
SENIOR SOFTWARE ENGINEER
Werner-von-Siemens-Ring 14, 85630 Grasbrunn, Germany
Commercial register: Amtsgericht München, HRB 153243
mslu...@redhat.com T: +49-211-95439679 M: +49-174-9902337
![]() |
Hi Ulrich,I will try to reproduce your problem. How do you run k8s, with minikube?Regards,Marc
On Mon, Jun 18, 2018 at 10:15 AM, <uraben...@gmail.com> wrote:
Hi all,I was following the quickstart guide here and the VM is coming up but stuck at booting. I can connect to it viaand see the following. It is stuck in this state for about three days.
./virtctl vnc testvmI am using Ubuntu 16.04.4 and kubernetes v1.10.4 in a VM with 10GM RAM and 10 processors.Attached you can find the output of the following commands and the specification of the VM. I didn't change the latter compared to the quickstart tutorial.
kubectl get -o yaml vm testvm > kubectl-get-yaml-vm-testvm.txt
kubectl describe pod virt-launcher-testvm-x9kzn > kubectl-describe-pod-virt-launcher-testvm.txt
kubectl logs virt-launcher-testvm-x9kzn -c compute > kubectl-logs-virt-launcher-testvm.txtPlease let me know, if I can provide any further information!Thanks for your help,Ulrich
--
You received this message because you are subscribed to the Google Groups "kubevirt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubevirt-dev...@googlegroups.com.
To post to this group, send email to kubevi...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubevirt-dev/559c1022-deb3-403d-91c3-7ab0343d8232%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
I tried the whole thing on two other ways1. with centos instead of Ubuntu
On Monday, June 18, 2018 at 8:13:45 AM UTC-4, uraben...@gmail.com wrote:I tried the whole thing on two other ways1. with centos instead of UbuntuThis is the cirros image you're using. https://download.cirros-cloud.net/0.4.0/cirros-0.4.0-x86_64-disk.imgIt would be interesting to see if you can launch the image directly with libvirt locally using something like virt-manager. If that get's you past the boot phase, please post the libvirt domain xml (virsh dumpxml <name of vm>)
To view this discussion on the web visit https://groups.google.com/d/msgid/kubevirt-dev/47ad0ad5-2565-43cf-9798-94fa3b64ccaf%40googlegroups.com.
Starting the VM using virt-manager worked without any problems and with a reasonable speed. The domain xml is attached.How can I retrieve the domain XML of the non-working KubeVirt VM? It's not listed via virsh.
kubectl get po
kubectl exec -it <Pod-Name> -c compute bash
cat /etc/libvirt/qemu/default_*
To view this discussion on the web visit https://groups.google.com/d/msgid/kubevirt-dev/cadfee18-7478-4de5-9068-2c61fef5136a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
devices:
disks:
- name: mydisk
volumeName: myvolume
disk:
dev: vda
bus: scsi
Is your host virtualized? We've seen this happen using nested virtualization when the inner VM (Kubevirt workload in this case) uses virtio as the disk type. Setting it to SCSI allows Linux to boot. Unfortunately I've not done any debugging to figure out why this is the case.Set the VM spec as follows:
devices:
disks:
- name: mydisk
volumeName: myvolume
disk:
dev: vda
bus: scsi
--BenOn Monday, June 18, 2018 at 1:15:13 AM UTC-7, uraben...@gmail.com wrote:Hi all,I was following the quickstart guide here and the VM is coming up but stuck at booting. I can connect to it viaand see the following. It is stuck in this state for about three days.
./virtctl vnc testvmI am using Ubuntu 16.04.4 and kubernetes v1.10.4 in a VM with 10GM RAM and 10 processors.Attached you can find the output of the following commands and the specification of the VM. I didn't change the latter compared to the quickstart tutorial.
kubectl get -o yaml vm testvm > kubectl-get-yaml-vm-testvm.txt
kubectl describe pod virt-launcher-testvm-x9kzn > kubectl-describe-pod-virt-launcher-testvm.txt
kubectl logs virt-launcher-testvm-x9kzn -c compute > kubectl-logs-virt-launcher-testvm.txtPlease let me know, if I can provide any further information!Thanks for your help,Ulrich
--
You received this message because you are subscribed to the Google Groups "kubevirt-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email to kubevirt-dev...@googlegroups.com.
To post to this group, send email to kubevi...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubevirt-dev/39de88c8-977a-4437-8e20-66e17bc26acf%40googlegroups.com.