--
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/CA%2BPVUaR6QMVC%3DztpQwhKZyRkbUjimqbvhpr_H1bTNUqL2QiJTw%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
Hi folks,I applied this and I did indeed get past the missing /dev/tun and /dev/kvm devices. I can now start my VMI (yay!) however with my basic Cirros VMI based on the registry disk everything appears up, but when I try virtctl console I get this:websocket: close 1006 (abnormal closure): unexpected EOF
And the workaround for minishisft:
minishift start --driver=none --iso-url centos
# ONCE after creation
minishift ssh sed "/kubeletArguments/ a\ feature-gates:"
/var/lib/minishift/openshift.local.config/node-localhost/node-config.yaml
minishift ssh sed "/feature-gates/ a\ - DevicePlugins: true"
/var/lib/minishift/openshift.local.config/node-localhost/node-config.yaml
# ON EVERY start of minishift
minishift ssh bash - <<EOF
set -x
KUBELET_ROOTFS=\$(sudo docker inspect \$(sudo docker ps | grep
kubelet | cut -d" " -f1) | grep MergedDir | cut -d ":" -f2 | tr -d '"
,')
sudo mkdir -p /var/lib/kubelet/device-plugins
$KUBELET_ROOTFS/var/lib/kubelet/device-plugins
sudo mount -o bind $KUBELET_ROOTFS/var/lib/kubelet/device-plugins
/var/lib/kubelet/device-plugins
sudo ls /var/lib/kubelet/device-plugins
EOF
On Fri, Sep 7, 2018 at 7:42 PM Steve Gordon <sgo...@redhat.com> wrote:
>
> Hi folks,
>
> I applied this and I did indeed get past the missing /dev/tun and /dev/kvm devices. I can now start my VMI (yay!) however with my basic Cirros VMI based on the registry disk everything appears up, but when I try virtctl console I get this:
>
> websocket: close 1006 (abnormal closure): unexpected EOF
>
> virtctl VNC just hangs in remote viewer waiting for display (eventually times out after a minute). The VMI shows phase as Running though and nothing else seems abnormal afaict.
>
> VM describe: https://paste.fedoraproject.org/paste/ev588kddE5K1W-SmOHFXMQ
> VMI describe: https://paste.fedoraproject.org/paste/1wAP2yCWvv0iJ0LBkUL0Og
> launcher pod: https://paste.fedoraproject.org/paste/IL8R1dm44hkdw~fYwLNOjg
> compute container logs: https://paste.fedoraproject.org/paste/SahtQGFaAvKDfzlb6mSBgg
> volumeregistryvolume logs: https://paste.fedoraproject.org/paste/Mhyw6bnPDYz0xS~SJ74psA
>
> $ virtctl version
> Client Version: version.Info{GitVersion:"v0.8.0", GitCommit:"6165ead7201d8b96946fdfcfb026e44b86d3d980", GitTreeState:"clean", BuildDate:"2018-09-05T15:38:18Z", GoVersion:"go1.10", Compiler:"gc", Platform:"linux/amd64"}
> Server Version: &version.Info{GitVersion:"v0.8.0", GitCommit:"6165ead7201d8b96946fdfcfb026e44b86d3d980", GitTreeState:"clean", BuildDate:"2018-09-05T15:38:18Z", GoVersion:"go1.10", Compiler:"gc", Platform:"linux/amd64"}
> $ kubectl version
> Client Version: version.Info{Major:"1", Minor:"10", GitVersion:"v1.10.2", GitCommit:"81753b10df112992bf51bbc2c2f85208aad78335", GitTreeState:"clean", BuildDate:"2018-04-27T09:22:21Z", GoVersion:"go1.9.3", Compiler:"gc", Platform:"linux/amd64"}
> Server Version: version.Info{Major:"1", Minor:"10+", GitVersion:"v1.10.0+b81c8f8", GitCommit:"b81c8f8", GitTreeState:"clean", BuildDate:"2018-09-06T15:07:14Z", GoVersion:"go1.9.7", Compiler:"gc", Platform:"linux/amd64"}
>
> Any ideas?
Not on a first glance.
Adding David, as it's related to the subresources.
>> To unsubscribe from this group and stop receiving emails from it, send an email to kubevirt-dev+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/kubevirt-dev/CAPjOJFtfGV-HzVpS8nuwSrxwNxh%2BnJD6gD_%3DvgGauU4Sc-R0sg%40mail.gmail.com.
David, just a heads up that we ran this issue to ground on friday. It turned out that the permissions related workaround we published in the user guide was still referring to virt-infra, but that's been retired. Once we added virt-apiserver to the list of priviledged service accounts, Steve was able to connect on console/vnc.