+ export WORKSPACE=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release + WORKSPACE=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release + [[ k8s-1.11.0-release =~ openshift-.* ]] + [[ k8s-1.11.0-release =~ .*-1.10.4-.* ]] + export KUBEVIRT_PROVIDER=k8s-1.11.0 + KUBEVIRT_PROVIDER=k8s-1.11.0 + export KUBEVIRT_NUM_NODES=2 + KUBEVIRT_NUM_NODES=2 + export NFS_WINDOWS_DIR=/home/nfs/images/windows2016 + NFS_WINDOWS_DIR=/home/nfs/images/windows2016 + export NAMESPACE=kube-system + NAMESPACE=kube-system + trap '{ make cluster-down; }' EXIT SIGINT SIGTERM SIGSTOP + make cluster-down ./cluster/down.sh + make cluster-up ./cluster/up.sh Downloading ....... Downloading ....... 2018/08/02 10:18:35 Waiting for host: 192.168.66.101:22 2018/08/02 10:18:38 Problem with dial: dial tcp 192.168.66.101:22: getsockopt: no route to host. Sleeping 5s 2018/08/02 10:18:46 Problem with dial: dial tcp 192.168.66.101:22: getsockopt: no route to host. Sleeping 5s 2018/08/02 10:18:51 Connected to tcp://192.168.66.101:22 ++ grep active ++ wc -l ++ systemctl status docker + [[ 0 -eq 0 ]] + sleep 2 ++ systemctl status docker ++ grep active ++ wc -l + [[ 1 -eq 0 ]] + kubeadm init --config /etc/kubernetes/kubeadm.conf [init] using Kubernetes version: v1.11.0 [preflight] running pre-flight checks I0802 10:18:54.468257 1265 feature_gate.go:230] feature gates: &{map[]} I0802 10:18:54.568144 1265 kernel_validator.go:81] Validating kernel version I0802 10:18:54.568382 1265 kernel_validator.go:96] Validating kernel config [preflight/images] Pulling images required for setting up a Kubernetes cluster [preflight/images] This might take a minute or two, depending on the speed of your internet connection [preflight/images] You can also perform this action in beforehand using 'kubeadm config images pull' [kubelet] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env" [kubelet] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml" [preflight] Activating the kubelet service [certificates] Generated ca certificate and key. [certificates] Generated apiserver certificate and key. [certificates] apiserver serving cert is signed for DNS names [node01 kubernetes kubernetes.default kubernetes.default.svc kubernetes.default.svc.cluster.local] and IPs [10.96.0.1 192.168.66.101] [certificates] Generated apiserver-kubelet-client certificate and key. [certificates] Generated sa key and public key. [certificates] Generated front-proxy-ca certificate and key. [certificates] Generated front-proxy-client certificate and key. [certificates] Generated etcd/ca certificate and key. [certificates] Generated etcd/server certificate and key. [certificates] etcd/server serving cert is signed for DNS names [node01 localhost] and IPs [127.0.0.1 ::1] [certificates] Generated etcd/peer certificate and key. [certificates] etcd/peer serving cert is signed for DNS names [node01 localhost] and IPs [192.168.66.101 127.0.0.1 ::1] [certificates] Generated etcd/healthcheck-client certificate and key. [certificates] Generated apiserver-etcd-client certificate and key. [certificates] valid certificates and keys now exist in "/etc/kubernetes/pki" [kubeconfig] Wrote KubeConfig file to disk: "/etc/kubernetes/admin.conf" [kubeconfig] Wrote KubeConfig file to disk: "/etc/kubernetes/kubelet.conf" [kubeconfig] Wrote KubeConfig file to disk: "/etc/kubernetes/controller-manager.conf" [kubeconfig] Wrote KubeConfig file to disk: "/etc/kubernetes/scheduler.conf" [controlplane] wrote Static Pod manifest for component kube-apiserver to "/etc/kubernetes/manifests/kube-apiserver.yaml" [controlplane] wrote Static Pod manifest for component kube-controller-manager to "/etc/kubernetes/manifests/kube-controller-manager.yaml" [controlplane] wrote Static Pod manifest for component kube-scheduler to "/etc/kubernetes/manifests/kube-scheduler.yaml" [etcd] Wrote Static Pod manifest for a local etcd instance to "/etc/kubernetes/manifests/etcd.yaml" [init] waiting for the kubelet to boot up the control plane as Static Pods from directory "/etc/kubernetes/manifests" [init] this might take a minute or longer if the control plane images have to be pulled [apiclient] All control plane components are healthy after 53.509343 seconds [uploadconfig] storing the configuration used in ConfigMap "kubeadm-config" in the "kube-system" Namespace [kubelet] Creating a ConfigMap "kubelet-config-1.11" in namespace kube-system with the configuration for the kubelets in the cluster [markmaster] Marking the node node01 as master by adding the label "node-role.kubernetes.io/master=''" [markmaster] Marking the node node01 as master by adding the taints [node-role.kubernetes.io/master:NoSchedule] [patchnode] Uploading the CRI Socket information "/var/run/dockershim.sock" to the Node API object "node01" as an annotation [bootstraptoken] using token: abcdef.1234567890123456 [bootstraptoken] configured RBAC rules to allow Node Bootstrap tokens to post CSRs in order for nodes to get long term certificate credentials [bootstraptoken] configured RBAC rules to allow the csrapprover controller automatically approve CSRs from a Node Bootstrap Token [bootstraptoken] configured RBAC rules to allow certificate rotation for all node client certificates in the cluster [bootstraptoken] creating the "cluster-info" ConfigMap in the "kube-public" namespace [addons] Applied essential addon: CoreDNS [addons] Applied essential addon: kube-proxy Your Kubernetes master has initialized successfully! To start using your cluster, you need to run the following as a regular user: mkdir -p $HOME/.kube sudo cp -i /etc/kubernetes/admin.conf $HOME/.kube/config sudo chown $(id -u):$(id -g) $HOME/.kube/config You should now deploy a pod network to the cluster. Run "kubectl apply -f [podnetwork].yaml" with one of the options listed at: https://kubernetes.io/docs/concepts/cluster-administration/addons/ You can now join any number of machines by running the following on each node as root: kubeadm join 192.168.66.101:6443 --token abcdef.1234567890123456 --discovery-token-ca-cert-hash sha256:00d2e8049e6512f9f9db82478ae1c269ecaf4662ecd4a758ee822dfe0db8b3c7 + kubectl --kubeconfig=/etc/kubernetes/admin.conf apply -f https://raw.githubusercontent.com/coreos/flannel/v0.9.1/Documentation/kube-flannel.yml clusterrole.rbac.authorization.k8s.io/flannel created clusterrolebinding.rbac.authorization.k8s.io/flannel created serviceaccount/flannel created configmap/kube-flannel-cfg created daemonset.extensions/kube-flannel-ds created + kubectl --kubeconfig=/etc/kubernetes/admin.conf taint nodes node01 node-role.kubernetes.io/master:NoSchedule- node/node01 untainted + kubectl --kubeconfig=/etc/kubernetes/admin.conf create -f /tmp/local-volume.yaml storageclass.storage.k8s.io/local created configmap/local-storage-config created clusterrolebinding.rbac.authorization.k8s.io/local-storage-provisioner-pv-binding created clusterrole.rbac.authorization.k8s.io/local-storage-provisioner-node-clusterrole created clusterrolebinding.rbac.authorization.k8s.io/local-storage-provisioner-node-binding created role.rbac.authorization.k8s.io/local-storage-provisioner-jobs-role created rolebinding.rbac.authorization.k8s.io/local-storage-provisioner-jobs-rolebinding created serviceaccount/local-storage-admin created daemonset.extensions/local-volume-provisioner created 2018/08/02 10:20:07 Waiting for host: 192.168.66.102:22 2018/08/02 10:20:10 Problem with dial: dial tcp 192.168.66.102:22: getsockopt: no route to host. Sleeping 5s 2018/08/02 10:20:18 Problem with dial: dial tcp 192.168.66.102:22: getsockopt: no route to host. Sleeping 5s 2018/08/02 10:20:23 Connected to tcp://192.168.66.102:22 ++ wc -l ++ grep active ++ systemctl status docker + [[ 0 -eq 0 ]] + sleep 2 ++ systemctl status docker ++ grep active ++ wc -l + [[ 1 -eq 0 ]] + kubeadm join --token abcdef.1234567890123456 192.168.66.101:6443 --ignore-preflight-errors=all --discovery-token-unsafe-skip-ca-verification=true [preflight] running pre-flight checks [WARNING RequiredIPVSKernelModulesAvailable]: the IPVS proxier will not be used, because the following required kernel modules are not loaded: [ip_vs_wrr ip_vs_sh ip_vs ip_vs_rr] or no builtin kernel ipvs support: map[ip_vs:{} ip_vs_rr:{} ip_vs_wrr:{} ip_vs_sh:{} nf_conntrack_ipv4:{}] you can solve this problem with following methods: 1. Run 'modprobe -- ' to load missing kernel modules; 2. Provide the missing builtin kernel ipvs support I0802 10:20:28.186413 1262 kernel_validator.go:81] Validating kernel version I0802 10:20:28.186786 1262 kernel_validator.go:96] Validating kernel config [discovery] Trying to connect to API Server "192.168.66.101:6443" [discovery] Created cluster-info discovery client, requesting info from "https://192.168.66.101:6443" [discovery] Cluster info signature and contents are valid and no TLS pinning was specified, will use API Server "192.168.66.101:6443" [discovery] Successfully established connection with API Server "192.168.66.101:6443" [kubelet] Downloading configuration for the kubelet from the "kubelet-config-1.11" ConfigMap in the kube-system namespace [kubelet] Writing kubelet configuration to file "/var/lib/kubelet/config.yaml" [kubelet] Writing kubelet environment file with flags to file "/var/lib/kubelet/kubeadm-flags.env" [preflight] Activating the kubelet service [tlsbootstrap] Waiting for the kubelet to perform the TLS Bootstrap... [patchnode] Uploading the CRI Socket information "/var/run/dockershim.sock" to the Node API object "node02" as an annotation This node has joined the cluster: * Certificate signing request was sent to master and a response was received. * The Kubelet was informed of the new secure connection details. Run 'kubectl get nodes' on the master to see this node join the cluster. Sending file modes: C0755 38739968 kubectl Sending file modes: C0600 5454 admin.conf Cluster "kubernetes" set. Cluster "kubernetes" set. + set +e + kubectl get nodes --no-headers + cluster/kubectl.sh get nodes --no-headers node01 Ready master 56s v1.11.0 node02 Ready 24s v1.11.0 + kubectl_rc=0 + '[' 0 -ne 0 ']' ++ kubectl get nodes --no-headers ++ cluster/kubectl.sh get nodes --no-headers ++ grep NotReady + '[' -n '' ']' + set -e + echo 'Nodes are ready:' Nodes are ready: + kubectl get nodes + cluster/kubectl.sh get nodes NAME STATUS ROLES AGE VERSION node01 Ready master 57s v1.11.0 node02 Ready 25s v1.11.0 + make cluster-sync ./cluster/build.sh Building ... Untagged: localhost:33208/kubevirt/virt-controller:devel Untagged: localhost:33208/kubevirt/virt-controller@sha256:51d1871923caeca8ff206e4d383f8d1ddbb5d094f8282d340abdcabec3291855 Deleted: sha256:68ab103273bd6b9422b4c8829f658197520f26ea959b933f6c45cba3ad59b787 Untagged: localhost:33208/kubevirt/virt-launcher:devel Untagged: localhost:33208/kubevirt/virt-launcher@sha256:0518c6a14cf76a9d93cf36844f35142bc042765e095283defcbf331584cb67f1 Deleted: sha256:1ddedfc36aad7629b976fbdb8f70bfe97a2eedf2225fdc5cec1206284eef630d Untagged: localhost:33208/kubevirt/virt-handler:devel Untagged: localhost:33208/kubevirt/virt-handler@sha256:e39386b253df65c7d8874fbd0a19726ae3eeb161c57e106e3831df89b7877b26 Deleted: sha256:3289bec2a4862707de9b9bda58bc70e3bbf6a10248269152fac56c9dad69b04b Untagged: localhost:33208/kubevirt/virt-api:devel Untagged: localhost:33208/kubevirt/virt-api@sha256:f947fe11eed917d06df0486d2e24f5abdf17b5a4c59a98fbf812eae06957cfe8 Deleted: sha256:2b7ada00ce72b7a1330790b12505d3a30b243e3fa5ee396d8e0bb86f888038c3 Untagged: localhost:33208/kubevirt/subresource-access-test:devel Untagged: localhost:33208/kubevirt/subresource-access-test@sha256:7fafd2bcbb65143a4b591fc1c23aa9cb2273b93e367187232b0205b8cd51767e Deleted: sha256:52865fd0c7f0fa3b3d7772a35c45bc9840b644d312ae49c119051d5c3c72b086 Untagged: localhost:33208/kubevirt/example-hook-sidecar:devel Untagged: localhost:33208/kubevirt/example-hook-sidecar@sha256:929215d9be700156ae7ad89b576a98bc785c0f44d239d7148a2efdaf91100bf6 Deleted: sha256:04d48b74dcc23f1cc287128607f4c6ed5dc845e210ec17753e5abd30790aa327 sha256:dcf2b21fa2ed11dcf9dbba21b1cca0ee3fad521a0e9aee61c06d0b0b66a4b200 go version go1.10 linux/amd64 go version go1.10 linux/amd64 make[1]: Entering directory `/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt' hack/dockerized "./hack/check.sh && KUBEVIRT_VERSION= ./hack/build-go.sh install " && ./hack/build-copy-artifacts.sh sha256:dcf2b21fa2ed11dcf9dbba21b1cca0ee3fad521a0e9aee61c06d0b0b66a4b200 go version go1.10 linux/amd64 go version go1.10 linux/amd64 find: '/root/go/src/kubevirt.io/kubevirt/_out/cmd': No such file or directory Compiling tests... compiled tests.test hack/build-docker.sh build Sending build context to Docker daemon 40.39 MB Step 1/8 : FROM fedora:28 ---> cc510acfcd70 Step 2/8 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> bfe77d5699ed Step 3/8 : RUN useradd -u 1001 --create-home -s /bin/bash virt-controller ---> Using cache ---> b00c84523b53 Step 4/8 : WORKDIR /home/virt-controller ---> Using cache ---> b76b8bd8cd39 Step 5/8 : USER 1001 ---> Using cache ---> b6d9ad9ed232 Step 6/8 : COPY virt-controller /usr/bin/virt-controller ---> 1fe9b2ea3d80 Removing intermediate container fbcd3a520725 Step 7/8 : ENTRYPOINT /usr/bin/virt-controller ---> Running in b0b082276b93 ---> 12696670c79a Removing intermediate container b0b082276b93 Step 8/8 : LABEL "kubevirt-functional-tests-k8s-1.11.0-release0" '' "virt-controller" '' ---> Running in b6da14ea1540 ---> 0e6ecae1861b Removing intermediate container b6da14ea1540 Successfully built 0e6ecae1861b Sending build context to Docker daemon 43.31 MB Step 1/10 : FROM kubevirt/libvirt:4.2.0 ---> 5f0bfe81a3e0 Step 2/10 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> 945996802736 Step 3/10 : RUN dnf -y install socat genisoimage util-linux libcgroup-tools ethtool net-tools sudo && dnf -y clean all && test $(id -u qemu) = 107 # make sure that the qemu user really is 107 ---> Using cache ---> 672f9ab56316 Step 4/10 : COPY virt-launcher /usr/bin/virt-launcher ---> 55cd676cbbb2 Removing intermediate container fdb69138c9a7 Step 5/10 : COPY kubevirt-sudo /etc/sudoers.d/kubevirt ---> d983f5a36dd5 Removing intermediate container f2e421a575fc Step 6/10 : RUN setcap CAP_NET_BIND_SERVICE=+eip /usr/bin/qemu-system-x86_64 ---> Running in 466446faaf70  ---> a739c38539f9 Removing intermediate container 466446faaf70 Step 7/10 : RUN mkdir -p /usr/share/kubevirt/virt-launcher ---> Running in 4796e1bb8397  ---> e965885ad121 Removing intermediate container 4796e1bb8397 Step 8/10 : COPY entrypoint.sh libvirtd.sh sock-connector /usr/share/kubevirt/virt-launcher/ ---> 19e70c9eb5cc Removing intermediate container 1bffe00b631f Step 9/10 : ENTRYPOINT /usr/share/kubevirt/virt-launcher/entrypoint.sh ---> Running in 08fd656cd996 ---> 798fdb45c56c Removing intermediate container 08fd656cd996 Step 10/10 : LABEL "kubevirt-functional-tests-k8s-1.11.0-release0" '' "virt-launcher" '' ---> Running in 864bca4d9ae3 ---> 12b427d63f5d Removing intermediate container 864bca4d9ae3 Successfully built 12b427d63f5d Sending build context to Docker daemon 41.74 MB Step 1/5 : FROM fedora:28 ---> cc510acfcd70 Step 2/5 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> bfe77d5699ed Step 3/5 : COPY virt-handler /usr/bin/virt-handler ---> 49501334b17e Removing intermediate container 8bacb1cc54c4 Step 4/5 : ENTRYPOINT /usr/bin/virt-handler ---> Running in 4fad9629e18f ---> 7aa34460126f Removing intermediate container 4fad9629e18f Step 5/5 : LABEL "kubevirt-functional-tests-k8s-1.11.0-release0" '' "virt-handler" '' ---> Running in f2f0f6777aaa ---> 0b9f557e469e Removing intermediate container f2f0f6777aaa Successfully built 0b9f557e469e Sending build context to Docker daemon 38.81 MB Step 1/8 : FROM fedora:28 ---> cc510acfcd70 Step 2/8 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> bfe77d5699ed Step 3/8 : RUN useradd -u 1001 --create-home -s /bin/bash virt-api ---> Using cache ---> ed1ebf600ee1 Step 4/8 : WORKDIR /home/virt-api ---> Using cache ---> 0769dad023e5 Step 5/8 : USER 1001 ---> Using cache ---> 0cb65afb0c2b Step 6/8 : COPY virt-api /usr/bin/virt-api ---> 0dd839df23c9 Removing intermediate container cad0eceabb6f Step 7/8 : ENTRYPOINT /usr/bin/virt-api ---> Running in db7000debba2 ---> 6b1cf321b3e6 Removing intermediate container db7000debba2 Step 8/8 : LABEL "kubevirt-functional-tests-k8s-1.11.0-release0" '' "virt-api" '' ---> Running in d2e54024b494 ---> 45ede920cdda Removing intermediate container d2e54024b494 Successfully built 45ede920cdda Sending build context to Docker daemon 4.096 kB Step 1/7 : FROM fedora:28 ---> cc510acfcd70 Step 2/7 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> bfe77d5699ed Step 3/7 : ENV container docker ---> Using cache ---> 62847a2a1fa8 Step 4/7 : RUN mkdir -p /images/custom /images/alpine && truncate -s 64M /images/custom/disk.img && curl http://dl-cdn.alpinelinux.org/alpine/v3.7/releases/x86_64/alpine-virt-3.7.0-x86_64.iso > /images/alpine/disk.img ---> Using cache ---> 02134835a6aa Step 5/7 : ADD entrypoint.sh / ---> Using cache ---> ec0843818da7 Step 6/7 : CMD /entrypoint.sh ---> Using cache ---> 754029bb4bd2 Step 7/7 : LABEL "disks-images-provider" '' "kubevirt-functional-tests-k8s-1.11.0-release0" '' ---> Using cache ---> 2ce1eec77729 Successfully built 2ce1eec77729 Sending build context to Docker daemon 2.56 kB Step 1/5 : FROM fedora:28 ---> cc510acfcd70 Step 2/5 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> bfe77d5699ed Step 3/5 : ENV container docker ---> Using cache ---> 62847a2a1fa8 Step 4/5 : RUN dnf -y install procps-ng nmap-ncat && dnf -y clean all ---> Using cache ---> 207487abe7b2 Step 5/5 : LABEL "kubevirt-functional-tests-k8s-1.11.0-release0" '' "vm-killer" '' ---> Using cache ---> 51b62a0ecd10 Successfully built 51b62a0ecd10 Sending build context to Docker daemon 5.12 kB Step 1/7 : FROM debian:sid ---> 68f33cf86aab Step 2/7 : MAINTAINER "David Vossel" \ ---> Using cache ---> 5734d749eb5c Step 3/7 : ENV container docker ---> Using cache ---> f8775a77966f Step 4/7 : RUN apt-get update && apt-get install -y bash curl bzip2 qemu-utils && mkdir -p /disk && rm -rf /var/lib/apt/lists/* ---> Using cache ---> 1a40cf222a61 Step 5/7 : ADD entry-point.sh / ---> Using cache ---> 77b545d92fe7 Step 6/7 : CMD /entry-point.sh ---> Using cache ---> dfe20d463305 Step 7/7 : LABEL "kubevirt-functional-tests-k8s-1.11.0-release0" '' "registry-disk-v1alpha" '' ---> Using cache ---> d47274c50623 Successfully built d47274c50623 Sending build context to Docker daemon 2.56 kB Step 1/4 : FROM localhost:33487/kubevirt/registry-disk-v1alpha:devel ---> d47274c50623 Step 2/4 : MAINTAINER "David Vossel" \ ---> Using cache ---> 94c21c65872a Step 3/4 : RUN curl https://download.cirros-cloud.net/0.4.0/cirros-0.4.0-x86_64-disk.img > /disk/cirros.img ---> Using cache ---> 48605500da55 Step 4/4 : LABEL "cirros-registry-disk-demo" '' "kubevirt-functional-tests-k8s-1.11.0-release0" '' ---> Using cache ---> 4b8200fc9235 Successfully built 4b8200fc9235 Sending build context to Docker daemon 2.56 kB Step 1/4 : FROM localhost:33487/kubevirt/registry-disk-v1alpha:devel ---> d47274c50623 Step 2/4 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> 8e698fc18d9d Step 3/4 : RUN curl -g -L https://download.fedoraproject.org/pub/fedora/linux/releases/27/CloudImages/x86_64/images/Fedora-Cloud-Base-27-1.6.x86_64.qcow2 > /disk/fedora.qcow2 ---> Using cache ---> e9c68c4dc91c Step 4/4 : LABEL "fedora-cloud-registry-disk-demo" '' "kubevirt-functional-tests-k8s-1.11.0-release0" '' ---> Using cache ---> 98232324771d Successfully built 98232324771d Sending build context to Docker daemon 2.56 kB Step 1/4 : FROM localhost:33487/kubevirt/registry-disk-v1alpha:devel ---> d47274c50623 Step 2/4 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> 8e698fc18d9d Step 3/4 : RUN curl http://dl-cdn.alpinelinux.org/alpine/v3.7/releases/x86_64/alpine-virt-3.7.0-x86_64.iso > /disk/alpine.iso ---> Using cache ---> 38176d1a3214 Step 4/4 : LABEL "alpine-registry-disk-demo" '' "kubevirt-functional-tests-k8s-1.11.0-release0" '' ---> Using cache ---> 8c0a79fc816d Successfully built 8c0a79fc816d Sending build context to Docker daemon 35.59 MB Step 1/8 : FROM fedora:28 ---> cc510acfcd70 Step 2/8 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> bfe77d5699ed Step 3/8 : RUN useradd -u 1001 --create-home -s /bin/bash virtctl ---> Using cache ---> 985fe391c056 Step 4/8 : WORKDIR /home/virtctl ---> Using cache ---> 3b2cae8ac543 Step 5/8 : USER 1001 ---> Using cache ---> 0c06e5b4a900 Step 6/8 : COPY subresource-access-test /subresource-access-test ---> 545f7412d6d4 Removing intermediate container b17df1d71003 Step 7/8 : ENTRYPOINT /subresource-access-test ---> Running in 97a4b964bcfe ---> e6875a79ca11 Removing intermediate container 97a4b964bcfe Step 8/8 : LABEL "kubevirt-functional-tests-k8s-1.11.0-release0" '' "subresource-access-test" '' ---> Running in c37860620e24 ---> 770b7d5540f6 Removing intermediate container c37860620e24 Successfully built 770b7d5540f6 Sending build context to Docker daemon 3.072 kB Step 1/9 : FROM fedora:28 ---> cc510acfcd70 Step 2/9 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> bfe77d5699ed Step 3/9 : ENV container docker ---> Using cache ---> 62847a2a1fa8 Step 4/9 : RUN dnf -y install make git gcc && dnf -y clean all ---> Using cache ---> d3456b1644b1 Step 5/9 : ENV GIMME_GO_VERSION 1.9.2 ---> Using cache ---> 0ba81fddbba1 Step 6/9 : RUN mkdir -p /gimme && curl -sL https://raw.githubusercontent.com/travis-ci/gimme/master/gimme | HOME=/gimme bash >> /etc/profile.d/gimme.sh ---> Using cache ---> 5d33abe3f819 Step 7/9 : ENV GOPATH "/go" GOBIN "/usr/bin" ---> Using cache ---> 783826523be1 Step 8/9 : RUN mkdir -p /go && source /etc/profile.d/gimme.sh && go get github.com/masterzen/winrm-cli ---> Using cache ---> 711bc8d15952 Step 9/9 : LABEL "kubevirt-functional-tests-k8s-1.11.0-release0" '' "winrmcli" '' ---> Using cache ---> 671374ffcc63 Successfully built 671374ffcc63 Sending build context to Docker daemon 36.8 MB Step 1/5 : FROM fedora:27 ---> 9110ae7f579f Step 2/5 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> e3238544ad97 Step 3/5 : COPY example-hook-sidecar /example-hook-sidecar ---> 1ca86501391b Removing intermediate container 8ba95ec2349b Step 4/5 : ENTRYPOINT /example-hook-sidecar ---> Running in 27b41bacbb89 ---> 85753d9f4fe3 Removing intermediate container 27b41bacbb89 Step 5/5 : LABEL "example-hook-sidecar" '' "kubevirt-functional-tests-k8s-1.11.0-release0" '' ---> Running in e7795892750b ---> c7f473236a90 Removing intermediate container e7795892750b Successfully built c7f473236a90 hack/build-docker.sh push The push refers to a repository [localhost:33487/kubevirt/virt-controller] 4c814cfb0a8b: Preparing aa89340cf7a8: Preparing 891e1e4ef82a: Preparing aa89340cf7a8: Pushed 4c814cfb0a8b: Pushed 891e1e4ef82a: Pushed devel: digest: sha256:a1d65cf93f6e331fa8e8742656d284deffe34459ee27404109267302252248d6 size: 949 The push refers to a repository [localhost:33487/kubevirt/virt-launcher] aa056233b0a2: Preparing b15857bd25aa: Preparing 59bdc69e2684: Preparing 43175215dfed: Preparing ce7996782210: Preparing 633427c64a24: Preparing da38cf808aa5: Preparing b83399358a92: Preparing 186d8b3e4fd8: Preparing fa6154170bf5: Preparing 633427c64a24: Waiting 186d8b3e4fd8: Waiting 5eefb9960a36: Preparing 891e1e4ef82a: Preparing da38cf808aa5: Waiting 5eefb9960a36: Waiting aa056233b0a2: Pushed b15857bd25aa: Pushed 43175215dfed: Pushed da38cf808aa5: Pushed b83399358a92: Pushed 186d8b3e4fd8: Pushed fa6154170bf5: Pushed 891e1e4ef82a: Mounted from kubevirt/virt-controller 59bdc69e2684: Pushed 633427c64a24: Pushed ce7996782210: Pushed 5eefb9960a36: Pushed devel: digest: sha256:eb1d1a091aaf6be4f0d68c124726d53849adfbe1c259e4471afe691f710b315a size: 2828 The push refers to a repository [localhost:33487/kubevirt/virt-handler] 778f0be73b59: Preparing 891e1e4ef82a: Preparing 891e1e4ef82a: Mounted from kubevirt/virt-launcher 778f0be73b59: Pushed devel: digest: sha256:7077053457c432bd4fb64194aac53fe0f2291ed518808326127b6e00a96715ff size: 741 The push refers to a repository [localhost:33487/kubevirt/virt-api] ac007035f4ea: Preparing 82fc744c99b4: Preparing 891e1e4ef82a: Preparing 891e1e4ef82a: Mounted from kubevirt/virt-handler 82fc744c99b4: Pushed ac007035f4ea: Pushed devel: digest: sha256:f5793ba2a20371a71765797a08764dadee7e37c9a01f22b719025a28a676b747 size: 948 The push refers to a repository [localhost:33487/kubevirt/disks-images-provider] 71ad31feb2c5: Preparing 21d4b721776e: Preparing 891e1e4ef82a: Preparing 891e1e4ef82a: Mounted from kubevirt/virt-api 71ad31feb2c5: Pushed 21d4b721776e: Pushed devel: digest: sha256:cd187e542554d6c701bfb0cb08f65a76d23fa75be34176dc4188c76ec468c9f4 size: 948 The push refers to a repository [localhost:33487/kubevirt/vm-killer] c4cfadeeaf5f: Preparing 891e1e4ef82a: Preparing 891e1e4ef82a: Mounted from kubevirt/disks-images-provider c4cfadeeaf5f: Pushed devel: digest: sha256:72afae217b15b5f36f1509e4a78d76f16b21e607b318d2e701cfe8567738c9dc size: 740 The push refers to a repository [localhost:33487/kubevirt/registry-disk-v1alpha] 661cce8d8e52: Preparing 41e0baba3077: Preparing 25edbec0eaea: Preparing 661cce8d8e52: Pushed 41e0baba3077: Pushed 25edbec0eaea: Pushed devel: digest: sha256:4beab74b750c384fed6e9272292cd4f3885cf63160b4cc8be85dcb7eb12fd910 size: 948 The push refers to a repository [localhost:33487/kubevirt/cirros-registry-disk-demo] 796d82cd42db: Preparing 661cce8d8e52: Preparing 41e0baba3077: Preparing 25edbec0eaea: Preparing 41e0baba3077: Mounted from kubevirt/registry-disk-v1alpha 661cce8d8e52: Mounted from kubevirt/registry-disk-v1alpha 25edbec0eaea: Mounted from kubevirt/registry-disk-v1alpha 796d82cd42db: Pushed devel: digest: sha256:caa473d35dda5da1c955c07c18584bca173fc3ac1655c04509b42465d78e6565 size: 1160 The push refers to a repository [localhost:33487/kubevirt/fedora-cloud-registry-disk-demo] 3cf3799e71d4: Preparing 661cce8d8e52: Preparing 41e0baba3077: Preparing 25edbec0eaea: Preparing 41e0baba3077: Mounted from kubevirt/cirros-registry-disk-demo 25edbec0eaea: Mounted from kubevirt/cirros-registry-disk-demo 661cce8d8e52: Mounted from kubevirt/cirros-registry-disk-demo 3cf3799e71d4: Pushed devel: digest: sha256:949d4de4d95938a99ac539d20780234a3f06cc98e3d0113d383d45e98b360c10 size: 1161 The push refers to a repository [localhost:33487/kubevirt/alpine-registry-disk-demo] c59c11514491: Preparing 661cce8d8e52: Preparing 41e0baba3077: Preparing 25edbec0eaea: Preparing 661cce8d8e52: Mounted from kubevirt/fedora-cloud-registry-disk-demo 25edbec0eaea: Mounted from kubevirt/fedora-cloud-registry-disk-demo 41e0baba3077: Mounted from kubevirt/fedora-cloud-registry-disk-demo c59c11514491: Pushed devel: digest: sha256:f95f7a6825d39ae4570cd8b9e1fb8d77f390e328d9d8a0e516f222809071b61c size: 1160 The push refers to a repository [localhost:33487/kubevirt/subresource-access-test] bae3696c44c1: Preparing 25cb73590a9d: Preparing 891e1e4ef82a: Preparing 891e1e4ef82a: Mounted from kubevirt/vm-killer 25cb73590a9d: Pushed bae3696c44c1: Pushed devel: digest: sha256:cbbb59401dcd12f91865e88e681e0d954173247feb9b50f95da7a1cdaef249cd size: 948 The push refers to a repository [localhost:33487/kubevirt/winrmcli] f8083e002d0b: Preparing 53c709abc882: Preparing 9ca98a0f492b: Preparing 891e1e4ef82a: Preparing 891e1e4ef82a: Mounted from kubevirt/subresource-access-test f8083e002d0b: Pushed 9ca98a0f492b: Pushed 53c709abc882: Pushed devel: digest: sha256:a1fae1967d100edf5b23924a81a158c98d867422874226220754a604b2c256af size: 1165 The push refers to a repository [localhost:33487/kubevirt/example-hook-sidecar] 5ea0f62707d3: Preparing 39bae602f753: Preparing 5ea0f62707d3: Pushed 39bae602f753: Pushed devel: digest: sha256:4625a855fa7b2555dc875c1ce3b4197e532a0be8de18cc9cb0fc0c5a652fec61 size: 740 make[1]: Leaving directory `/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt' Done ./cluster/clean.sh + source hack/common.sh ++++ dirname 'hack/common.sh[0]' +++ cd hack/../ +++ pwd ++ KUBEVIRT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt ++ OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out ++ VENDOR_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/vendor ++ CMD_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/cmd ++ TESTS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/tests ++ APIDOCS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/apidocs ++ MANIFESTS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/manifests ++ MANIFEST_TEMPLATES_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/templates/manifests ++ PYTHON_CLIENT_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/client-python ++ KUBEVIRT_PROVIDER=k8s-1.11.0 ++ KUBEVIRT_NUM_NODES=2 ++ '[' -z kubevirt-functional-tests-k8s-1.11.0-release ']' ++ provider_prefix=kubevirt-functional-tests-k8s-1.11.0-release0 ++ job_prefix=kubevirt-functional-tests-k8s-1.11.0-release0 +++ kubevirt_version +++ '[' -n '' ']' +++ '[' -d /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/.git ']' ++++ git describe --always --tags +++ echo v0.7.0-180-g2b4f231 ++ KUBEVIRT_VERSION=v0.7.0-180-g2b4f231 + source cluster/k8s-1.11.0/provider.sh ++ set -e ++ image=k8s-1.11.0@sha256:6c1caf5559eb02a144bf606de37eb0194c06ace4d77ad4561459f3bde876151c ++ source cluster/ephemeral-provider-common.sh +++ set -e +++ _cli='docker run --privileged --net=host --rm -v /var/run/docker.sock:/var/run/docker.sock kubevirtci/gocli@sha256:aa7f295a7908fa333ab5e98ef3af0bfafbabfd3cee2b83f9af47f722e3000f6a' + source hack/config.sh ++ unset binaries docker_images docker_prefix docker_tag manifest_templates master_ip network_provider kubeconfig manifest_docker_prefix namespace ++ KUBEVIRT_PROVIDER=k8s-1.11.0 ++ source hack/config-default.sh source hack/config-k8s-1.11.0.sh +++ binaries='cmd/virt-controller cmd/virt-launcher cmd/virt-handler cmd/virtctl cmd/fake-qemu-process cmd/virt-api cmd/subresource-access-test cmd/example-hook-sidecar' +++ docker_images='cmd/virt-controller cmd/virt-launcher cmd/virt-handler cmd/virt-api images/disks-images-provider images/vm-killer cmd/registry-disk-v1alpha images/cirros-registry-disk-demo images/fedora-cloud-registry-disk-demo images/alpine-registry-disk-demo cmd/subresource-access-test images/winrmcli cmd/example-hook-sidecar' +++ docker_prefix=kubevirt +++ docker_tag=latest +++ master_ip=192.168.200.2 +++ network_provider=flannel +++ namespace=kube-system ++ test -f hack/config-provider-k8s-1.11.0.sh ++ source hack/config-provider-k8s-1.11.0.sh +++ master_ip=127.0.0.1 +++ docker_tag=devel +++ kubeconfig=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/cluster/k8s-1.11.0/.kubeconfig +++ kubectl=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/cluster/k8s-1.11.0/.kubectl +++ docker_prefix=localhost:33487/kubevirt +++ manifest_docker_prefix=registry:5000/kubevirt ++ test -f hack/config-local.sh ++ export binaries docker_images docker_prefix docker_tag manifest_templates master_ip network_provider kubeconfig namespace + echo 'Cleaning up ...' Cleaning up ... + cluster/kubectl.sh get vmis --all-namespaces -o=custom-columns=NAME:.metadata.name,NAMESPACE:.metadata.namespace,FINALIZERS:.metadata.finalizers --no-headers + grep foregroundDeleteVirtualMachine + read p error: the server doesn't have a resource type "vmis" + _kubectl delete ds -l kubevirt.io -n kube-system --cascade=false --grace-period 0 No resources found + _kubectl delete pods -n kube-system -l=kubevirt.io=libvirt --force --grace-period 0 No resources found + _kubectl delete pods -n kube-system -l=kubevirt.io=virt-handler --force --grace-period 0 No resources found + namespaces=(default ${namespace}) + for i in '${namespaces[@]}' + _kubectl -n default delete apiservices -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete apiservices -l kubevirt.io No resources found + _kubectl -n default delete deployment -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete deployment -l kubevirt.io No resources found + _kubectl -n default delete rs -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete rs -l kubevirt.io No resources found + _kubectl -n default delete services -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete services -l kubevirt.io No resources found + _kubectl -n default delete apiservices -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete apiservices -l kubevirt.io No resources found + _kubectl -n default delete validatingwebhookconfiguration -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete validatingwebhookconfiguration -l kubevirt.io No resources found + _kubectl -n default delete secrets -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete secrets -l kubevirt.io No resources found + _kubectl -n default delete pv -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete pv -l kubevirt.io No resources found + _kubectl -n default delete pvc -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete pvc -l kubevirt.io No resources found + _kubectl -n default delete ds -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete ds -l kubevirt.io No resources found + _kubectl -n default delete customresourcedefinitions -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete customresourcedefinitions -l kubevirt.io No resources found + _kubectl -n default delete pods -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete pods -l kubevirt.io No resources found + _kubectl -n default delete clusterrolebinding -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete clusterrolebinding -l kubevirt.io No resources found + _kubectl -n default delete rolebinding -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete rolebinding -l kubevirt.io No resources found + _kubectl -n default delete roles -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete roles -l kubevirt.io No resources found + _kubectl -n default delete clusterroles -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete clusterroles -l kubevirt.io No resources found + _kubectl -n default delete serviceaccounts -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n default delete serviceaccounts -l kubevirt.io No resources found ++ _kubectl -n default get crd offlinevirtualmachines.kubevirt.io ++ export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig ++ wc -l ++ KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig ++ cluster/k8s-1.11.0/.kubectl -n default get crd offlinevirtualmachines.kubevirt.io No resources found. Error from server (NotFound): customresourcedefinitions.apiextensions.k8s.io "offlinevirtualmachines.kubevirt.io" not found + '[' 0 -gt 0 ']' + for i in '${namespaces[@]}' + _kubectl -n kube-system delete apiservices -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete apiservices -l kubevirt.io No resources found + _kubectl -n kube-system delete deployment -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete deployment -l kubevirt.io No resources found + _kubectl -n kube-system delete rs -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete rs -l kubevirt.io No resources found + _kubectl -n kube-system delete services -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete services -l kubevirt.io No resources found + _kubectl -n kube-system delete apiservices -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete apiservices -l kubevirt.io No resources found + _kubectl -n kube-system delete validatingwebhookconfiguration -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete validatingwebhookconfiguration -l kubevirt.io No resources found + _kubectl -n kube-system delete secrets -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete secrets -l kubevirt.io No resources found + _kubectl -n kube-system delete pv -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete pv -l kubevirt.io No resources found + _kubectl -n kube-system delete pvc -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete pvc -l kubevirt.io No resources found + _kubectl -n kube-system delete ds -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete ds -l kubevirt.io No resources found + _kubectl -n kube-system delete customresourcedefinitions -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete customresourcedefinitions -l kubevirt.io No resources found + _kubectl -n kube-system delete pods -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete pods -l kubevirt.io No resources found + _kubectl -n kube-system delete clusterrolebinding -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete clusterrolebinding -l kubevirt.io No resources found + _kubectl -n kube-system delete rolebinding -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete rolebinding -l kubevirt.io No resources found + _kubectl -n kube-system delete roles -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete roles -l kubevirt.io No resources found + _kubectl -n kube-system delete clusterroles -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete clusterroles -l kubevirt.io No resources found + _kubectl -n kube-system delete serviceaccounts -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl -n kube-system delete serviceaccounts -l kubevirt.io No resources found ++ _kubectl -n kube-system get crd offlinevirtualmachines.kubevirt.io ++ wc -l ++ export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig ++ KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig ++ cluster/k8s-1.11.0/.kubectl -n kube-system get crd offlinevirtualmachines.kubevirt.io No resources found. Error from server (NotFound): customresourcedefinitions.apiextensions.k8s.io "offlinevirtualmachines.kubevirt.io" not found + '[' 0 -gt 0 ']' + sleep 2 + echo Done Done ./cluster/deploy.sh + source hack/common.sh ++++ dirname 'hack/common.sh[0]' +++ cd hack/../ +++ pwd ++ KUBEVIRT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt ++ OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out ++ VENDOR_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/vendor ++ CMD_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/cmd ++ TESTS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/tests ++ APIDOCS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/apidocs ++ MANIFESTS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/manifests ++ MANIFEST_TEMPLATES_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/templates/manifests ++ PYTHON_CLIENT_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/client-python ++ KUBEVIRT_PROVIDER=k8s-1.11.0 ++ KUBEVIRT_NUM_NODES=2 ++ '[' -z kubevirt-functional-tests-k8s-1.11.0-release ']' ++ provider_prefix=kubevirt-functional-tests-k8s-1.11.0-release0 ++ job_prefix=kubevirt-functional-tests-k8s-1.11.0-release0 +++ kubevirt_version +++ '[' -n '' ']' +++ '[' -d /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/.git ']' ++++ git describe --always --tags +++ echo v0.7.0-180-g2b4f231 ++ KUBEVIRT_VERSION=v0.7.0-180-g2b4f231 + source cluster/k8s-1.11.0/provider.sh ++ set -e ++ image=k8s-1.11.0@sha256:6c1caf5559eb02a144bf606de37eb0194c06ace4d77ad4561459f3bde876151c ++ source cluster/ephemeral-provider-common.sh +++ set -e +++ _cli='docker run --privileged --net=host --rm -v /var/run/docker.sock:/var/run/docker.sock kubevirtci/gocli@sha256:aa7f295a7908fa333ab5e98ef3af0bfafbabfd3cee2b83f9af47f722e3000f6a' + source hack/config.sh ++ unset binaries docker_images docker_prefix docker_tag manifest_templates master_ip network_provider kubeconfig manifest_docker_prefix namespace ++ KUBEVIRT_PROVIDER=k8s-1.11.0 ++ source hack/config-default.sh source hack/config-k8s-1.11.0.sh +++ binaries='cmd/virt-controller cmd/virt-launcher cmd/virt-handler cmd/virtctl cmd/fake-qemu-process cmd/virt-api cmd/subresource-access-test cmd/example-hook-sidecar' +++ docker_images='cmd/virt-controller cmd/virt-launcher cmd/virt-handler cmd/virt-api images/disks-images-provider images/vm-killer cmd/registry-disk-v1alpha images/cirros-registry-disk-demo images/fedora-cloud-registry-disk-demo images/alpine-registry-disk-demo cmd/subresource-access-test images/winrmcli cmd/example-hook-sidecar' +++ docker_prefix=kubevirt +++ docker_tag=latest +++ master_ip=192.168.200.2 +++ network_provider=flannel +++ namespace=kube-system ++ test -f hack/config-provider-k8s-1.11.0.sh ++ source hack/config-provider-k8s-1.11.0.sh +++ master_ip=127.0.0.1 +++ docker_tag=devel +++ kubeconfig=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/cluster/k8s-1.11.0/.kubeconfig +++ kubectl=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/cluster/k8s-1.11.0/.kubectl +++ docker_prefix=localhost:33487/kubevirt +++ manifest_docker_prefix=registry:5000/kubevirt ++ test -f hack/config-local.sh ++ export binaries docker_images docker_prefix docker_tag manifest_templates master_ip network_provider kubeconfig namespace + echo 'Deploying ...' Deploying ... + [[ -z k8s-1.11.0-release ]] + [[ k8s-1.11.0-release =~ .*-dev ]] + [[ k8s-1.11.0-release =~ .*-release ]] + for manifest in '${MANIFESTS_OUT_DIR}/release/*' + [[ /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/manifests/release/demo-content.yaml =~ .*demo.* ]] + continue + for manifest in '${MANIFESTS_OUT_DIR}/release/*' + [[ /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/manifests/release/kubevirt.yaml =~ .*demo.* ]] + _kubectl create -f /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/manifests/release/kubevirt.yaml + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl create -f /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/manifests/release/kubevirt.yaml clusterrole.rbac.authorization.k8s.io/kubevirt.io:admin created clusterrole.rbac.authorization.k8s.io/kubevirt.io:edit created clusterrole.rbac.authorization.k8s.io/kubevirt.io:view created serviceaccount/kubevirt-apiserver created clusterrolebinding.rbac.authorization.k8s.io/kubevirt-apiserver created clusterrolebinding.rbac.authorization.k8s.io/kubevirt-apiserver-auth-delegator created rolebinding.rbac.authorization.k8s.io/kubevirt-apiserver created role.rbac.authorization.k8s.io/kubevirt-apiserver created clusterrole.rbac.authorization.k8s.io/kubevirt-apiserver created clusterrole.rbac.authorization.k8s.io/kubevirt-controller created serviceaccount/kubevirt-controller created serviceaccount/kubevirt-privileged created clusterrolebinding.rbac.authorization.k8s.io/kubevirt-controller created clusterrolebinding.rbac.authorization.k8s.io/kubevirt-controller-cluster-admin created clusterrolebinding.rbac.authorization.k8s.io/kubevirt-privileged-cluster-admin created clusterrole.rbac.authorization.k8s.io/kubevirt.io:default created clusterrolebinding.rbac.authorization.k8s.io/kubevirt.io:default created service/virt-api created deployment.extensions/virt-api created deployment.extensions/virt-controller created daemonset.extensions/virt-handler created customresourcedefinition.apiextensions.k8s.io/virtualmachineinstances.kubevirt.io created customresourcedefinition.apiextensions.k8s.io/virtualmachineinstancereplicasets.kubevirt.io created customresourcedefinition.apiextensions.k8s.io/virtualmachineinstancepresets.kubevirt.io created customresourcedefinition.apiextensions.k8s.io/virtualmachines.kubevirt.io created + _kubectl create -f /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/manifests/testing -R + export KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + KUBECONFIG=cluster/k8s-1.11.0/.kubeconfig + cluster/k8s-1.11.0/.kubectl create -f /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/go/src/kubevirt.io/kubevirt/_out/manifests/testing -R persistentvolumeclaim/disk-alpine created persistentvolume/host-path-disk-alpine created persistentvolumeclaim/disk-custom created persistentvolume/host-path-disk-custom created daemonset.extensions/disks-images-provider created serviceaccount/kubevirt-testing created clusterrolebinding.rbac.authorization.k8s.io/kubevirt-testing-cluster-admin created + [[ k8s-1.11.0 =~ os-* ]] + echo Done Done + namespaces=(kube-system default) + [[ kube-system != \k\u\b\e\-\s\y\s\t\e\m ]] + timeout=300 + sample=30 + for i in '${namespaces[@]}' + current_time=0 ++ kubectl get pods -n kube-system --no-headers ++ cluster/kubectl.sh get pods -n kube-system --no-headers ++ grep -v Running + '[' -n 'virt-api-bcc6b587d-6g464 0/1 ContainerCreating 0 3s virt-api-bcc6b587d-9ptrc 0/1 ContainerCreating 0 3s virt-controller-67dcdd8464-5bfrg 0/1 ContainerCreating 0 2s virt-controller-67dcdd8464-lsf5b 0/1 ContainerCreating 0 3s virt-handler-q2ns2 0/1 ContainerCreating 0 3s virt-handler-v4jkl 0/1 ContainerCreating 0 3s' ']' + echo 'Waiting for kubevirt pods to enter the Running state ...' Waiting for kubevirt pods to enter the Running state ... + kubectl get pods -n kube-system --no-headers + cluster/kubectl.sh get pods -n kube-system --no-headers + grep -v Running disks-images-provider-68f8k 0/1 Pending 0 0s disks-images-provider-tqn5h 0/1 ContainerCreating 0 0s virt-api-bcc6b587d-6g464 0/1 ContainerCreating 0 4s virt-api-bcc6b587d-9ptrc 0/1 ContainerCreating 0 4s virt-controller-67dcdd8464-5bfrg 0/1 ContainerCreating 0 3s virt-controller-67dcdd8464-lsf5b 0/1 ContainerCreating 0 4s virt-handler-q2ns2 0/1 ContainerCreating 0 4s virt-handler-v4jkl 0/1 ContainerCreating 0 4s + sleep 30 + current_time=30 + '[' 30 -gt 300 ']' ++ kubectl get pods -n kube-system --no-headers ++ grep -v Running ++ cluster/kubectl.sh get pods -n kube-system --no-headers + '[' -n '' ']' + current_time=0 ++ kubectl get pods -n kube-system '-ocustom-columns=status:status.containerStatuses[*].ready' --no-headers ++ cluster/kubectl.sh get pods -n kube-system '-ocustom-columns=status:status.containerStatuses[*].ready' --no-headers ++ grep false + '[' -n false ']' + echo 'Waiting for KubeVirt containers to become ready ...' Waiting for KubeVirt containers to become ready ... + kubectl get pods -n kube-system '-ocustom-columns=status:status.containerStatuses[*].ready' --no-headers + cluster/kubectl.sh get pods -n kube-system '-ocustom-columns=status:status.containerStatuses[*].ready' --no-headers + grep false false + sleep 30 + current_time=30 + '[' 30 -gt 300 ']' ++ kubectl get pods -n kube-system '-ocustom-columns=status:status.containerStatuses[*].ready' --no-headers ++ grep false ++ cluster/kubectl.sh get pods -n kube-system '-ocustom-columns=status:status.containerStatuses[*].ready' --no-headers + '[' -n '' ']' + kubectl get pods -n kube-system + cluster/kubectl.sh get pods -n kube-system NAME READY STATUS RESTARTS AGE coredns-78fcdf6894-jnfpp 1/1 Running 0 14m coredns-78fcdf6894-q7wst 1/1 Running 0 14m disks-images-provider-68f8k 1/1 Running 0 1m disks-images-provider-tqn5h 1/1 Running 0 1m etcd-node01 1/1 Running 0 13m kube-apiserver-node01 1/1 Running 0 13m kube-controller-manager-node01 1/1 Running 0 14m kube-flannel-ds-hnzq5 1/1 Running 0 14m kube-flannel-ds-sc6pf 1/1 Running 0 14m kube-proxy-b8zsz 1/1 Running 0 14m kube-proxy-bk8lp 1/1 Running 0 14m kube-scheduler-node01 1/1 Running 0 13m virt-api-bcc6b587d-6g464 1/1 Running 0 1m virt-api-bcc6b587d-9ptrc 1/1 Running 0 1m virt-controller-67dcdd8464-5bfrg 1/1 Running 0 1m virt-controller-67dcdd8464-lsf5b 1/1 Running 0 1m virt-handler-q2ns2 1/1 Running 0 1m virt-handler-v4jkl 1/1 Running 0 1m + for i in '${namespaces[@]}' + current_time=0 ++ kubectl get pods -n default --no-headers ++ cluster/kubectl.sh get pods -n default --no-headers ++ grep -v Running + '[' -n '' ']' + current_time=0 ++ kubectl get pods -n default '-ocustom-columns=status:status.containerStatuses[*].ready' --no-headers ++ cluster/kubectl.sh get pods -n default '-ocustom-columns=status:status.containerStatuses[*].ready' --no-headers ++ grep false + '[' -n '' ']' + kubectl get pods -n default + cluster/kubectl.sh get pods -n default NAME READY STATUS RESTARTS AGE local-volume-provisioner-ppt2t 1/1 Running 0 14m local-volume-provisioner-tlgvp 1/1 Running 0 14m + kubectl version + cluster/kubectl.sh version Client Version: version.Info{Major:"1", Minor:"11", GitVersion:"v1.11.0", GitCommit:"91e7b4fd31fcd3d5f436da26c980becec37ceefe", GitTreeState:"clean", BuildDate:"2018-06-27T20:17:28Z", GoVersion:"go1.10.2", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"11", GitVersion:"v1.11.0", GitCommit:"91e7b4fd31fcd3d5f436da26c980becec37ceefe", GitTreeState:"clean", BuildDate:"2018-06-27T20:08:34Z", GoVersion:"go1.10.2", Compiler:"gc", Platform:"linux/amd64"} + ginko_params='--ginkgo.noColor --junit-output=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/junit.xml' + [[ k8s-1.11.0-release =~ windows.* ]] + FUNC_TEST_ARGS='--ginkgo.noColor --junit-output=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.11.0-release/junit.xml' + make functest hack/dockerized "hack/build-func-tests.sh" sha256:dcf2b21fa2ed11dcf9dbba21b1cca0ee3fad521a0e9aee61c06d0b0b66a4b200 go version go1.10 linux/amd64 go version go1.10 linux/amd64 Compiling tests... compiled tests.test hack/functests.sh Running Suite: Tests Suite ========================== Random Seed: 1533206202 Will run 151 of 151 specs Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T10:36:08.975477Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:36:08.990735Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:36:10 http: TLS handshake error from 10.244.1.1:57690: EOF 2018/08/02 10:36:20 http: TLS handshake error from 10.244.1.1:57696: EOF level=info timestamp=2018-08-02T10:36:22.310227Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:36:22.772150Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:36:30 http: TLS handshake error from 10.244.1.1:57702: EOF level=info timestamp=2018-08-02T10:36:33.102611Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:36:38.854226Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:36:40 http: TLS handshake error from 10.244.1.1:57708: EOF 2018/08/02 10:36:50 http: TLS handshake error from 10.244.1.1:57714: EOF level=info timestamp=2018-08-02T10:36:52.400784Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:36:52.855108Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:37:00 http: TLS handshake error from 10.244.1.1:57720: EOF level=info timestamp=2018-08-02T10:37:03.200252Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 10:35:17 http: TLS handshake error from 10.244.0.1:38088: EOF 2018/08/02 10:35:27 http: TLS handshake error from 10.244.0.1:38148: EOF level=info timestamp=2018-08-02T10:35:29.381687Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:35:37 http: TLS handshake error from 10.244.0.1:38208: EOF 2018/08/02 10:35:47 http: TLS handshake error from 10.244.0.1:38268: EOF 2018/08/02 10:35:57 http: TLS handshake error from 10.244.0.1:38340: EOF level=info timestamp=2018-08-02T10:35:59.359866Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:36:07 http: TLS handshake error from 10.244.0.1:38400: EOF 2018/08/02 10:36:17 http: TLS handshake error from 10.244.0.1:38460: EOF 2018/08/02 10:36:27 http: TLS handshake error from 10.244.0.1:38520: EOF level=info timestamp=2018-08-02T10:36:29.345869Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:36:37 http: TLS handshake error from 10.244.0.1:38580: EOF 2018/08/02 10:36:47 http: TLS handshake error from 10.244.0.1:38642: EOF 2018/08/02 10:36:57 http: TLS handshake error from 10.244.0.1:38702: EOF level=info timestamp=2018-08-02T10:36:59.338708Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-5bfrg Pod phase: Running level=info timestamp=2018-08-02T10:33:54.581403Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmiInformer" level=info timestamp=2018-08-02T10:33:54.581432Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtPodInformer" level=info timestamp=2018-08-02T10:33:54.581463Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtNodeInformer" level=info timestamp=2018-08-02T10:33:54.581493Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmiPresetInformer" level=info timestamp=2018-08-02T10:33:54.581522Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmirsInformer" level=info timestamp=2018-08-02T10:33:54.581558Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer configMapInformer" level=info timestamp=2018-08-02T10:33:54.581682Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:33:54.632246Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:33:54.632335Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:33:54.632366Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:33:54.632540Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:36:43.340597Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:36:43.351222Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:36:43.646605Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:36:43.711519Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:33:59.536951Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:37:05.613577Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:37:05.617213Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:37:05.617690Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:37:05.698266Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibtvf8, existing: true\n" level=info timestamp=2018-08-02T10:37:05.698543Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:37:05.698668Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:37:05.698948Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:37:05.701279Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:37:05.701711Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:37:05.862206Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibtvf8, existing: true\n" level=info timestamp=2018-08-02T10:37:05.862429Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:37:05.862532Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:37:05.862929Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:37:05.877403Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:37:05.877790Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:33:58.473760Z pos=virt-handler.go:87 component=virt-handler hostname=node01 level=info timestamp=2018-08-02T10:33:58.480302Z pos=vm.go:212 component=virt-handler msg="Starting virt-handler controller." level=info timestamp=2018-08-02T10:33:58.481470Z pos=cache.go:151 component=virt-handler msg="Synchronizing domains" level=info timestamp=2018-08-02T10:33:58.581038Z pos=device_controller.go:133 component=virt-handler msg="Starting device plugin controller" level=info timestamp=2018-08-02T10:33:58.668953Z pos=device_controller.go:127 component=virt-handler msg="tun device plugin started" level=info timestamp=2018-08-02T10:33:58.723101Z pos=device_controller.go:127 component=virt-handler msg="kvm device plugin started" Pod name: virt-launcher-testvmibtvf8-z2q4x Pod phase: Running level=info timestamp=2018-08-02T10:36:50.629114Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:36:50.629972Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[OnDefineDomain:[0xc4203de640]]" level=info timestamp=2018-08-02T10:36:50.633675Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:37:03.355530Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:37:03.465066Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmibtvf8" level=info timestamp=2018-08-02T10:37:03.470032Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:37:03.470574Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 10:38:40 http: TLS handshake error from 10.244.1.1:57780: EOF 2018/08/02 10:38:50 http: TLS handshake error from 10.244.1.1:57786: EOF level=info timestamp=2018-08-02T10:38:52.772214Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:38:53.153052Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:39:00 http: TLS handshake error from 10.244.1.1:57792: EOF level=info timestamp=2018-08-02T10:39:03.587348Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:39:09.600130Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:39:10 http: TLS handshake error from 10.244.1.1:57798: EOF 2018/08/02 10:39:20 http: TLS handshake error from 10.244.1.1:57804: EOF level=info timestamp=2018-08-02T10:39:22.871791Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:39:23.210286Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:39:30 http: TLS handshake error from 10.244.1.1:57810: EOF level=info timestamp=2018-08-02T10:39:33.675938Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:39:39.741673Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:39:40 http: TLS handshake error from 10.244.1.1:57816: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 10:37:57 http: TLS handshake error from 10.244.0.1:39066: EOF level=info timestamp=2018-08-02T10:37:59.409721Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:38:07 http: TLS handshake error from 10.244.0.1:39126: EOF 2018/08/02 10:38:17 http: TLS handshake error from 10.244.0.1:39186: EOF 2018/08/02 10:38:27 http: TLS handshake error from 10.244.0.1:39246: EOF level=info timestamp=2018-08-02T10:38:29.307449Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:38:37 http: TLS handshake error from 10.244.0.1:39306: EOF 2018/08/02 10:38:47 http: TLS handshake error from 10.244.0.1:39366: EOF 2018/08/02 10:38:57 http: TLS handshake error from 10.244.0.1:39426: EOF level=info timestamp=2018-08-02T10:38:59.340401Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:39:07 http: TLS handshake error from 10.244.0.1:39486: EOF 2018/08/02 10:39:17 http: TLS handshake error from 10.244.0.1:39546: EOF 2018/08/02 10:39:27 http: TLS handshake error from 10.244.0.1:39606: EOF level=info timestamp=2018-08-02T10:39:29.311822Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:39:37 http: TLS handshake error from 10.244.0.1:39666: EOF Pod name: virt-controller-67dcdd8464-5bfrg Pod phase: Running level=info timestamp=2018-08-02T10:33:54.581403Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmiInformer" level=info timestamp=2018-08-02T10:33:54.581432Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtPodInformer" level=info timestamp=2018-08-02T10:33:54.581463Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtNodeInformer" level=info timestamp=2018-08-02T10:33:54.581493Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmiPresetInformer" level=info timestamp=2018-08-02T10:33:54.581522Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmirsInformer" level=info timestamp=2018-08-02T10:33:54.581558Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer configMapInformer" level=info timestamp=2018-08-02T10:33:54.581682Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:33:54.632246Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:33:54.632335Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:33:54.632366Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:33:54.632540Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:36:43.340597Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:36:43.351222Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:36:43.646605Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:36:43.711519Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:33:59.536951Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:37:26.072463Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:37:26.076292Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:37:26.077022Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:37:46.557651Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibtvf8, existing: true\n" level=info timestamp=2018-08-02T10:37:46.557849Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:37:46.557925Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:37:46.558179Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:37:46.560297Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:37:46.560706Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:38:27.522815Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibtvf8, existing: true\n" level=info timestamp=2018-08-02T10:38:27.523592Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:38:27.523737Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:38:27.524277Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:38:27.528511Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:38:27.529180Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:33:58.473760Z pos=virt-handler.go:87 component=virt-handler hostname=node01 level=info timestamp=2018-08-02T10:33:58.480302Z pos=vm.go:212 component=virt-handler msg="Starting virt-handler controller." level=info timestamp=2018-08-02T10:33:58.481470Z pos=cache.go:151 component=virt-handler msg="Synchronizing domains" level=info timestamp=2018-08-02T10:33:58.581038Z pos=device_controller.go:133 component=virt-handler msg="Starting device plugin controller" level=info timestamp=2018-08-02T10:33:58.668953Z pos=device_controller.go:127 component=virt-handler msg="tun device plugin started" level=info timestamp=2018-08-02T10:33:58.723101Z pos=device_controller.go:127 component=virt-handler msg="kvm device plugin started" Pod name: virt-launcher-testvmibtvf8-z2q4x Pod phase: Running level=info timestamp=2018-08-02T10:36:50.629114Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:36:50.629972Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[OnDefineDomain:[0xc4203de640]]" level=info timestamp=2018-08-02T10:36:50.633675Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:37:03.355530Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:37:03.465066Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmibtvf8" level=info timestamp=2018-08-02T10:37:03.470032Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:37:03.470574Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure [180.731 seconds] HookSidecars /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:40 VMI definition /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:58 with SM BIOS hook sidecar /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:59 should successfully start with hook sidecar annotation [It] /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:60 Unexpected Warning event received: testvmibtvf8,f29b5d1a-963f-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ STEP: Starting a VMI level=info timestamp=2018-08-02T10:36:44.186641Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmibtvf8 kind=VirtualMachineInstance uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmibtvf8-z2q4x" level=info timestamp=2018-08-02T10:37:05.003879Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmibtvf8 kind=VirtualMachineInstance uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmibtvf8-z2q4x" level=error timestamp=2018-08-02T10:37:05.081387Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmibtvf8 kind=VirtualMachineInstance uid=f29b5d1a-963f-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 10:39:00 http: TLS handshake error from 10.244.1.1:57792: EOF level=info timestamp=2018-08-02T10:39:03.587348Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:39:09.600130Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:39:10 http: TLS handshake error from 10.244.1.1:57798: EOF 2018/08/02 10:39:20 http: TLS handshake error from 10.244.1.1:57804: EOF level=info timestamp=2018-08-02T10:39:22.871791Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:39:23.210286Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:39:30 http: TLS handshake error from 10.244.1.1:57810: EOF level=info timestamp=2018-08-02T10:39:33.675938Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:39:39.741673Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:39:40 http: TLS handshake error from 10.244.1.1:57816: EOF 2018/08/02 10:39:50 http: TLS handshake error from 10.244.1.1:57822: EOF level=info timestamp=2018-08-02T10:39:52.935677Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:39:53.309180Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:40:00 http: TLS handshake error from 10.244.1.1:57828: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T10:38:29.307449Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:38:37 http: TLS handshake error from 10.244.0.1:39306: EOF 2018/08/02 10:38:47 http: TLS handshake error from 10.244.0.1:39366: EOF 2018/08/02 10:38:57 http: TLS handshake error from 10.244.0.1:39426: EOF level=info timestamp=2018-08-02T10:38:59.340401Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:39:07 http: TLS handshake error from 10.244.0.1:39486: EOF 2018/08/02 10:39:17 http: TLS handshake error from 10.244.0.1:39546: EOF 2018/08/02 10:39:27 http: TLS handshake error from 10.244.0.1:39606: EOF level=info timestamp=2018-08-02T10:39:29.311822Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:39:37 http: TLS handshake error from 10.244.0.1:39666: EOF 2018/08/02 10:39:47 http: TLS handshake error from 10.244.0.1:39726: EOF 2018/08/02 10:39:57 http: TLS handshake error from 10.244.0.1:39786: EOF level=info timestamp=2018-08-02T10:39:59.214849Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:39:59.229865Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:39:59.322410Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-5bfrg Pod phase: Running level=info timestamp=2018-08-02T10:33:54.581522Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmirsInformer" level=info timestamp=2018-08-02T10:33:54.581558Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer configMapInformer" level=info timestamp=2018-08-02T10:33:54.581682Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:33:54.632246Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:33:54.632335Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:33:54.632366Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:33:54.632540Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:36:43.340597Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:36:43.351222Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:36:43.646605Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:36:43.711519Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:39:44.147670Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:39:44.148620Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:39:44.259791Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi9xpdl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" level=info timestamp=2018-08-02T10:39:44.279961Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi9xpdl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:33:59.536951Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:40:01.846589Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:40:01.848460Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:40:01.848825Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" level=info timestamp=2018-08-02T10:40:01.890680Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi9xpdl, existing: true\n" level=info timestamp=2018-08-02T10:40:01.890822Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:40:01.890925Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:40:01.891114Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:40:01.893737Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:40:01.894080Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" level=info timestamp=2018-08-02T10:40:01.974575Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi9xpdl, existing: true\n" level=info timestamp=2018-08-02T10:40:01.974756Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:40:01.974824Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:40:01.975041Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:40:01.976779Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:40:01.977191Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:33:58.473760Z pos=virt-handler.go:87 component=virt-handler hostname=node01 level=info timestamp=2018-08-02T10:33:58.480302Z pos=vm.go:212 component=virt-handler msg="Starting virt-handler controller." level=info timestamp=2018-08-02T10:33:58.481470Z pos=cache.go:151 component=virt-handler msg="Synchronizing domains" level=info timestamp=2018-08-02T10:33:58.581038Z pos=device_controller.go:133 component=virt-handler msg="Starting device plugin controller" level=info timestamp=2018-08-02T10:33:58.668953Z pos=device_controller.go:127 component=virt-handler msg="tun device plugin started" level=info timestamp=2018-08-02T10:33:58.723101Z pos=device_controller.go:127 component=virt-handler msg="kvm device plugin started" Pod name: virt-launcher-testvmi9xpdl-5tjjx Pod phase: Running level=info timestamp=2018-08-02T10:39:50.427109Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:39:50.428926Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[OnDefineDomain:[0xc420404240]]" level=info timestamp=2018-08-02T10:39:50.433214Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:40:00.447935Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:40:00.543202Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi9xpdl" level=info timestamp=2018-08-02T10:40:00.545443Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:40:00.545892Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 10:41:40 http: TLS handshake error from 10.244.1.1:57888: EOF 2018/08/02 10:41:50 http: TLS handshake error from 10.244.1.1:57894: EOF level=info timestamp=2018-08-02T10:41:53.319045Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:41:53.595595Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:42:00 http: TLS handshake error from 10.244.1.1:57900: EOF level=info timestamp=2018-08-02T10:42:04.041523Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:42:10 http: TLS handshake error from 10.244.1.1:57906: EOF level=info timestamp=2018-08-02T10:42:10.481774Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:42:20 http: TLS handshake error from 10.244.1.1:57912: EOF level=info timestamp=2018-08-02T10:42:23.427280Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:42:23.635660Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:42:30 http: TLS handshake error from 10.244.1.1:57918: EOF level=info timestamp=2018-08-02T10:42:34.154599Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:42:40 http: TLS handshake error from 10.244.1.1:57924: EOF level=info timestamp=2018-08-02T10:42:40.629553Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 10:40:57 http: TLS handshake error from 10.244.0.1:40146: EOF level=info timestamp=2018-08-02T10:40:59.323458Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:41:07 http: TLS handshake error from 10.244.0.1:40206: EOF 2018/08/02 10:41:17 http: TLS handshake error from 10.244.0.1:40266: EOF 2018/08/02 10:41:27 http: TLS handshake error from 10.244.0.1:40326: EOF level=info timestamp=2018-08-02T10:41:29.323831Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:41:37 http: TLS handshake error from 10.244.0.1:40386: EOF 2018/08/02 10:41:47 http: TLS handshake error from 10.244.0.1:40446: EOF 2018/08/02 10:41:57 http: TLS handshake error from 10.244.0.1:40506: EOF level=info timestamp=2018-08-02T10:41:59.391452Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:42:07 http: TLS handshake error from 10.244.0.1:40566: EOF 2018/08/02 10:42:17 http: TLS handshake error from 10.244.0.1:40626: EOF 2018/08/02 10:42:27 http: TLS handshake error from 10.244.0.1:40686: EOF level=info timestamp=2018-08-02T10:42:29.372306Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:42:37 http: TLS handshake error from 10.244.0.1:40746: EOF Pod name: virt-controller-67dcdd8464-5bfrg Pod phase: Running level=info timestamp=2018-08-02T10:33:54.581522Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmirsInformer" level=info timestamp=2018-08-02T10:33:54.581558Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer configMapInformer" level=info timestamp=2018-08-02T10:33:54.581682Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:33:54.632246Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:33:54.632335Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:33:54.632366Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:33:54.632540Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:36:43.340597Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:36:43.351222Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:36:43.646605Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:36:43.711519Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:39:44.147670Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:39:44.148620Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:39:44.259791Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi9xpdl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" level=info timestamp=2018-08-02T10:39:44.279961Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi9xpdl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:33:59.536951Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:40:22.321467Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:40:22.323595Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:40:22.323940Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" level=info timestamp=2018-08-02T10:40:42.805061Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi9xpdl, existing: true\n" level=info timestamp=2018-08-02T10:40:42.806010Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:40:42.806198Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:40:42.806775Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:40:42.813477Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:40:42.814181Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" level=info timestamp=2018-08-02T10:41:23.775327Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi9xpdl, existing: true\n" level=info timestamp=2018-08-02T10:41:23.776295Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:41:23.776438Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:41:23.776942Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:41:23.783109Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:41:23.783913Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:33:58.473760Z pos=virt-handler.go:87 component=virt-handler hostname=node01 level=info timestamp=2018-08-02T10:33:58.480302Z pos=vm.go:212 component=virt-handler msg="Starting virt-handler controller." level=info timestamp=2018-08-02T10:33:58.481470Z pos=cache.go:151 component=virt-handler msg="Synchronizing domains" level=info timestamp=2018-08-02T10:33:58.581038Z pos=device_controller.go:133 component=virt-handler msg="Starting device plugin controller" level=info timestamp=2018-08-02T10:33:58.668953Z pos=device_controller.go:127 component=virt-handler msg="tun device plugin started" level=info timestamp=2018-08-02T10:33:58.723101Z pos=device_controller.go:127 component=virt-handler msg="kvm device plugin started" Pod name: virt-launcher-testvmi9xpdl-5tjjx Pod phase: Running level=info timestamp=2018-08-02T10:39:50.427109Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:39:50.428926Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[OnDefineDomain:[0xc420404240]]" level=info timestamp=2018-08-02T10:39:50.433214Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:40:00.447935Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:40:00.543202Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi9xpdl" level=info timestamp=2018-08-02T10:40:00.545443Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:40:00.545892Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure [180.842 seconds] HookSidecars /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:40 VMI definition /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:58 with SM BIOS hook sidecar /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:59 should call Collect and OnDefineDomain on the hook sidecar [It] /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:67 Unexpected Warning event received: testvmi9xpdl,5e6df18e-9640-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ STEP: Getting hook-sidecar logs level=info timestamp=2018-08-02T10:39:44.893548Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmi9xpdl kind=VirtualMachineInstance uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmi9xpdl-5tjjx" level=info timestamp=2018-08-02T10:40:01.347732Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmi9xpdl kind=VirtualMachineInstance uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmi9xpdl-5tjjx" level=error timestamp=2018-08-02T10:40:01.387237Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmi9xpdl kind=VirtualMachineInstance uid=5e6df18e-9640-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T10:42:04.041523Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:42:10 http: TLS handshake error from 10.244.1.1:57906: EOF level=info timestamp=2018-08-02T10:42:10.481774Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:42:20 http: TLS handshake error from 10.244.1.1:57912: EOF level=info timestamp=2018-08-02T10:42:23.427280Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:42:23.635660Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:42:30 http: TLS handshake error from 10.244.1.1:57918: EOF level=info timestamp=2018-08-02T10:42:34.154599Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:42:40 http: TLS handshake error from 10.244.1.1:57924: EOF level=info timestamp=2018-08-02T10:42:40.629553Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:42:50 http: TLS handshake error from 10.244.1.1:57930: EOF level=info timestamp=2018-08-02T10:42:53.508216Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:42:53.696972Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:43:00 http: TLS handshake error from 10.244.1.1:57936: EOF level=info timestamp=2018-08-02T10:43:04.249349Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 10:41:17 http: TLS handshake error from 10.244.0.1:40266: EOF 2018/08/02 10:41:27 http: TLS handshake error from 10.244.0.1:40326: EOF level=info timestamp=2018-08-02T10:41:29.323831Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:41:37 http: TLS handshake error from 10.244.0.1:40386: EOF 2018/08/02 10:41:47 http: TLS handshake error from 10.244.0.1:40446: EOF 2018/08/02 10:41:57 http: TLS handshake error from 10.244.0.1:40506: EOF level=info timestamp=2018-08-02T10:41:59.391452Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:42:07 http: TLS handshake error from 10.244.0.1:40566: EOF 2018/08/02 10:42:17 http: TLS handshake error from 10.244.0.1:40626: EOF 2018/08/02 10:42:27 http: TLS handshake error from 10.244.0.1:40686: EOF level=info timestamp=2018-08-02T10:42:29.372306Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:42:37 http: TLS handshake error from 10.244.0.1:40746: EOF 2018/08/02 10:42:47 http: TLS handshake error from 10.244.0.1:40806: EOF 2018/08/02 10:42:57 http: TLS handshake error from 10.244.0.1:40866: EOF level=info timestamp=2018-08-02T10:42:59.376209Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-5bfrg Pod phase: Running level=info timestamp=2018-08-02T10:33:54.581682Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:33:54.632246Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:33:54.632335Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:33:54.632366Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:33:54.632540Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:36:43.340597Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:36:43.351222Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:36:43.646605Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:36:43.711519Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:39:44.147670Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:39:44.148620Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:39:44.259791Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi9xpdl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" level=info timestamp=2018-08-02T10:39:44.279961Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi9xpdl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" level=info timestamp=2018-08-02T10:42:45.000702Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:42:45.001366Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:33:59.536951Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:43:04.162562Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:43:04.164691Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:43:04.165064Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiqszp9" level=info timestamp=2018-08-02T10:43:04.205647Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiqszp9, existing: true\n" level=info timestamp=2018-08-02T10:43:04.205784Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:43:04.205855Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:43:04.206065Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:43:04.207669Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:43:04.208120Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiqszp9" level=info timestamp=2018-08-02T10:43:04.288957Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiqszp9, existing: true\n" level=info timestamp=2018-08-02T10:43:04.289115Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:43:04.289189Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:43:04.289521Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:43:04.291072Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:43:04.296081Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiqszp9" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:33:58.473760Z pos=virt-handler.go:87 component=virt-handler hostname=node01 level=info timestamp=2018-08-02T10:33:58.480302Z pos=vm.go:212 component=virt-handler msg="Starting virt-handler controller." level=info timestamp=2018-08-02T10:33:58.481470Z pos=cache.go:151 component=virt-handler msg="Synchronizing domains" level=info timestamp=2018-08-02T10:33:58.581038Z pos=device_controller.go:133 component=virt-handler msg="Starting device plugin controller" level=info timestamp=2018-08-02T10:33:58.668953Z pos=device_controller.go:127 component=virt-handler msg="tun device plugin started" level=info timestamp=2018-08-02T10:33:58.723101Z pos=device_controller.go:127 component=virt-handler msg="kvm device plugin started" Pod name: virt-launcher-testvmiqszp9-rndpx Pod phase: Running level=info timestamp=2018-08-02T10:42:52.424526Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:42:52.425236Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[OnDefineDomain:[0xc420316740]]" level=info timestamp=2018-08-02T10:42:52.428839Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:43:02.441263Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:43:02.546950Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiqszp9" level=info timestamp=2018-08-02T10:43:02.549193Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:43:02.549659Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T10:44:53.775809Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:44:53.982068Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:45:00 http: TLS handshake error from 10.244.1.1:58008: EOF level=info timestamp=2018-08-02T10:45:04.766102Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:45:07.967762Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:45:07.970706Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:45:10 http: TLS handshake error from 10.244.1.1:58014: EOF level=info timestamp=2018-08-02T10:45:11.376246Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:45:20 http: TLS handshake error from 10.244.1.1:58020: EOF level=info timestamp=2018-08-02T10:45:23.854930Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:45:24.059165Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:45:30 http: TLS handshake error from 10.244.1.1:58026: EOF level=info timestamp=2018-08-02T10:45:34.854184Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:45:40 http: TLS handshake error from 10.244.1.1:58032: EOF level=info timestamp=2018-08-02T10:45:41.509282Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 10:43:57 http: TLS handshake error from 10.244.0.1:41226: EOF level=info timestamp=2018-08-02T10:43:59.348975Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:44:07 http: TLS handshake error from 10.244.0.1:41286: EOF 2018/08/02 10:44:17 http: TLS handshake error from 10.244.0.1:41346: EOF 2018/08/02 10:44:27 http: TLS handshake error from 10.244.0.1:41406: EOF level=info timestamp=2018-08-02T10:44:29.276964Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:44:37 http: TLS handshake error from 10.244.0.1:41466: EOF 2018/08/02 10:44:47 http: TLS handshake error from 10.244.0.1:41526: EOF 2018/08/02 10:44:57 http: TLS handshake error from 10.244.0.1:41586: EOF level=info timestamp=2018-08-02T10:44:59.293596Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:45:07 http: TLS handshake error from 10.244.0.1:41646: EOF 2018/08/02 10:45:17 http: TLS handshake error from 10.244.0.1:41706: EOF 2018/08/02 10:45:27 http: TLS handshake error from 10.244.0.1:41766: EOF level=info timestamp=2018-08-02T10:45:29.327965Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:45:37 http: TLS handshake error from 10.244.0.1:41826: EOF Pod name: virt-controller-67dcdd8464-5bfrg Pod phase: Running level=info timestamp=2018-08-02T10:33:54.581682Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:33:54.632246Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:33:54.632335Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:33:54.632366Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:33:54.632540Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:36:43.340597Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:36:43.351222Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibtvf8 kind= uid=f29b5d1a-963f-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:36:43.646605Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:36:43.711519Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmibtvf8\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmibtvf8" level=info timestamp=2018-08-02T10:39:44.147670Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:39:44.148620Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9xpdl kind= uid=5e6df18e-9640-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:39:44.259791Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi9xpdl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" level=info timestamp=2018-08-02T10:39:44.279961Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi9xpdl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi9xpdl" level=info timestamp=2018-08-02T10:42:45.000702Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:42:45.001366Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:33:59.536951Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:43:45.128465Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:43:45.128546Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:43:45.128881Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:43:45.134815Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:43:45.135649Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiqszp9" level=info timestamp=2018-08-02T10:44:26.097327Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiqszp9, existing: true\n" level=info timestamp=2018-08-02T10:44:26.098148Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:44:26.098253Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:44:26.098782Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:44:26.103093Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiqszp9 kind= uid=ca3a644b-9640-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:44:26.104072Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiqszp9" level=info timestamp=2018-08-02T10:45:29.555457Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi9xpdl, existing: false\n" level=info timestamp=2018-08-02T10:45:29.556314Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:45:29.556684Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:45:29.557147Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmi9xpdl kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:33:58.473760Z pos=virt-handler.go:87 component=virt-handler hostname=node01 level=info timestamp=2018-08-02T10:33:58.480302Z pos=vm.go:212 component=virt-handler msg="Starting virt-handler controller." level=info timestamp=2018-08-02T10:33:58.481470Z pos=cache.go:151 component=virt-handler msg="Synchronizing domains" level=info timestamp=2018-08-02T10:33:58.581038Z pos=device_controller.go:133 component=virt-handler msg="Starting device plugin controller" level=info timestamp=2018-08-02T10:33:58.668953Z pos=device_controller.go:127 component=virt-handler msg="tun device plugin started" level=info timestamp=2018-08-02T10:33:58.723101Z pos=device_controller.go:127 component=virt-handler msg="kvm device plugin started" Pod name: virt-launcher-testvmiqszp9-rndpx Pod phase: Running level=info timestamp=2018-08-02T10:42:52.424526Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:42:52.425236Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[OnDefineDomain:[0xc420316740]]" level=info timestamp=2018-08-02T10:42:52.428839Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:43:02.441263Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:43:02.546950Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiqszp9" level=info timestamp=2018-08-02T10:43:02.549193Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:43:02.549659Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure [180.802 seconds] HookSidecars /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:40 VMI definition /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:58 with SM BIOS hook sidecar /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:59 should update domain XML with SM BIOS properties [It] /root/go/src/kubevirt.io/kubevirt/tests/vmi_hook_sidecar_test.go:83 Unexpected Warning event received: testvmiqszp9,ca3a644b-9640-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ STEP: Reading domain XML using virsh level=info timestamp=2018-08-02T10:42:45.732429Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmiqszp9 kind=VirtualMachineInstance uid=ca3a644b-9640-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmiqszp9-rndpx" level=info timestamp=2018-08-02T10:43:03.626966Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmiqszp9 kind=VirtualMachineInstance uid=ca3a644b-9640-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmiqszp9-rndpx" level=error timestamp=2018-08-02T10:43:03.710041Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmiqszp9 kind=VirtualMachineInstance uid=ca3a644b-9640-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T10:45:24.059165Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:45:30 http: TLS handshake error from 10.244.1.1:58026: EOF level=info timestamp=2018-08-02T10:45:34.854184Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:45:40 http: TLS handshake error from 10.244.1.1:58032: EOF level=info timestamp=2018-08-02T10:45:41.509282Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:45:50 http: TLS handshake error from 10.244.1.1:58038: EOF level=info timestamp=2018-08-02T10:45:53.945645Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:45:54.119539Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:46:00 http: TLS handshake error from 10.244.1.1:58044: EOF level=info timestamp=2018-08-02T10:46:04.946058Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:46:07.975062Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:46:07.978572Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:46:10 http: TLS handshake error from 10.244.1.1:58050: EOF level=info timestamp=2018-08-02T10:46:11.634734Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:46:20 http: TLS handshake error from 10.244.1.1:58056: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T10:44:29.276964Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:44:37 http: TLS handshake error from 10.244.0.1:41466: EOF 2018/08/02 10:44:47 http: TLS handshake error from 10.244.0.1:41526: EOF 2018/08/02 10:44:57 http: TLS handshake error from 10.244.0.1:41586: EOF level=info timestamp=2018-08-02T10:44:59.293596Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:45:07 http: TLS handshake error from 10.244.0.1:41646: EOF 2018/08/02 10:45:17 http: TLS handshake error from 10.244.0.1:41706: EOF 2018/08/02 10:45:27 http: TLS handshake error from 10.244.0.1:41766: EOF level=info timestamp=2018-08-02T10:45:29.327965Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:45:37 http: TLS handshake error from 10.244.0.1:41826: EOF 2018/08/02 10:45:47 http: TLS handshake error from 10.244.0.1:41882: EOF 2018/08/02 10:45:57 http: TLS handshake error from 10.244.0.1:41940: EOF level=info timestamp=2018-08-02T10:45:59.375535Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:46:07 http: TLS handshake error from 10.244.0.1:41996: EOF 2018/08/02 10:46:17 http: TLS handshake error from 10.244.0.1:42056: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:46:04.996461Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmiPresetInformer" level=info timestamp=2018-08-02T10:46:04.999310Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmirsInformer" level=info timestamp=2018-08-02T10:46:04.999485Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer configMapInformer" level=info timestamp=2018-08-02T10:46:04.999539Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmInformer" level=info timestamp=2018-08-02T10:46:04.999583Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer limitrangeInformer" level=info timestamp=2018-08-02T10:46:04.999803Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmiInformer" level=info timestamp=2018-08-02T10:46:04.999856Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtPodInformer" level=info timestamp=2018-08-02T10:46:04.999915Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtNodeInformer" level=info timestamp=2018-08-02T10:46:05.000600Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:46:05.005319Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:46:05.005720Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:46:05.005906Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:46:05.006154Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:46:06.982637Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:46:06.983512Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:46:22.474440Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:46:22.476092Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:46:22.476451Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivqrhq" level=info timestamp=2018-08-02T10:46:22.556979Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmivqrhq, existing: true\n" level=info timestamp=2018-08-02T10:46:22.557166Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:46:22.557272Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:46:22.557625Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:46:22.559480Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:46:22.559847Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivqrhq" level=info timestamp=2018-08-02T10:46:22.720462Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmivqrhq, existing: true\n" level=info timestamp=2018-08-02T10:46:22.720578Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:46:22.720619Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:46:22.720804Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:46:22.721761Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:46:22.721935Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivqrhq" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:33:58.473760Z pos=virt-handler.go:87 component=virt-handler hostname=node01 level=info timestamp=2018-08-02T10:33:58.480302Z pos=vm.go:212 component=virt-handler msg="Starting virt-handler controller." level=info timestamp=2018-08-02T10:33:58.481470Z pos=cache.go:151 component=virt-handler msg="Synchronizing domains" level=info timestamp=2018-08-02T10:33:58.581038Z pos=device_controller.go:133 component=virt-handler msg="Starting device plugin controller" level=info timestamp=2018-08-02T10:33:58.668953Z pos=device_controller.go:127 component=virt-handler msg="tun device plugin started" level=info timestamp=2018-08-02T10:33:58.723101Z pos=device_controller.go:127 component=virt-handler msg="kvm device plugin started" Pod name: virt-launcher-testvmivqrhq-d4v8x Pod phase: Running level=info timestamp=2018-08-02T10:46:10.740684Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:46:10.740971Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T10:46:10.746515Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:46:20.783573Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:46:20.811455Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmivqrhq" level=info timestamp=2018-08-02T10:46:20.813820Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:46:20.814268Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T10:48:07.987129Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:48:10 http: TLS handshake error from 10.244.1.1:58122: EOF level=info timestamp=2018-08-02T10:48:12.184129Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:48:20 http: TLS handshake error from 10.244.1.1:58128: EOF level=info timestamp=2018-08-02T10:48:24.308700Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:48:24.412759Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:48:30 http: TLS handshake error from 10.244.1.1:58134: EOF level=info timestamp=2018-08-02T10:48:35.603301Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:48:40 http: TLS handshake error from 10.244.1.1:58140: EOF level=info timestamp=2018-08-02T10:48:42.327354Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:48:50 http: TLS handshake error from 10.244.1.1:58146: EOF level=info timestamp=2018-08-02T10:48:54.385704Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:48:54.474857Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:49:00 http: TLS handshake error from 10.244.1.1:58152: EOF level=info timestamp=2018-08-02T10:49:05.807892Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 10:47:17 http: TLS handshake error from 10.244.0.1:42416: EOF 2018/08/02 10:47:27 http: TLS handshake error from 10.244.0.1:42476: EOF level=info timestamp=2018-08-02T10:47:29.353007Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:47:37 http: TLS handshake error from 10.244.0.1:42536: EOF 2018/08/02 10:47:47 http: TLS handshake error from 10.244.0.1:42596: EOF 2018/08/02 10:47:57 http: TLS handshake error from 10.244.0.1:42656: EOF level=info timestamp=2018-08-02T10:47:59.301786Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:48:07 http: TLS handshake error from 10.244.0.1:42716: EOF 2018/08/02 10:48:17 http: TLS handshake error from 10.244.0.1:42776: EOF 2018/08/02 10:48:27 http: TLS handshake error from 10.244.0.1:42836: EOF level=info timestamp=2018-08-02T10:48:29.344360Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:48:37 http: TLS handshake error from 10.244.0.1:42896: EOF 2018/08/02 10:48:47 http: TLS handshake error from 10.244.0.1:42956: EOF 2018/08/02 10:48:57 http: TLS handshake error from 10.244.0.1:43016: EOF level=info timestamp=2018-08-02T10:48:59.347926Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:46:04.996461Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmiPresetInformer" level=info timestamp=2018-08-02T10:46:04.999310Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmirsInformer" level=info timestamp=2018-08-02T10:46:04.999485Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer configMapInformer" level=info timestamp=2018-08-02T10:46:04.999539Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmInformer" level=info timestamp=2018-08-02T10:46:04.999583Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer limitrangeInformer" level=info timestamp=2018-08-02T10:46:04.999803Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmiInformer" level=info timestamp=2018-08-02T10:46:04.999856Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtPodInformer" level=info timestamp=2018-08-02T10:46:04.999915Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtNodeInformer" level=info timestamp=2018-08-02T10:46:05.000600Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:46:05.005319Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:46:05.005720Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:46:05.005906Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:46:05.006154Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:46:06.982637Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:46:06.983512Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:47:03.389511Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:47:03.392052Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:47:03.396665Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivqrhq" level=info timestamp=2018-08-02T10:47:44.358036Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmivqrhq, existing: true\n" level=info timestamp=2018-08-02T10:47:44.358846Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:47:44.358952Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:47:44.359322Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:47:44.364853Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:47:44.365577Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivqrhq" level=info timestamp=2018-08-02T10:49:06.286911Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmivqrhq, existing: true\n" level=info timestamp=2018-08-02T10:49:06.288033Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:49:06.288135Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:49:06.288667Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:49:06.295549Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:49:06.296274Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivqrhq" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:33:58.473760Z pos=virt-handler.go:87 component=virt-handler hostname=node01 level=info timestamp=2018-08-02T10:33:58.480302Z pos=vm.go:212 component=virt-handler msg="Starting virt-handler controller." level=info timestamp=2018-08-02T10:33:58.481470Z pos=cache.go:151 component=virt-handler msg="Synchronizing domains" level=info timestamp=2018-08-02T10:33:58.581038Z pos=device_controller.go:133 component=virt-handler msg="Starting device plugin controller" level=info timestamp=2018-08-02T10:33:58.668953Z pos=device_controller.go:127 component=virt-handler msg="tun device plugin started" level=info timestamp=2018-08-02T10:33:58.723101Z pos=device_controller.go:127 component=virt-handler msg="kvm device plugin started" Pod name: virt-launcher-testvmivqrhq-d4v8x Pod phase: Running level=info timestamp=2018-08-02T10:46:10.740684Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:46:10.740971Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T10:46:10.746515Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:46:20.783573Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:46:20.811455Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmivqrhq" level=info timestamp=2018-08-02T10:46:20.813820Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:46:20.814268Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure [200.982 seconds] LeaderElection /root/go/src/kubevirt.io/kubevirt/tests/controller_leader_election_test.go:43 Start a VirtualMachineInstance /root/go/src/kubevirt.io/kubevirt/tests/controller_leader_election_test.go:53 when the controller pod is not running /root/go/src/kubevirt.io/kubevirt/tests/controller_leader_election_test.go:54 should success [It] /root/go/src/kubevirt.io/kubevirt/tests/controller_leader_election_test.go:55 Unexpected Warning event received: testvmivqrhq,41fed47d-9641-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ STEP: Destroying the leading controller pod STEP: Starting a new VirtualMachineInstance level=info timestamp=2018-08-02T10:46:06.732950Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmivqrhq kind=VirtualMachineInstance uid=41fed47d-9641-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmivqrhq-d4v8x" level=info timestamp=2018-08-02T10:46:21.878793Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmivqrhq kind=VirtualMachineInstance uid=41fed47d-9641-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmivqrhq-d4v8x" level=error timestamp=2018-08-02T10:46:21.949646Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmivqrhq kind=VirtualMachineInstance uid=41fed47d-9641-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 10:48:20 http: TLS handshake error from 10.244.1.1:58128: EOF level=info timestamp=2018-08-02T10:48:24.308700Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:48:24.412759Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:48:30 http: TLS handshake error from 10.244.1.1:58134: EOF level=info timestamp=2018-08-02T10:48:35.603301Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:48:40 http: TLS handshake error from 10.244.1.1:58140: EOF level=info timestamp=2018-08-02T10:48:42.327354Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:48:50 http: TLS handshake error from 10.244.1.1:58146: EOF level=info timestamp=2018-08-02T10:48:54.385704Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:48:54.474857Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:49:00 http: TLS handshake error from 10.244.1.1:58152: EOF level=info timestamp=2018-08-02T10:49:05.807892Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:49:10 http: TLS handshake error from 10.244.1.1:58158: EOF level=info timestamp=2018-08-02T10:49:12.459673Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:49:20 http: TLS handshake error from 10.244.1.1:58164: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T10:47:29.353007Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:47:37 http: TLS handshake error from 10.244.0.1:42536: EOF 2018/08/02 10:47:47 http: TLS handshake error from 10.244.0.1:42596: EOF 2018/08/02 10:47:57 http: TLS handshake error from 10.244.0.1:42656: EOF level=info timestamp=2018-08-02T10:47:59.301786Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:48:07 http: TLS handshake error from 10.244.0.1:42716: EOF 2018/08/02 10:48:17 http: TLS handshake error from 10.244.0.1:42776: EOF 2018/08/02 10:48:27 http: TLS handshake error from 10.244.0.1:42836: EOF level=info timestamp=2018-08-02T10:48:29.344360Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:48:37 http: TLS handshake error from 10.244.0.1:42896: EOF 2018/08/02 10:48:47 http: TLS handshake error from 10.244.0.1:42956: EOF 2018/08/02 10:48:57 http: TLS handshake error from 10.244.0.1:43016: EOF level=info timestamp=2018-08-02T10:48:59.347926Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:49:07 http: TLS handshake error from 10.244.0.1:43076: EOF 2018/08/02 10:49:17 http: TLS handshake error from 10.244.0.1:43136: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:46:04.999583Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer limitrangeInformer" level=info timestamp=2018-08-02T10:46:04.999803Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmiInformer" level=info timestamp=2018-08-02T10:46:04.999856Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtPodInformer" level=info timestamp=2018-08-02T10:46:04.999915Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtNodeInformer" level=info timestamp=2018-08-02T10:46:05.000600Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:46:05.005319Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:46:05.005720Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:46:05.005906Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:46:05.006154Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:46:06.982637Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:46:06.983512Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.769615Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:49:07.770520Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.860157Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:49:07.892814Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:49:23.158122Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:49:23.159928Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:49:23.160262Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:49:23.200763Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: true\n" level=info timestamp=2018-08-02T10:49:23.200914Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:49:23.200985Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:49:23.201203Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:49:23.202810Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:49:23.203127Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:49:23.283672Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: true\n" level=info timestamp=2018-08-02T10:49:23.283829Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:49:23.283906Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:49:23.284119Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:49:23.285832Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:49:23.286172Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:33:58.473760Z pos=virt-handler.go:87 component=virt-handler hostname=node01 level=info timestamp=2018-08-02T10:33:58.480302Z pos=vm.go:212 component=virt-handler msg="Starting virt-handler controller." level=info timestamp=2018-08-02T10:33:58.481470Z pos=cache.go:151 component=virt-handler msg="Synchronizing domains" level=info timestamp=2018-08-02T10:33:58.581038Z pos=device_controller.go:133 component=virt-handler msg="Starting device plugin controller" level=info timestamp=2018-08-02T10:33:58.668953Z pos=device_controller.go:127 component=virt-handler msg="tun device plugin started" level=info timestamp=2018-08-02T10:33:58.723101Z pos=device_controller.go:127 component=virt-handler msg="kvm device plugin started" Pod name: virt-launcher-testvmitg9hf-kttrq Pod phase: Running level=info timestamp=2018-08-02T10:49:11.436781Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:49:11.437005Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T10:49:11.439121Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:49:21.447570Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:49:21.503946Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmitg9hf" level=info timestamp=2018-08-02T10:49:21.506842Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:49:21.507299Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T10:51:07.418984Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:51:10 http: TLS handshake error from 10.244.1.1:58230: EOF level=info timestamp=2018-08-02T10:51:13.023111Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:51:20 http: TLS handshake error from 10.244.1.1:58236: EOF level=info timestamp=2018-08-02T10:51:24.789319Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:51:24.895796Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:51:30 http: TLS handshake error from 10.244.1.1:58242: EOF level=info timestamp=2018-08-02T10:51:36.208115Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:51:40 http: TLS handshake error from 10.244.1.1:58248: EOF level=info timestamp=2018-08-02T10:51:43.205190Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:51:50 http: TLS handshake error from 10.244.1.1:58254: EOF level=info timestamp=2018-08-02T10:51:54.853259Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:51:54.950129Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:52:00 http: TLS handshake error from 10.244.1.1:58260: EOF level=info timestamp=2018-08-02T10:52:06.291826Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 10:50:17 http: TLS handshake error from 10.244.0.1:43496: EOF 2018/08/02 10:50:27 http: TLS handshake error from 10.244.0.1:43556: EOF level=info timestamp=2018-08-02T10:50:29.288151Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:50:37 http: TLS handshake error from 10.244.0.1:43616: EOF 2018/08/02 10:50:47 http: TLS handshake error from 10.244.0.1:43676: EOF 2018/08/02 10:50:57 http: TLS handshake error from 10.244.0.1:43736: EOF level=info timestamp=2018-08-02T10:50:59.303655Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:51:07 http: TLS handshake error from 10.244.0.1:43796: EOF 2018/08/02 10:51:17 http: TLS handshake error from 10.244.0.1:43856: EOF 2018/08/02 10:51:27 http: TLS handshake error from 10.244.0.1:43916: EOF level=info timestamp=2018-08-02T10:51:29.298188Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:51:37 http: TLS handshake error from 10.244.0.1:43976: EOF 2018/08/02 10:51:47 http: TLS handshake error from 10.244.0.1:44036: EOF 2018/08/02 10:51:57 http: TLS handshake error from 10.244.0.1:44096: EOF level=info timestamp=2018-08-02T10:51:59.341917Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:46:04.999583Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer limitrangeInformer" level=info timestamp=2018-08-02T10:46:04.999803Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer vmiInformer" level=info timestamp=2018-08-02T10:46:04.999856Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtPodInformer" level=info timestamp=2018-08-02T10:46:04.999915Z pos=virtinformers.go:107 component=virt-controller service=http msg="STARTING informer kubeVirtNodeInformer" level=info timestamp=2018-08-02T10:46:05.000600Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:46:05.005319Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:46:05.005720Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:46:05.005906Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:46:05.006154Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:46:06.982637Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:46:06.983512Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.769615Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:49:07.770520Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.860157Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:49:07.892814Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:50:45.087874Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:50:45.087964Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:50:45.088438Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:50:45.091923Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:50:45.092673Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:51:50.138440Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmivqrhq, existing: false\n" level=info timestamp=2018-08-02T10:51:50.139074Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:51:50.139500Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:51:50.139908Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmivqrhq kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T10:52:07.013591Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: true\n" level=info timestamp=2018-08-02T10:52:07.013829Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:07.013906Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:07.014196Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:52:07.017743Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:52:07.018451Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:33:58.473760Z pos=virt-handler.go:87 component=virt-handler hostname=node01 level=info timestamp=2018-08-02T10:33:58.480302Z pos=vm.go:212 component=virt-handler msg="Starting virt-handler controller." level=info timestamp=2018-08-02T10:33:58.481470Z pos=cache.go:151 component=virt-handler msg="Synchronizing domains" level=info timestamp=2018-08-02T10:33:58.581038Z pos=device_controller.go:133 component=virt-handler msg="Starting device plugin controller" level=info timestamp=2018-08-02T10:33:58.668953Z pos=device_controller.go:127 component=virt-handler msg="tun device plugin started" level=info timestamp=2018-08-02T10:33:58.723101Z pos=device_controller.go:127 component=virt-handler msg="kvm device plugin started" Pod name: virt-launcher-testvmitg9hf-kttrq Pod phase: Running level=info timestamp=2018-08-02T10:49:11.436781Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:49:11.437005Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T10:49:11.439121Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:49:21.447570Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:49:21.503946Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmitg9hf" level=info timestamp=2018-08-02T10:49:21.506842Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:49:21.507299Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure [180.717 seconds] Configurations /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:44 VirtualMachineInstance definition /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:55 with 3 CPU cores /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:56 should report 3 cpu cores under guest OS [It] /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:62 Unexpected Warning event received: testvmitg9hf,adc1198f-9641-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ STEP: Starting a VirtualMachineInstance level=info timestamp=2018-08-02T10:49:07.415453Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid=adc1198f-9641-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmitg9hf-kttrq" level=info timestamp=2018-08-02T10:49:22.570927Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid=adc1198f-9641-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmitg9hf-kttrq" level=error timestamp=2018-08-02T10:49:22.681069Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid=adc1198f-9641-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" • Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T10:51:24.895796Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:51:30 http: TLS handshake error from 10.244.1.1:58242: EOF level=info timestamp=2018-08-02T10:51:36.208115Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:51:40 http: TLS handshake error from 10.244.1.1:58248: EOF level=info timestamp=2018-08-02T10:51:43.205190Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:51:50 http: TLS handshake error from 10.244.1.1:58254: EOF level=info timestamp=2018-08-02T10:51:54.853259Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:51:54.950129Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:52:00 http: TLS handshake error from 10.244.1.1:58260: EOF level=info timestamp=2018-08-02T10:52:06.291826Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:52:10 http: TLS handshake error from 10.244.1.1:58266: EOF level=info timestamp=2018-08-02T10:52:13.381159Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:52:20 http: TLS handshake error from 10.244.1.1:58272: EOF level=info timestamp=2018-08-02T10:52:24.928250Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:52:25.080563Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T10:50:29.288151Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:50:37 http: TLS handshake error from 10.244.0.1:43616: EOF 2018/08/02 10:50:47 http: TLS handshake error from 10.244.0.1:43676: EOF 2018/08/02 10:50:57 http: TLS handshake error from 10.244.0.1:43736: EOF level=info timestamp=2018-08-02T10:50:59.303655Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:51:07 http: TLS handshake error from 10.244.0.1:43796: EOF 2018/08/02 10:51:17 http: TLS handshake error from 10.244.0.1:43856: EOF 2018/08/02 10:51:27 http: TLS handshake error from 10.244.0.1:43916: EOF level=info timestamp=2018-08-02T10:51:29.298188Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:51:37 http: TLS handshake error from 10.244.0.1:43976: EOF 2018/08/02 10:51:47 http: TLS handshake error from 10.244.0.1:44036: EOF 2018/08/02 10:51:57 http: TLS handshake error from 10.244.0.1:44096: EOF level=info timestamp=2018-08-02T10:51:59.341917Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:52:07 http: TLS handshake error from 10.244.0.1:44156: EOF 2018/08/02 10:52:17 http: TLS handshake error from 10.244.0.1:44216: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:46:05.000600Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:46:05.005319Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:46:05.005720Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:46:05.005906Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:46:05.006154Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:46:06.982637Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:46:06.983512Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.769615Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:49:07.770520Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.860157Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:49:07.892814Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.499456Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:08.506989Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:52:09.849802Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:09.850074Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:52:07.013829Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:07.013906Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:07.014196Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:52:07.017743Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:52:07.018451Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.219541Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: true\n" level=info timestamp=2018-08-02T10:52:08.219754Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:08.219828Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.220094Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=error timestamp=2018-08-02T10:52:08.298244Z pos=vm.go:433 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="Updating the VirtualMachineInstance status failed." level=info timestamp=2018-08-02T10:52:08.298626Z pos=vm.go:253 component=virt-handler reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.298831Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:52:08.298882Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.299017Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:52:08.299255Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:52:26.490823Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:52:26.493765Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:52:26.494328Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi67vmb" level=info timestamp=2018-08-02T10:52:26.534963Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi67vmb, existing: true\n" level=info timestamp=2018-08-02T10:52:26.535216Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:26.535312Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:26.535488Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:52:26.539947Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:52:26.540343Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi67vmb" level=info timestamp=2018-08-02T10:52:26.622946Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi67vmb, existing: true\n" level=info timestamp=2018-08-02T10:52:26.623096Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:26.623134Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:26.623275Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:52:26.624520Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:52:26.624683Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi67vmb" Pod name: virt-launcher-testvmi67vmb-skf5f Pod phase: Running level=info timestamp=2018-08-02T10:52:13.950839Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:52:13.972549Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T10:52:13.977226Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:52:24.209290Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:52:24.246619Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi67vmb" level=info timestamp=2018-08-02T10:52:24.247298Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:52:24.247467Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T10:54:13.902687Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:54:20 http: TLS handshake error from 10.244.1.1:58344: EOF level=info timestamp=2018-08-02T10:54:25.397838Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:54:25.459705Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:54:30 http: TLS handshake error from 10.244.1.1:58350: EOF level=info timestamp=2018-08-02T10:54:36.906993Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:54:40 http: TLS handshake error from 10.244.1.1:58356: EOF level=info timestamp=2018-08-02T10:54:44.047028Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:54:50 http: TLS handshake error from 10.244.1.1:58362: EOF level=info timestamp=2018-08-02T10:54:55.468103Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:54:55.541257Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:55:00 http: TLS handshake error from 10.244.1.1:58368: EOF level=info timestamp=2018-08-02T10:55:06.965982Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:55:07.740664Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:55:07.744466Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 10:53:27 http: TLS handshake error from 10.244.0.1:44636: EOF level=info timestamp=2018-08-02T10:53:29.422591Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:53:37 http: TLS handshake error from 10.244.0.1:44696: EOF 2018/08/02 10:53:47 http: TLS handshake error from 10.244.0.1:44756: EOF 2018/08/02 10:53:57 http: TLS handshake error from 10.244.0.1:44816: EOF level=info timestamp=2018-08-02T10:53:59.424845Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:54:07 http: TLS handshake error from 10.244.0.1:44876: EOF 2018/08/02 10:54:17 http: TLS handshake error from 10.244.0.1:44936: EOF 2018/08/02 10:54:27 http: TLS handshake error from 10.244.0.1:44996: EOF level=info timestamp=2018-08-02T10:54:29.296438Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:54:37 http: TLS handshake error from 10.244.0.1:45056: EOF 2018/08/02 10:54:47 http: TLS handshake error from 10.244.0.1:45116: EOF 2018/08/02 10:54:57 http: TLS handshake error from 10.244.0.1:45176: EOF level=info timestamp=2018-08-02T10:54:59.453437Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:55:07 http: TLS handshake error from 10.244.0.1:45236: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:46:05.000600Z pos=vm.go:85 component=virt-controller service=http msg="Starting VirtualMachine controller." level=info timestamp=2018-08-02T10:46:05.005319Z pos=node.go:104 component=virt-controller service=http msg="Starting node controller." level=info timestamp=2018-08-02T10:46:05.005720Z pos=vmi.go:129 component=virt-controller service=http msg="Starting vmi controller." level=info timestamp=2018-08-02T10:46:05.005906Z pos=replicaset.go:111 component=virt-controller service=http msg="Starting VirtualMachineInstanceReplicaSet controller." level=info timestamp=2018-08-02T10:46:05.006154Z pos=preset.go:74 component=virt-controller service=http msg="Starting Virtual Machine Initializer." level=info timestamp=2018-08-02T10:46:06.982637Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:46:06.983512Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.769615Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:49:07.770520Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.860157Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:49:07.892814Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.499456Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:08.506989Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:52:09.849802Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:09.850074Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:52:07.018451Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.219541Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: true\n" level=info timestamp=2018-08-02T10:52:08.219754Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:08.219828Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.220094Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=error timestamp=2018-08-02T10:52:08.298244Z pos=vm.go:433 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="Updating the VirtualMachineInstance status failed." level=info timestamp=2018-08-02T10:52:08.298626Z pos=vm.go:253 component=virt-handler reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.298831Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:52:08.298882Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.299017Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:52:08.299255Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T10:54:50.859778Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:54:50.860218Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:54:50.860573Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:54:50.860990Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:52:46.987565Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:52:46.994935Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:52:46.995486Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi67vmb" level=info timestamp=2018-08-02T10:53:07.476930Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi67vmb, existing: true\n" level=info timestamp=2018-08-02T10:53:07.477845Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:53:07.477935Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:53:07.478587Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:53:07.486770Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:53:07.488942Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi67vmb" level=info timestamp=2018-08-02T10:53:48.450596Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi67vmb, existing: true\n" level=info timestamp=2018-08-02T10:53:48.451601Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:53:48.451705Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:53:48.453546Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:53:48.460105Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:53:48.460818Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi67vmb" Pod name: virt-launcher-testvmi67vmb-skf5f Pod phase: Running level=info timestamp=2018-08-02T10:52:13.950839Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:52:13.972549Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T10:52:13.977226Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:52:24.209290Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:52:24.246619Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi67vmb" level=info timestamp=2018-08-02T10:52:24.247298Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:52:24.247467Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" ------------------------------ • Failure [180.743 seconds] Configurations /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:44 VirtualMachineInstance definition /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:55 with hugepages /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:164 should consume hugepages /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table.go:92 hugepages-2Mi [It] /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go:46 Unexpected Warning event received: testvmi67vmb,1a476b95-9642-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ STEP: Starting a VM level=info timestamp=2018-08-02T10:52:09.549906Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmi67vmb kind=VirtualMachineInstance uid=1a476b95-9642-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmi67vmb-skf5f" level=info timestamp=2018-08-02T10:52:26.904232Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmi67vmb kind=VirtualMachineInstance uid=1a476b95-9642-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmi67vmb-skf5f" level=error timestamp=2018-08-02T10:52:26.992907Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmi67vmb kind=VirtualMachineInstance uid=1a476b95-9642-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" S [SKIPPING] [0.341 seconds] Configurations /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:44 VirtualMachineInstance definition /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:55 with hugepages /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:164 should consume hugepages /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table.go:92 hugepages-1Gi [It] /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go:46 No node with hugepages hugepages-1Gi capacity /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:216 ------------------------------ • Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T10:54:36.906993Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:54:40 http: TLS handshake error from 10.244.1.1:58356: EOF level=info timestamp=2018-08-02T10:54:44.047028Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:54:50 http: TLS handshake error from 10.244.1.1:58362: EOF level=info timestamp=2018-08-02T10:54:55.468103Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:54:55.541257Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:55:00 http: TLS handshake error from 10.244.1.1:58368: EOF level=info timestamp=2018-08-02T10:55:06.965982Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:55:07.740664Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:55:07.744466Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:55:10 http: TLS handshake error from 10.244.1.1:58374: EOF level=info timestamp=2018-08-02T10:55:14.174471Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:55:20 http: TLS handshake error from 10.244.1.1:58380: EOF level=info timestamp=2018-08-02T10:55:25.555354Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:55:25.627517Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T10:53:29.422591Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:53:37 http: TLS handshake error from 10.244.0.1:44696: EOF 2018/08/02 10:53:47 http: TLS handshake error from 10.244.0.1:44756: EOF 2018/08/02 10:53:57 http: TLS handshake error from 10.244.0.1:44816: EOF level=info timestamp=2018-08-02T10:53:59.424845Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:54:07 http: TLS handshake error from 10.244.0.1:44876: EOF 2018/08/02 10:54:17 http: TLS handshake error from 10.244.0.1:44936: EOF 2018/08/02 10:54:27 http: TLS handshake error from 10.244.0.1:44996: EOF level=info timestamp=2018-08-02T10:54:29.296438Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:54:37 http: TLS handshake error from 10.244.0.1:45056: EOF 2018/08/02 10:54:47 http: TLS handshake error from 10.244.0.1:45116: EOF 2018/08/02 10:54:57 http: TLS handshake error from 10.244.0.1:45176: EOF level=info timestamp=2018-08-02T10:54:59.453437Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:55:07 http: TLS handshake error from 10.244.0.1:45236: EOF 2018/08/02 10:55:17 http: TLS handshake error from 10.244.0.1:45296: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:46:06.982637Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:46:06.983512Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.769615Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:49:07.770520Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.860157Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:49:07.892814Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.499456Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:08.506989Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:52:09.849802Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:09.850074Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:10.924725Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:10.925488Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.226098Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:12.226566Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.440981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi6zc2t\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:52:07.018451Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.219541Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: true\n" level=info timestamp=2018-08-02T10:52:08.219754Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:08.219828Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.220094Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=error timestamp=2018-08-02T10:52:08.298244Z pos=vm.go:433 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="Updating the VirtualMachineInstance status failed." level=info timestamp=2018-08-02T10:52:08.298626Z pos=vm.go:253 component=virt-handler reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.298831Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:52:08.298882Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.299017Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:52:08.299255Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T10:54:50.859778Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:54:50.860218Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:54:50.860573Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:54:50.860990Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:55:26.268569Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:55:26.269939Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:55:26.270546Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" level=info timestamp=2018-08-02T10:55:26.311453Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi6zc2t, existing: true\n" level=info timestamp=2018-08-02T10:55:26.311548Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:55:26.311577Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:55:26.311681Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:55:26.313750Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:55:26.314109Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" level=info timestamp=2018-08-02T10:55:26.394383Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi6zc2t, existing: true\n" level=info timestamp=2018-08-02T10:55:26.394480Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:55:26.394508Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:55:26.394606Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:55:26.395593Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:55:26.395783Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" Pod name: virt-launcher-testvmi6zc2t-2d8jm Pod phase: Running level=info timestamp=2018-08-02T10:55:15.022009Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:55:15.022443Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T10:55:15.025927Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:55:25.036915Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:55:25.152602Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi6zc2t" level=info timestamp=2018-08-02T10:55:25.164120Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:55:25.164554Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 10:57:20 http: TLS handshake error from 10.244.1.1:58452: EOF level=info timestamp=2018-08-02T10:57:25.937317Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:57:26.014659Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:57:30 http: TLS handshake error from 10.244.1.1:58458: EOF level=info timestamp=2018-08-02T10:57:37.463693Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:57:40 http: TLS handshake error from 10.244.1.1:58464: EOF level=info timestamp=2018-08-02T10:57:44.856900Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:57:50 http: TLS handshake error from 10.244.1.1:58470: EOF level=info timestamp=2018-08-02T10:57:56.028743Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:57:56.099105Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:58:00 http: TLS handshake error from 10.244.1.1:58476: EOF level=info timestamp=2018-08-02T10:58:07.563568Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:58:07.758894Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:58:07.762192Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:58:10 http: TLS handshake error from 10.244.1.1:58482: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 10:56:27 http: TLS handshake error from 10.244.0.1:45716: EOF level=info timestamp=2018-08-02T10:56:29.310138Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:56:37 http: TLS handshake error from 10.244.0.1:45776: EOF 2018/08/02 10:56:47 http: TLS handshake error from 10.244.0.1:45836: EOF 2018/08/02 10:56:57 http: TLS handshake error from 10.244.0.1:45896: EOF level=info timestamp=2018-08-02T10:56:59.336482Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:57:07 http: TLS handshake error from 10.244.0.1:45956: EOF 2018/08/02 10:57:17 http: TLS handshake error from 10.244.0.1:46016: EOF 2018/08/02 10:57:27 http: TLS handshake error from 10.244.0.1:46076: EOF level=info timestamp=2018-08-02T10:57:29.425837Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:57:37 http: TLS handshake error from 10.244.0.1:46136: EOF 2018/08/02 10:57:47 http: TLS handshake error from 10.244.0.1:46196: EOF 2018/08/02 10:57:57 http: TLS handshake error from 10.244.0.1:46256: EOF level=info timestamp=2018-08-02T10:57:59.433290Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:58:07 http: TLS handshake error from 10.244.0.1:46316: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:46:06.982637Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:46:06.983512Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivqrhq kind= uid=41fed47d-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.769615Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:49:07.770520Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.860157Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:49:07.892814Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.499456Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:08.506989Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:52:09.849802Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:09.850074Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:10.924725Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:10.925488Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.226098Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:12.226566Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.440981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi6zc2t\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:52:07.018451Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.219541Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: true\n" level=info timestamp=2018-08-02T10:52:08.219754Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:08.219828Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.220094Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=error timestamp=2018-08-02T10:52:08.298244Z pos=vm.go:433 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="Updating the VirtualMachineInstance status failed." level=info timestamp=2018-08-02T10:52:08.298626Z pos=vm.go:253 component=virt-handler reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.298831Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:52:08.298882Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.299017Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:52:08.299255Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T10:54:50.859778Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:54:50.860218Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:54:50.860573Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:54:50.860990Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:56:07.229466Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:56:07.233810Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:56:07.234666Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" level=info timestamp=2018-08-02T10:56:48.197124Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi6zc2t, existing: true\n" level=info timestamp=2018-08-02T10:56:48.198899Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:56:48.199023Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:56:48.200392Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:56:48.205891Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:56:48.218912Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" level=info timestamp=2018-08-02T10:58:10.142977Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi6zc2t, existing: true\n" level=info timestamp=2018-08-02T10:58:10.143857Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:58:10.143951Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:58:10.145550Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:58:10.153385Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:58:10.154025Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" Pod name: virt-launcher-testvmi6zc2t-2d8jm Pod phase: Running level=info timestamp=2018-08-02T10:55:15.022009Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:55:15.022443Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T10:55:15.025927Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:55:25.036915Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:55:25.152602Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi6zc2t" level=info timestamp=2018-08-02T10:55:25.164120Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:55:25.164554Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" ------------------------------ • Failure in Spec Setup (BeforeEach) [180.649 seconds] Configurations /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:44 with CPU spec /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:294 when CPU model defined [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:340 should report defined CPU model /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:341 Unexpected Warning event received: testvmi6zc2t,86fe5396-9642-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T10:55:12.027460Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmi6zc2t kind=VirtualMachineInstance uid=86fe5396-9642-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmi6zc2t-2d8jm" level=info timestamp=2018-08-02T10:55:26.698020Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmi6zc2t kind=VirtualMachineInstance uid=86fe5396-9642-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmi6zc2t-2d8jm" level=error timestamp=2018-08-02T10:55:26.794310Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmi6zc2t kind=VirtualMachineInstance uid=86fe5396-9642-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T10:57:37.463693Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:57:40 http: TLS handshake error from 10.244.1.1:58464: EOF level=info timestamp=2018-08-02T10:57:44.856900Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:57:50 http: TLS handshake error from 10.244.1.1:58470: EOF level=info timestamp=2018-08-02T10:57:56.028743Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:57:56.099105Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:58:00 http: TLS handshake error from 10.244.1.1:58476: EOF level=info timestamp=2018-08-02T10:58:07.563568Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:58:07.758894Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:58:07.762192Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:58:10 http: TLS handshake error from 10.244.1.1:58482: EOF level=info timestamp=2018-08-02T10:58:15.089355Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 10:58:20 http: TLS handshake error from 10.244.1.1:58488: EOF level=info timestamp=2018-08-02T10:58:26.090159Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T10:58:26.147011Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T10:56:29.310138Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:56:37 http: TLS handshake error from 10.244.0.1:45776: EOF 2018/08/02 10:56:47 http: TLS handshake error from 10.244.0.1:45836: EOF 2018/08/02 10:56:57 http: TLS handshake error from 10.244.0.1:45896: EOF level=info timestamp=2018-08-02T10:56:59.336482Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:57:07 http: TLS handshake error from 10.244.0.1:45956: EOF 2018/08/02 10:57:17 http: TLS handshake error from 10.244.0.1:46016: EOF 2018/08/02 10:57:27 http: TLS handshake error from 10.244.0.1:46076: EOF level=info timestamp=2018-08-02T10:57:29.425837Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:57:37 http: TLS handshake error from 10.244.0.1:46136: EOF 2018/08/02 10:57:47 http: TLS handshake error from 10.244.0.1:46196: EOF 2018/08/02 10:57:57 http: TLS handshake error from 10.244.0.1:46256: EOF level=info timestamp=2018-08-02T10:57:59.433290Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 10:58:07 http: TLS handshake error from 10.244.0.1:46316: EOF 2018/08/02 10:58:17 http: TLS handshake error from 10.244.0.1:46376: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:49:07.770520Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.860157Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:49:07.892814Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.499456Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:08.506989Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:52:09.849802Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:09.850074Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:10.924725Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:10.925488Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.226098Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:12.226566Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.440981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi6zc2t\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" level=info timestamp=2018-08-02T10:58:12.899537Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:58:12.900284Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:58:13.016961Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmij5kfj\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmij5kfj" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:52:07.018451Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.219541Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: true\n" level=info timestamp=2018-08-02T10:52:08.219754Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:08.219828Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.220094Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=error timestamp=2018-08-02T10:52:08.298244Z pos=vm.go:433 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="Updating the VirtualMachineInstance status failed." level=info timestamp=2018-08-02T10:52:08.298626Z pos=vm.go:253 component=virt-handler reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.298831Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:52:08.298882Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.299017Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:52:08.299255Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T10:54:50.859778Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:54:50.860218Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:54:50.860573Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:54:50.860990Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=error timestamp=2018-08-02T10:58:27.033761Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:58:27.034881Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmij5kfj" level=info timestamp=2018-08-02T10:58:27.079520Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmij5kfj, existing: true\n" level=info timestamp=2018-08-02T10:58:27.079610Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:58:27.079638Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:58:27.079731Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:58:27.081306Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:58:27.081446Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmij5kfj" level=info timestamp=2018-08-02T10:58:27.161932Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmij5kfj, existing: true\n" level=info timestamp=2018-08-02T10:58:27.162320Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:58:27.162445Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:58:27.162632Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:58:27.167529Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:58:27.168254Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmij5kfj" level=info timestamp=2018-08-02T10:58:27.330406Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmij5kfj, existing: true\n" Pod name: virt-launcher-testvmij5kfj-hm2ww Pod phase: Running level=info timestamp=2018-08-02T10:58:16.164427Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:58:16.164697Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T10:58:16.165976Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:58:26.182317Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:58:26.318639Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmij5kfj" level=info timestamp=2018-08-02T10:58:26.320778Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:58:26.321251Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:00:20 http: TLS handshake error from 10.244.1.1:58560: EOF level=info timestamp=2018-08-02T11:00:26.421597Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:00:26.507280Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:00:30 http: TLS handshake error from 10.244.1.1:58566: EOF level=info timestamp=2018-08-02T11:00:38.030467Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:00:40 http: TLS handshake error from 10.244.1.1:58572: EOF level=info timestamp=2018-08-02T11:00:45.871045Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:00:50 http: TLS handshake error from 10.244.1.1:58578: EOF level=info timestamp=2018-08-02T11:00:56.515636Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:00:56.600176Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:01:00 http: TLS handshake error from 10.244.1.1:58584: EOF level=info timestamp=2018-08-02T11:01:07.397130Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:01:07.402020Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:01:08.119965Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:01:10 http: TLS handshake error from 10.244.1.1:58590: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 10:59:37 http: TLS handshake error from 10.244.0.1:46856: EOF 2018/08/02 10:59:47 http: TLS handshake error from 10.244.0.1:46916: EOF 2018/08/02 10:59:57 http: TLS handshake error from 10.244.0.1:46976: EOF level=info timestamp=2018-08-02T10:59:59.216991Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:59:59.236657Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:59:59.589470Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:00:07 http: TLS handshake error from 10.244.0.1:47036: EOF 2018/08/02 11:00:17 http: TLS handshake error from 10.244.0.1:47096: EOF 2018/08/02 11:00:27 http: TLS handshake error from 10.244.0.1:47156: EOF level=info timestamp=2018-08-02T11:00:29.397424Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:00:37 http: TLS handshake error from 10.244.0.1:47216: EOF 2018/08/02 11:00:47 http: TLS handshake error from 10.244.0.1:47276: EOF 2018/08/02 11:00:57 http: TLS handshake error from 10.244.0.1:47336: EOF level=info timestamp=2018-08-02T11:00:59.515277Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:01:07 http: TLS handshake error from 10.244.0.1:47396: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:49:07.770520Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:49:07.860157Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:49:07.892814Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.499456Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:08.506989Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:52:09.849802Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:09.850074Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:10.924725Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:10.925488Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.226098Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:12.226566Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.440981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi6zc2t\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" level=info timestamp=2018-08-02T10:58:12.899537Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:58:12.900284Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:58:13.016961Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmij5kfj\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmij5kfj" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:52:07.018451Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.219541Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: true\n" level=info timestamp=2018-08-02T10:52:08.219754Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:08.219828Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.220094Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=error timestamp=2018-08-02T10:52:08.298244Z pos=vm.go:433 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="Updating the VirtualMachineInstance status failed." level=info timestamp=2018-08-02T10:52:08.298626Z pos=vm.go:253 component=virt-handler reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.298831Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:52:08.298882Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.299017Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:52:08.299255Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T10:54:50.859778Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:54:50.860218Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:54:50.860573Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:54:50.860990Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T10:59:49.007465Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:59:49.007578Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:59:49.008783Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T10:59:49.013311Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T10:59:49.013900Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmij5kfj" level=info timestamp=2018-08-02T11:00:54.008971Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi6zc2t, existing: false\n" level=info timestamp=2018-08-02T11:00:54.010936Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:00:54.011740Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:00:54.012894Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmi6zc2t kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:01:10.934746Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmij5kfj, existing: true\n" level=info timestamp=2018-08-02T11:01:10.934948Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:01:10.935022Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:01:10.935336Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:01:10.946965Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:01:10.947771Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmij5kfj" Pod name: virt-launcher-testvmij5kfj-hm2ww Pod phase: Running level=info timestamp=2018-08-02T10:58:16.164427Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T10:58:16.164697Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T10:58:16.165976Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T10:58:26.182317Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T10:58:26.318639Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmij5kfj" level=info timestamp=2018-08-02T10:58:26.320778Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T10:58:26.321251Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [180.744 seconds] Configurations /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:44 with CPU spec /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:294 when CPU model equals to passthrough [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:368 should report exactly the same model as node CPU /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:369 Unexpected Warning event received: testvmij5kfj,f2af25c2-9642-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T10:58:12.561319Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmij5kfj kind=VirtualMachineInstance uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmij5kfj-hm2ww" level=info timestamp=2018-08-02T10:58:27.477531Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmij5kfj kind=VirtualMachineInstance uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmij5kfj-hm2ww" level=error timestamp=2018-08-02T10:58:27.590551Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmij5kfj kind=VirtualMachineInstance uid=f2af25c2-9642-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:00:38.030467Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:00:40 http: TLS handshake error from 10.244.1.1:58572: EOF level=info timestamp=2018-08-02T11:00:45.871045Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:00:50 http: TLS handshake error from 10.244.1.1:58578: EOF level=info timestamp=2018-08-02T11:00:56.515636Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:00:56.600176Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:01:00 http: TLS handshake error from 10.244.1.1:58584: EOF level=info timestamp=2018-08-02T11:01:07.397130Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:01:07.402020Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:01:08.119965Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:01:10 http: TLS handshake error from 10.244.1.1:58590: EOF level=info timestamp=2018-08-02T11:01:15.954714Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:01:20 http: TLS handshake error from 10.244.1.1:58596: EOF level=info timestamp=2018-08-02T11:01:26.580342Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:01:26.671506Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 10:59:57 http: TLS handshake error from 10.244.0.1:46976: EOF level=info timestamp=2018-08-02T10:59:59.216991Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:59:59.236657Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T10:59:59.589470Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:00:07 http: TLS handshake error from 10.244.0.1:47036: EOF 2018/08/02 11:00:17 http: TLS handshake error from 10.244.0.1:47096: EOF 2018/08/02 11:00:27 http: TLS handshake error from 10.244.0.1:47156: EOF level=info timestamp=2018-08-02T11:00:29.397424Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:00:37 http: TLS handshake error from 10.244.0.1:47216: EOF 2018/08/02 11:00:47 http: TLS handshake error from 10.244.0.1:47276: EOF 2018/08/02 11:00:57 http: TLS handshake error from 10.244.0.1:47336: EOF level=info timestamp=2018-08-02T11:00:59.515277Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:01:07 http: TLS handshake error from 10.244.0.1:47396: EOF 2018/08/02 11:01:17 http: TLS handshake error from 10.244.0.1:47456: EOF 2018/08/02 11:01:27 http: TLS handshake error from 10.244.0.1:47516: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:52:08.499456Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:08.506989Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:52:09.849802Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:09.850074Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:10.924725Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:10.925488Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.226098Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:12.226566Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.440981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi6zc2t\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" level=info timestamp=2018-08-02T10:58:12.899537Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:58:12.900284Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:58:13.016961Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmij5kfj\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmij5kfj" level=info timestamp=2018-08-02T11:01:13.731510Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:01:13.734696Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:01:13.851885Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmim6qtn\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:52:07.018451Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.219541Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: true\n" level=info timestamp=2018-08-02T10:52:08.219754Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:08.219828Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.220094Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=error timestamp=2018-08-02T10:52:08.298244Z pos=vm.go:433 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="Updating the VirtualMachineInstance status failed." level=info timestamp=2018-08-02T10:52:08.298626Z pos=vm.go:253 component=virt-handler reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.298831Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:52:08.298882Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.299017Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:52:08.299255Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T10:54:50.859778Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:54:50.860218Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:54:50.860573Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:54:50.860990Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:01:28.452846Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:01:28.461774Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:01:28.462235Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" level=info timestamp=2018-08-02T11:01:28.505341Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: true\n" level=info timestamp=2018-08-02T11:01:28.505490Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:01:28.505560Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:01:28.505753Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:01:28.511752Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:01:28.515653Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" level=info timestamp=2018-08-02T11:01:28.596254Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: true\n" level=info timestamp=2018-08-02T11:01:28.596379Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:01:28.596421Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:01:28.596618Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:01:28.597793Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:01:28.598002Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" Pod name: virt-launcher-testvmim6qtn-4mpw2 Pod phase: Running level=info timestamp=2018-08-02T11:01:16.482260Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:01:16.482919Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:01:16.484284Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:01:26.758033Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:01:26.887325Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmim6qtn" level=info timestamp=2018-08-02T11:01:26.890541Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:01:26.891244Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:03:10 http: TLS handshake error from 10.244.1.1:58662: EOF level=info timestamp=2018-08-02T11:03:16.548351Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:03:20 http: TLS handshake error from 10.244.1.1:58668: EOF level=info timestamp=2018-08-02T11:03:26.957602Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:03:27.042555Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:03:30 http: TLS handshake error from 10.244.1.1:58674: EOF level=info timestamp=2018-08-02T11:03:38.559869Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:03:40 http: TLS handshake error from 10.244.1.1:58680: EOF level=info timestamp=2018-08-02T11:03:46.689095Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:03:50 http: TLS handshake error from 10.244.1.1:58686: EOF level=info timestamp=2018-08-02T11:03:57.060039Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:03:57.127266Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:04:00 http: TLS handshake error from 10.244.1.1:58692: EOF level=info timestamp=2018-08-02T11:04:08.645892Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:04:10 http: TLS handshake error from 10.244.1.1:58698: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:02:27 http: TLS handshake error from 10.244.0.1:47876: EOF level=info timestamp=2018-08-02T11:02:29.348554Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:02:37 http: TLS handshake error from 10.244.0.1:47936: EOF 2018/08/02 11:02:47 http: TLS handshake error from 10.244.0.1:47996: EOF 2018/08/02 11:02:57 http: TLS handshake error from 10.244.0.1:48056: EOF level=info timestamp=2018-08-02T11:02:59.475834Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:03:07 http: TLS handshake error from 10.244.0.1:48116: EOF 2018/08/02 11:03:17 http: TLS handshake error from 10.244.0.1:48176: EOF 2018/08/02 11:03:27 http: TLS handshake error from 10.244.0.1:48236: EOF level=info timestamp=2018-08-02T11:03:29.322882Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:03:37 http: TLS handshake error from 10.244.0.1:48296: EOF 2018/08/02 11:03:47 http: TLS handshake error from 10.244.0.1:48356: EOF 2018/08/02 11:03:57 http: TLS handshake error from 10.244.0.1:48416: EOF level=info timestamp=2018-08-02T11:03:59.417398Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:04:07 http: TLS handshake error from 10.244.0.1:48476: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:52:08.499456Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:08.506989Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmilgfsj kind= uid=1978b64d-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:52:09.849802Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:09.850074Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:10.924725Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:10.925488Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.226098Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:12.226566Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.440981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi6zc2t\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" level=info timestamp=2018-08-02T10:58:12.899537Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:58:12.900284Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:58:13.016961Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmij5kfj\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmij5kfj" level=info timestamp=2018-08-02T11:01:13.731510Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:01:13.734696Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:01:13.851885Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmim6qtn\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T10:52:07.018451Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.219541Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: true\n" level=info timestamp=2018-08-02T10:52:08.219754Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T10:52:08.219828Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.220094Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=error timestamp=2018-08-02T10:52:08.298244Z pos=vm.go:433 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind= uid=adc1198f-9641-11e8-869c-525500d15501 reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="Updating the VirtualMachineInstance status failed." level=info timestamp=2018-08-02T10:52:08.298626Z pos=vm.go:253 component=virt-handler reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmitg9hf\": StorageError: invalid object, Code: 4, Key: /registry/kubevirt.io/virtualmachineinstances/kubevirt-test-default/testvmitg9hf, ResourceVersion: 0, AdditionalErrorMsg: Precondition failed: UID in precondition: adc1198f-9641-11e8-869c-525500d15501, UID in object meta: " msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmitg9hf" level=info timestamp=2018-08-02T10:52:08.298831Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:52:08.298882Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:52:08.299017Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:52:08.299255Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T10:54:50.859778Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmitg9hf, existing: false\n" level=info timestamp=2018-08-02T10:54:50.860218Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T10:54:50.860573Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T10:54:50.860990Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmitg9hf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:02:50.435150Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:02:50.435244Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:02:50.435898Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:02:50.443974Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:02:50.444732Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" level=info timestamp=2018-08-02T11:03:54.789374Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmij5kfj, existing: false\n" level=info timestamp=2018-08-02T11:03:54.789978Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:03:54.791834Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmij5kfj kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:03:54.792678Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmij5kfj kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:04:12.367651Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: true\n" level=info timestamp=2018-08-02T11:04:12.368324Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:04:12.368381Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:12.368610Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:04:12.371286Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:04:12.371615Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" Pod name: virt-launcher-testvmim6qtn-4mpw2 Pod phase: Running level=info timestamp=2018-08-02T11:01:16.482260Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:01:16.482919Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:01:16.484284Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:01:26.758033Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:01:26.887325Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmim6qtn" level=info timestamp=2018-08-02T11:01:26.890541Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:01:26.891244Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [180.698 seconds] Configurations /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:44 with CPU spec /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:294 when CPU model not defined [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:392 should report CPU model from libvirt capabilities /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:393 Unexpected Warning event received: testvmim6qtn,5e764bf0-9643-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:01:13.368961Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmim6qtn-4mpw2" level=info timestamp=2018-08-02T11:01:28.913149Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmim6qtn-4mpw2" level=error timestamp=2018-08-02T11:01:29.015332Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid=5e764bf0-9643-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:03:30 http: TLS handshake error from 10.244.1.1:58674: EOF level=info timestamp=2018-08-02T11:03:38.559869Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:03:40 http: TLS handshake error from 10.244.1.1:58680: EOF level=info timestamp=2018-08-02T11:03:46.689095Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:03:50 http: TLS handshake error from 10.244.1.1:58686: EOF level=info timestamp=2018-08-02T11:03:57.060039Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:03:57.127266Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:04:00 http: TLS handshake error from 10.244.1.1:58692: EOF level=info timestamp=2018-08-02T11:04:08.645892Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:04:10 http: TLS handshake error from 10.244.1.1:58698: EOF level=info timestamp=2018-08-02T11:04:16.823778Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:04:20 http: TLS handshake error from 10.244.1.1:58704: EOF level=info timestamp=2018-08-02T11:04:27.155185Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:04:27.232530Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:04:30 http: TLS handshake error from 10.244.1.1:58710: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:02:47 http: TLS handshake error from 10.244.0.1:47996: EOF 2018/08/02 11:02:57 http: TLS handshake error from 10.244.0.1:48056: EOF level=info timestamp=2018-08-02T11:02:59.475834Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:03:07 http: TLS handshake error from 10.244.0.1:48116: EOF 2018/08/02 11:03:17 http: TLS handshake error from 10.244.0.1:48176: EOF 2018/08/02 11:03:27 http: TLS handshake error from 10.244.0.1:48236: EOF level=info timestamp=2018-08-02T11:03:29.322882Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:03:37 http: TLS handshake error from 10.244.0.1:48296: EOF 2018/08/02 11:03:47 http: TLS handshake error from 10.244.0.1:48356: EOF 2018/08/02 11:03:57 http: TLS handshake error from 10.244.0.1:48416: EOF level=info timestamp=2018-08-02T11:03:59.417398Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:04:07 http: TLS handshake error from 10.244.0.1:48476: EOF 2018/08/02 11:04:17 http: TLS handshake error from 10.244.0.1:48536: EOF 2018/08/02 11:04:27 http: TLS handshake error from 10.244.0.1:48596: EOF level=info timestamp=2018-08-02T11:04:29.389796Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:52:09.849802Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:09.850074Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:10.924725Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:10.925488Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.226098Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:12.226566Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.440981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi6zc2t\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" level=info timestamp=2018-08-02T10:58:12.899537Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:58:12.900284Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:58:13.016961Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmij5kfj\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmij5kfj" level=info timestamp=2018-08-02T11:01:13.731510Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:01:13.734696Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:01:13.851885Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmim6qtn\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" level=info timestamp=2018-08-02T11:04:14.450734Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:04:14.451604Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:04:32.241477Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:04:32.243061Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:04:32.243467Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5rfqr" level=info timestamp=2018-08-02T11:04:32.323982Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5rfqr, existing: true\n" level=info timestamp=2018-08-02T11:04:32.324122Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:04:32.324195Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:32.324528Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:04:32.327630Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:04:32.327949Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5rfqr" level=info timestamp=2018-08-02T11:04:32.489658Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5rfqr, existing: true\n" level=info timestamp=2018-08-02T11:04:32.489802Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:04:32.489873Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:32.490094Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:04:32.491673Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:04:32.491998Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5rfqr" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:04:12.371615Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" level=info timestamp=2018-08-02T11:04:13.069516Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: true\n" level=info timestamp=2018-08-02T11:04:13.069712Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:04:13.069765Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:13.070192Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.171945Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:04:13.184101Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: true\n" level=info timestamp=2018-08-02T11:04:13.184568Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Failed\n" level=info timestamp=2018-08-02T11:04:13.184666Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:13.184848Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.185701Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:04:13.239756Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: false\n" level=info timestamp=2018-08-02T11:04:13.239951Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:13.240770Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.241565Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-launcher-testvmi5rfqr-pvjhr Pod phase: Running level=info timestamp=2018-08-02T11:04:20.398924Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:04:20.400471Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:04:20.404265Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:04:30.418629Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:04:30.473201Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi5rfqr" level=info timestamp=2018-08-02T11:04:30.474981Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:04:30.475450Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:06:10 http: TLS handshake error from 10.244.1.1:58770: EOF level=info timestamp=2018-08-02T11:06:17.397877Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:06:20 http: TLS handshake error from 10.244.1.1:58776: EOF level=info timestamp=2018-08-02T11:06:27.462319Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:06:27.533084Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:06:30 http: TLS handshake error from 10.244.1.1:58782: EOF level=info timestamp=2018-08-02T11:06:39.137726Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:06:40 http: TLS handshake error from 10.244.1.1:58788: EOF level=info timestamp=2018-08-02T11:06:47.549879Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:06:50 http: TLS handshake error from 10.244.1.1:58794: EOF level=info timestamp=2018-08-02T11:06:57.545715Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:06:57.650877Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:07:00 http: TLS handshake error from 10.244.1.1:58800: EOF level=info timestamp=2018-08-02T11:07:09.221419Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:07:10 http: TLS handshake error from 10.244.1.1:58806: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:05:27 http: TLS handshake error from 10.244.0.1:48956: EOF level=info timestamp=2018-08-02T11:05:29.444985Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:05:37 http: TLS handshake error from 10.244.0.1:49016: EOF 2018/08/02 11:05:47 http: TLS handshake error from 10.244.0.1:49076: EOF 2018/08/02 11:05:57 http: TLS handshake error from 10.244.0.1:49136: EOF level=info timestamp=2018-08-02T11:05:59.349264Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:06:07 http: TLS handshake error from 10.244.0.1:49196: EOF 2018/08/02 11:06:17 http: TLS handshake error from 10.244.0.1:49256: EOF 2018/08/02 11:06:27 http: TLS handshake error from 10.244.0.1:49316: EOF level=info timestamp=2018-08-02T11:06:29.414429Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:06:37 http: TLS handshake error from 10.244.0.1:49376: EOF 2018/08/02 11:06:47 http: TLS handshake error from 10.244.0.1:49436: EOF 2018/08/02 11:06:57 http: TLS handshake error from 10.244.0.1:49496: EOF level=info timestamp=2018-08-02T11:06:59.433525Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:07:07 http: TLS handshake error from 10.244.0.1:49556: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T10:52:09.849802Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:52:09.850074Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi67vmb kind= uid=1a476b95-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:10.924725Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:10.925488Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7h92n kind= uid=8637c0ba-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.226098Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:55:12.226566Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6zc2t kind= uid=86fe5396-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:55:12.440981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi6zc2t\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi6zc2t" level=info timestamp=2018-08-02T10:58:12.899537Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T10:58:12.900284Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij5kfj kind= uid=f2af25c2-9642-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T10:58:13.016961Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmij5kfj\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmij5kfj" level=info timestamp=2018-08-02T11:01:13.731510Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:01:13.734696Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:01:13.851885Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmim6qtn\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" level=info timestamp=2018-08-02T11:04:14.450734Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:04:14.451604Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:04:52.679117Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:04:52.683526Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:04:52.684242Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5rfqr" level=info timestamp=2018-08-02T11:05:13.168032Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5rfqr, existing: true\n" level=info timestamp=2018-08-02T11:05:13.168436Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:05:13.168528Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:05:13.169016Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:05:13.173668Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:05:13.174084Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5rfqr" level=info timestamp=2018-08-02T11:05:54.136141Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5rfqr, existing: true\n" level=info timestamp=2018-08-02T11:05:54.139097Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:05:54.139292Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:05:54.141288Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:05:54.147513Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:05:54.149164Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5rfqr" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:04:13.070192Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.171945Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:04:13.184101Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: true\n" level=info timestamp=2018-08-02T11:04:13.184568Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Failed\n" level=info timestamp=2018-08-02T11:04:13.184666Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:13.184848Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.185701Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:04:13.239756Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: false\n" level=info timestamp=2018-08-02T11:04:13.239951Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:13.240770Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.241565Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:06:56.213501Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: false\n" level=info timestamp=2018-08-02T11:06:56.214244Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:06:56.214654Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:06:56.216444Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-launcher-testvmi5rfqr-pvjhr Pod phase: Running level=info timestamp=2018-08-02T11:04:20.398924Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:04:20.400471Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:04:20.404265Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:04:30.418629Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:04:30.473201Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi5rfqr" level=info timestamp=2018-08-02T11:04:30.474981Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:04:30.475450Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure [180.906 seconds] Configurations /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:44 New VirtualMachineInstance with all supported drives /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:413 should have all the device nodes [It] /root/go/src/kubevirt.io/kubevirt/tests/vmi_configuration_test.go:436 Unexpected Warning event received: testvmi5rfqr,ca2d1af3-9643-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:04:14.104211Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmi5rfqr kind=VirtualMachineInstance uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmi5rfqr-pvjhr" level=info timestamp=2018-08-02T11:04:31.621257Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmi5rfqr kind=VirtualMachineInstance uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmi5rfqr-pvjhr" level=error timestamp=2018-08-02T11:04:31.708535Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmi5rfqr kind=VirtualMachineInstance uid=ca2d1af3-9643-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" • ------------------------------ • [SLOW TEST:5.130 seconds] Subresource Api /root/go/src/kubevirt.io/kubevirt/tests/subresource_api_test.go:37 Rbac Authorization /root/go/src/kubevirt.io/kubevirt/tests/subresource_api_test.go:48 Without permissions /root/go/src/kubevirt.io/kubevirt/tests/subresource_api_test.go:56 should not be able to access subresource endpoint /root/go/src/kubevirt.io/kubevirt/tests/subresource_api_test.go:57 ------------------------------ •• Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:07:10 http: TLS handshake error from 10.244.1.1:58806: EOF level=info timestamp=2018-08-02T11:07:17.703667Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:07:18.975423Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/apis/subresources.kubevirt.io/v1alpha2/namespaces/default/virtualmachineinstances/fake/test proto=HTTP/2.0 statusCode=200 contentLength=0 2018/08/02 11:07:20 http: TLS handshake error from 10.244.1.1:58812: EOF level=info timestamp=2018-08-02T11:07:27.671924Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:07:27.723987Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:07:28.701830Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/apis/subresources.kubevirt.io/v1alpha2/version proto=HTTP/2.0 statusCode=200 contentLength=247 2018/08/02 11:07:30 http: TLS handshake error from 10.244.1.1:58822: EOF level=info timestamp=2018-08-02T11:07:33.168480Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/apis/subresources.kubevirt.io/v1alpha2/version proto=HTTP/2.0 statusCode=200 contentLength=247 level=info timestamp=2018-08-02T11:07:39.375650Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:07:40 http: TLS handshake error from 10.244.1.1:58830: EOF level=info timestamp=2018-08-02T11:07:47.847333Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:07:50 http: TLS handshake error from 10.244.1.1:58836: EOF level=info timestamp=2018-08-02T11:07:57.749536Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:07:57.807571Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:05:59.349264Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:06:07 http: TLS handshake error from 10.244.0.1:49196: EOF 2018/08/02 11:06:17 http: TLS handshake error from 10.244.0.1:49256: EOF 2018/08/02 11:06:27 http: TLS handshake error from 10.244.0.1:49316: EOF level=info timestamp=2018-08-02T11:06:29.414429Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:06:37 http: TLS handshake error from 10.244.0.1:49376: EOF 2018/08/02 11:06:47 http: TLS handshake error from 10.244.0.1:49436: EOF 2018/08/02 11:06:57 http: TLS handshake error from 10.244.0.1:49496: EOF level=info timestamp=2018-08-02T11:06:59.433525Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:07:07 http: TLS handshake error from 10.244.0.1:49556: EOF 2018/08/02 11:07:17 http: TLS handshake error from 10.244.0.1:49616: EOF 2018/08/02 11:07:27 http: TLS handshake error from 10.244.0.1:49678: EOF level=info timestamp=2018-08-02T11:07:29.355337Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:07:37 http: TLS handshake error from 10.244.0.1:49738: EOF 2018/08/02 11:07:47 http: TLS handshake error from 10.244.0.1:49798: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:01:13.734696Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:01:13.851885Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmim6qtn\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" level=info timestamp=2018-08-02T11:04:14.450734Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:04:14.451604Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.462968Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixnnm4 kind= uid=4164ce3b-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:07:34.464804Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixnnm4 kind= uid=4164ce3b-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.488799Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiltgck kind= uid=416a23e2-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:07:34.489002Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiltgck kind= uid=416a23e2-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.545674Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmichbbn kind= uid=416f2d69-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:07:34.545837Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmichbbn kind= uid=416f2d69-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.634650Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:07:34.634803Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.674967Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiltgck\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiltgck" level=info timestamp=2018-08-02T11:07:35.116704Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiltgck\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiltgck" level=info timestamp=2018-08-02T11:07:35.276461Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi98nr2\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi98nr2" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:07:57.771228Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:07:57.774104Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:07:57.774598Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi98nr2" level=info timestamp=2018-08-02T11:07:57.813094Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmixnnm4, existing: true\n" level=info timestamp=2018-08-02T11:07:57.813255Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:07:57.813327Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:07:57.813568Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmixnnm4 kind= uid=4164ce3b-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:07:57.815191Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmixnnm4 kind= uid=4164ce3b-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:07:57.821338Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmixnnm4" level=info timestamp=2018-08-02T11:07:57.936883Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi98nr2, existing: true\n" level=info timestamp=2018-08-02T11:07:57.936973Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:07:57.937004Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:07:57.937111Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:07:57.937960Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:07:57.938115Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4057/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi98nr2" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:04:13.070192Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.171945Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:04:13.184101Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: true\n" level=info timestamp=2018-08-02T11:04:13.184568Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Failed\n" level=info timestamp=2018-08-02T11:04:13.184666Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:13.184848Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.185701Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:04:13.239756Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: false\n" level=info timestamp=2018-08-02T11:04:13.239951Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:13.240770Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.241565Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:06:56.213501Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: false\n" level=info timestamp=2018-08-02T11:06:56.214244Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:06:56.214654Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:06:56.216444Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-launcher-testvmi98nr2-7zckv Pod phase: Running level=info timestamp=2018-08-02T11:07:40.908478Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:07:40.908965Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:07:40.915463Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:07:56.769724Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:07:56.817413Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi98nr2" level=info timestamp=2018-08-02T11:07:56.818180Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:07:56.818402Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmichbbn-xsmc6 Pod phase: Running level=info timestamp=2018-08-02T11:07:41.439287Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:07:41.439786Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:07:41.455162Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:07:57.249294Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:07:57.338335Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmichbbn" level=info timestamp=2018-08-02T11:07:57.346147Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:07:57.346490Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiltgck-xm97b Pod phase: Running level=info timestamp=2018-08-02T11:07:40.747602Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:07:40.748083Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:07:40.755213Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:07:58.071159Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:07:58.132065Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiltgck" level=info timestamp=2018-08-02T11:07:58.133193Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:07:58.133417Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmixnnm4-f9tjb Pod phase: Running level=info timestamp=2018-08-02T11:07:39.383509Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:07:39.387574Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:07:39.390043Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:07:56.119703Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:07:56.170573Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmixnnm4" level=info timestamp=2018-08-02T11:07:56.171526Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:07:56.171734Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:09:40 http: TLS handshake error from 10.244.1.1:58902: EOF level=info timestamp=2018-08-02T11:09:48.586645Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:09:50 http: TLS handshake error from 10.244.1.1:58908: EOF level=info timestamp=2018-08-02T11:09:58.026605Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:09:58.084295Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:10:00 http: TLS handshake error from 10.244.1.1:58914: EOF level=info timestamp=2018-08-02T11:10:08.155912Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:10:08.162305Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:10:09.859678Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:10:10 http: TLS handshake error from 10.244.1.1:58920: EOF level=info timestamp=2018-08-02T11:10:18.737095Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:10:20 http: TLS handshake error from 10.244.1.1:58926: EOF level=info timestamp=2018-08-02T11:10:28.103964Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:10:28.160659Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:10:30 http: TLS handshake error from 10.244.1.1:58932: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:08:59.443920Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:09:07 http: TLS handshake error from 10.244.0.1:50278: EOF 2018/08/02 11:09:17 http: TLS handshake error from 10.244.0.1:50338: EOF 2018/08/02 11:09:27 http: TLS handshake error from 10.244.0.1:50398: EOF level=info timestamp=2018-08-02T11:09:29.432507Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:09:37 http: TLS handshake error from 10.244.0.1:50458: EOF 2018/08/02 11:09:47 http: TLS handshake error from 10.244.0.1:50518: EOF 2018/08/02 11:09:57 http: TLS handshake error from 10.244.0.1:50578: EOF level=info timestamp=2018-08-02T11:09:59.219195Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:09:59.235036Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:09:59.609701Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:10:07 http: TLS handshake error from 10.244.0.1:50638: EOF 2018/08/02 11:10:17 http: TLS handshake error from 10.244.0.1:50698: EOF 2018/08/02 11:10:27 http: TLS handshake error from 10.244.0.1:50758: EOF level=info timestamp=2018-08-02T11:10:29.324632Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:01:13.734696Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:01:13.851885Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmim6qtn\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmim6qtn" level=info timestamp=2018-08-02T11:04:14.450734Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:04:14.451604Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5rfqr kind= uid=ca2d1af3-9643-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.462968Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixnnm4 kind= uid=4164ce3b-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:07:34.464804Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixnnm4 kind= uid=4164ce3b-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.488799Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiltgck kind= uid=416a23e2-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:07:34.489002Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiltgck kind= uid=416a23e2-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.545674Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmichbbn kind= uid=416f2d69-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:07:34.545837Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmichbbn kind= uid=416f2d69-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.634650Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:07:34.634803Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.674967Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiltgck\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiltgck" level=info timestamp=2018-08-02T11:07:35.116704Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiltgck\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiltgck" level=info timestamp=2018-08-02T11:07:35.276461Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi98nr2\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi98nr2" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:09:19.629803Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmixnnm4 kind= uid=4164ce3b-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:09:19.634678Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmixnnm4 kind= uid=4164ce3b-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:09:19.635023Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmixnnm4" level=info timestamp=2018-08-02T11:09:20.426239Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmichbbn, existing: true\n" level=info timestamp=2018-08-02T11:09:20.426488Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:09:20.426564Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:09:20.426870Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmichbbn kind= uid=416f2d69-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:09:20.437079Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmichbbn kind= uid=416f2d69-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:09:20.437518Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmichbbn" level=info timestamp=2018-08-02T11:09:22.155692Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiltgck, existing: true\n" level=info timestamp=2018-08-02T11:09:22.155876Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:09:22.155947Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:09:22.156170Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiltgck kind= uid=416a23e2-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:09:22.162006Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiltgck kind= uid=416a23e2-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:09:22.162472Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiltgck" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:04:13.070192Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.171945Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:04:13.184101Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: true\n" level=info timestamp=2018-08-02T11:04:13.184568Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Failed\n" level=info timestamp=2018-08-02T11:04:13.184666Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:13.184848Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.185701Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind= uid=5e764bf0-9643-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:04:13.239756Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: false\n" level=info timestamp=2018-08-02T11:04:13.239951Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:04:13.240770Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:04:13.241565Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:06:56.213501Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmim6qtn, existing: false\n" level=info timestamp=2018-08-02T11:06:56.214244Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:06:56.214654Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:06:56.216444Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmim6qtn kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-launcher-testvmi98nr2-7zckv Pod phase: Running level=info timestamp=2018-08-02T11:07:40.908478Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:07:40.908965Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:07:40.915463Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:07:56.769724Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:07:56.817413Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi98nr2" level=info timestamp=2018-08-02T11:07:56.818180Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:07:56.818402Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmichbbn-xsmc6 Pod phase: Running level=info timestamp=2018-08-02T11:07:41.439287Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:07:41.439786Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:07:41.455162Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:07:57.249294Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:07:57.338335Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmichbbn" level=info timestamp=2018-08-02T11:07:57.346147Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:07:57.346490Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiltgck-xm97b Pod phase: Running level=info timestamp=2018-08-02T11:07:40.747602Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:07:40.748083Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:07:40.755213Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:07:58.071159Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:07:58.132065Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiltgck" level=info timestamp=2018-08-02T11:07:58.133193Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:07:58.133417Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmixnnm4-f9tjb Pod phase: Running level=info timestamp=2018-08-02T11:07:39.383509Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:07:39.387574Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:07:39.390043Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:07:56.119703Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:07:56.170573Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmixnnm4" level=info timestamp=2018-08-02T11:07:56.171526Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:07:56.171734Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" ------------------------------ • Failure in Spec Setup (BeforeEach) [181.313 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 should be able to reach [BeforeEach] /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table.go:92 the Inbound VirtualMachineInstance /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go:46 Unexpected Warning event received: testvmixnnm4,4164ce3b-9644-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:07:34.240242Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmixnnm4 kind=VirtualMachineInstance uid=4164ce3b-9644-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmixnnm4-f9tjb" level=info timestamp=2018-08-02T11:07:57.062829Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmixnnm4 kind=VirtualMachineInstance uid=4164ce3b-9644-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmixnnm4-f9tjb" level=error timestamp=2018-08-02T11:07:57.164157Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmixnnm4 kind=VirtualMachineInstance uid=4164ce3b-9644-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:09:58.084295Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:10:00 http: TLS handshake error from 10.244.1.1:58914: EOF level=info timestamp=2018-08-02T11:10:08.155912Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:10:08.162305Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:10:09.859678Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:10:10 http: TLS handshake error from 10.244.1.1:58920: EOF level=info timestamp=2018-08-02T11:10:18.737095Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:10:20 http: TLS handshake error from 10.244.1.1:58926: EOF level=info timestamp=2018-08-02T11:10:28.103964Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:10:28.160659Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:10:30 http: TLS handshake error from 10.244.1.1:58932: EOF level=info timestamp=2018-08-02T11:10:39.949926Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:10:40 http: TLS handshake error from 10.244.1.1:58938: EOF level=info timestamp=2018-08-02T11:10:48.800766Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:10:50 http: TLS handshake error from 10.244.1.1:58944: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:09:17 http: TLS handshake error from 10.244.0.1:50338: EOF 2018/08/02 11:09:27 http: TLS handshake error from 10.244.0.1:50398: EOF level=info timestamp=2018-08-02T11:09:29.432507Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:09:37 http: TLS handshake error from 10.244.0.1:50458: EOF 2018/08/02 11:09:47 http: TLS handshake error from 10.244.0.1:50518: EOF 2018/08/02 11:09:57 http: TLS handshake error from 10.244.0.1:50578: EOF level=info timestamp=2018-08-02T11:09:59.219195Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:09:59.235036Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:09:59.609701Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:10:07 http: TLS handshake error from 10.244.0.1:50638: EOF 2018/08/02 11:10:17 http: TLS handshake error from 10.244.0.1:50698: EOF 2018/08/02 11:10:27 http: TLS handshake error from 10.244.0.1:50758: EOF level=info timestamp=2018-08-02T11:10:29.324632Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:10:37 http: TLS handshake error from 10.244.0.1:50818: EOF 2018/08/02 11:10:47 http: TLS handshake error from 10.244.0.1:50878: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:07:34.545837Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmichbbn kind= uid=416f2d69-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.634650Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:07:34.634803Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.674967Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiltgck\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiltgck" level=info timestamp=2018-08-02T11:07:35.116704Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiltgck\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiltgck" level=info timestamp=2018-08-02T11:07:35.276461Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi98nr2\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi98nr2" level=info timestamp=2018-08-02T11:10:36.421031Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:10:36.422999Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.453525Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:10:36.453729Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.513812Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmish4cc kind= uid=ade4218c-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:10:36.514009Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmish4cc kind= uid=ade4218c-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.569249Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicxqrx kind= uid=adedb663-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:10:36.569444Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicxqrx kind= uid=adedb663-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.917150Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmish4cc\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmish4cc" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:10:52.540758Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:10:52.542606Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:10:52.542983Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmihd484" level=info timestamp=2018-08-02T11:10:52.583525Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmihd484, existing: true\n" level=info timestamp=2018-08-02T11:10:52.583678Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:10:52.583748Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:10:52.584073Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:10:52.585642Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:10:52.585969Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmihd484" level=info timestamp=2018-08-02T11:10:52.666574Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmihd484, existing: true\n" level=info timestamp=2018-08-02T11:10:52.666748Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:10:52.666825Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:10:52.667112Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:10:52.668700Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:10:52.669057Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmihd484" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:10:51.412892Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:10:51.413705Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:10:51.413830Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi4j6qk" level=info timestamp=2018-08-02T11:10:51.454284Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi4j6qk, existing: true\n" level=info timestamp=2018-08-02T11:10:51.454437Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:10:51.454553Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:10:51.454755Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:10:51.457947Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:10:51.458375Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi4j6qk" level=info timestamp=2018-08-02T11:10:51.538949Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi4j6qk, existing: true\n" level=info timestamp=2018-08-02T11:10:51.539015Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:10:51.539505Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:10:51.539620Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:10:51.542501Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:10:51.544292Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi4j6qk" Pod name: virt-launcher-testvmi4j6qk-cbx6n Pod phase: Running level=info timestamp=2018-08-02T11:10:40.265492Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:10:40.265781Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:10:40.268202Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:10:50.283258Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:10:50.406245Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi4j6qk" level=info timestamp=2018-08-02T11:10:50.408875Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:10:50.409441Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmicxqrx-2xs2s Pod phase: Running level=info timestamp=2018-08-02T11:10:40.841129Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:10:40.841265Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:10:40.843362Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:10:50.854084Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:10:50.934367Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmicxqrx" level=info timestamp=2018-08-02T11:10:50.936576Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:10:50.937660Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmihd484-fnd27 Pod phase: Running level=info timestamp=2018-08-02T11:10:41.627157Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:10:41.627502Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:10:41.631061Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:10:51.651780Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:10:51.768276Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmihd484" level=info timestamp=2018-08-02T11:10:51.769901Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:10:51.770485Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmish4cc-4ggzs Pod phase: Running level=info timestamp=2018-08-02T11:10:41.255948Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:10:41.256181Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:10:41.258557Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:10:51.268321Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:10:51.334233Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmish4cc" level=info timestamp=2018-08-02T11:10:51.337777Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:10:51.338275Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:12:40 http: TLS handshake error from 10.244.1.1:59010: EOF level=info timestamp=2018-08-02T11:12:49.388306Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:12:50 http: TLS handshake error from 10.244.1.1:59016: EOF level=info timestamp=2018-08-02T11:12:58.444227Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:12:58.516411Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:13:00 http: TLS handshake error from 10.244.1.1:59022: EOF level=info timestamp=2018-08-02T11:13:08.185352Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:13:08.189190Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:13:10.455896Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:13:10 http: TLS handshake error from 10.244.1.1:59028: EOF level=info timestamp=2018-08-02T11:13:19.551185Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:13:20 http: TLS handshake error from 10.244.1.1:59034: EOF level=info timestamp=2018-08-02T11:13:28.523556Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:13:28.615610Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:13:30 http: TLS handshake error from 10.244.1.1:59040: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:11:47 http: TLS handshake error from 10.244.0.1:51238: EOF 2018/08/02 11:11:57 http: TLS handshake error from 10.244.0.1:51298: EOF level=info timestamp=2018-08-02T11:11:59.491432Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:12:07 http: TLS handshake error from 10.244.0.1:51358: EOF 2018/08/02 11:12:17 http: TLS handshake error from 10.244.0.1:51418: EOF 2018/08/02 11:12:27 http: TLS handshake error from 10.244.0.1:51478: EOF level=info timestamp=2018-08-02T11:12:29.558611Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:12:37 http: TLS handshake error from 10.244.0.1:51538: EOF 2018/08/02 11:12:47 http: TLS handshake error from 10.244.0.1:51598: EOF 2018/08/02 11:12:57 http: TLS handshake error from 10.244.0.1:51658: EOF level=info timestamp=2018-08-02T11:12:59.361384Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:13:07 http: TLS handshake error from 10.244.0.1:51718: EOF 2018/08/02 11:13:17 http: TLS handshake error from 10.244.0.1:51778: EOF 2018/08/02 11:13:27 http: TLS handshake error from 10.244.0.1:51838: EOF level=info timestamp=2018-08-02T11:13:29.375029Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:07:34.545837Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmichbbn kind= uid=416f2d69-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.634650Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:07:34.634803Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi98nr2 kind= uid=417a3d08-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:07:34.674967Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiltgck\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiltgck" level=info timestamp=2018-08-02T11:07:35.116704Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiltgck\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiltgck" level=info timestamp=2018-08-02T11:07:35.276461Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi98nr2\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi98nr2" level=info timestamp=2018-08-02T11:10:36.421031Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:10:36.422999Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.453525Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:10:36.453729Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.513812Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmish4cc kind= uid=ade4218c-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:10:36.514009Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmish4cc kind= uid=ade4218c-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.569249Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicxqrx kind= uid=adedb663-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:10:36.569444Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicxqrx kind= uid=adedb663-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.917150Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmish4cc\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmish4cc" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:12:14.488863Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:12:14.500167Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:12:14.500915Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmihd484" level=info timestamp=2018-08-02T11:12:15.275588Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmish4cc, existing: true\n" level=info timestamp=2018-08-02T11:12:15.275766Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:12:15.275838Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:12:15.276059Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmish4cc kind= uid=ade4218c-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:12:15.278183Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmish4cc kind= uid=ade4218c-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:12:15.278628Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmish4cc" level=info timestamp=2018-08-02T11:13:36.422770Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmihd484, existing: true\n" level=info timestamp=2018-08-02T11:13:36.423581Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:13:36.423687Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:13:36.424639Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:13:36.436469Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind= uid=add88250-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:13:36.437220Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmihd484" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:12:13.421007Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:12:13.449503Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:12:13.456749Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi4j6qk" level=info timestamp=2018-08-02T11:12:15.434910Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmicxqrx, existing: true\n" level=info timestamp=2018-08-02T11:12:15.435789Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:12:15.435901Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:12:15.437354Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmicxqrx kind= uid=adedb663-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:12:15.447628Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmicxqrx kind= uid=adedb663-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:12:15.450499Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmicxqrx" level=info timestamp=2018-08-02T11:13:35.378259Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi4j6qk, existing: true\n" level=info timestamp=2018-08-02T11:13:35.378851Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:13:35.378974Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:13:35.379612Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:13:35.388393Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind= uid=adde3270-9644-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:13:35.389279Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi4j6qk" Pod name: virt-launcher-testvmi4j6qk-cbx6n Pod phase: Running level=info timestamp=2018-08-02T11:10:40.265492Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:10:40.265781Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:10:40.268202Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:10:50.283258Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:10:50.406245Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi4j6qk" level=info timestamp=2018-08-02T11:10:50.408875Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:10:50.409441Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmicxqrx-2xs2s Pod phase: Running level=info timestamp=2018-08-02T11:10:40.841129Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:10:40.841265Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:10:40.843362Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:10:50.854084Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:10:50.934367Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmicxqrx" level=info timestamp=2018-08-02T11:10:50.936576Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:10:50.937660Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmihd484-fnd27 Pod phase: Running level=info timestamp=2018-08-02T11:10:41.627157Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:10:41.627502Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:10:41.631061Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:10:51.651780Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:10:51.768276Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmihd484" level=info timestamp=2018-08-02T11:10:51.769901Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:10:51.770485Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmish4cc-4ggzs Pod phase: Running level=info timestamp=2018-08-02T11:10:41.255948Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:10:41.256181Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:10:41.258557Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:10:51.268321Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:10:51.334233Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmish4cc" level=info timestamp=2018-08-02T11:10:51.337777Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:10:51.338275Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [181.987 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 should be able to reach [BeforeEach] /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table.go:92 the Inbound VirtualMachineInstance with pod network connectivity explicitly set /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go:46 Unexpected Warning event received: testvmihd484,add88250-9644-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:10:36.375030Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmihd484 kind=VirtualMachineInstance uid=add88250-9644-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmihd484-fnd27" level=info timestamp=2018-08-02T11:10:51.992191Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmihd484 kind=VirtualMachineInstance uid=add88250-9644-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmihd484-fnd27" level=error timestamp=2018-08-02T11:10:52.026104Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmihd484 kind=VirtualMachineInstance uid=add88250-9644-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:12:58.516411Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:13:00 http: TLS handshake error from 10.244.1.1:59022: EOF level=info timestamp=2018-08-02T11:13:08.185352Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:13:08.189190Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:13:10.455896Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:13:10 http: TLS handshake error from 10.244.1.1:59028: EOF level=info timestamp=2018-08-02T11:13:19.551185Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:13:20 http: TLS handshake error from 10.244.1.1:59034: EOF level=info timestamp=2018-08-02T11:13:28.523556Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:13:28.615610Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:13:30 http: TLS handshake error from 10.244.1.1:59040: EOF 2018/08/02 11:13:40 http: TLS handshake error from 10.244.1.1:59046: EOF level=info timestamp=2018-08-02T11:13:40.515769Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:13:49.635851Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:13:50 http: TLS handshake error from 10.244.1.1:59052: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:11:59.491432Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:12:07 http: TLS handshake error from 10.244.0.1:51358: EOF 2018/08/02 11:12:17 http: TLS handshake error from 10.244.0.1:51418: EOF 2018/08/02 11:12:27 http: TLS handshake error from 10.244.0.1:51478: EOF level=info timestamp=2018-08-02T11:12:29.558611Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:12:37 http: TLS handshake error from 10.244.0.1:51538: EOF 2018/08/02 11:12:47 http: TLS handshake error from 10.244.0.1:51598: EOF 2018/08/02 11:12:57 http: TLS handshake error from 10.244.0.1:51658: EOF level=info timestamp=2018-08-02T11:12:59.361384Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:13:07 http: TLS handshake error from 10.244.0.1:51718: EOF 2018/08/02 11:13:17 http: TLS handshake error from 10.244.0.1:51778: EOF 2018/08/02 11:13:27 http: TLS handshake error from 10.244.0.1:51838: EOF level=info timestamp=2018-08-02T11:13:29.375029Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:13:37 http: TLS handshake error from 10.244.0.1:51898: EOF 2018/08/02 11:13:47 http: TLS handshake error from 10.244.0.1:51958: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:10:36.514009Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmish4cc kind= uid=ade4218c-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.569249Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicxqrx kind= uid=adedb663-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:10:36.569444Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicxqrx kind= uid=adedb663-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.917150Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmish4cc\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmish4cc" level=info timestamp=2018-08-02T11:13:38.401437Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.409299Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.416759Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi87smp kind= uid=1a561116-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.417113Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi87smp kind= uid=1a561116-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.447145Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.447492Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.544296Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi59pgq kind= uid=1a5ddf79-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.544606Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi59pgq kind= uid=1a5ddf79-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.723088Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi87smp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi87smp" level=info timestamp=2018-08-02T11:13:38.817606Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi87smp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi87smp" level=info timestamp=2018-08-02T11:13:39.234435Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi59pgq\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi59pgq" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:13:54.473088Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:13:54.476002Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:13:54.476352Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmimjq9c" level=info timestamp=2018-08-02T11:13:54.516880Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmimjq9c, existing: true\n" level=info timestamp=2018-08-02T11:13:54.517041Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:13:54.517110Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:13:54.517295Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:13:54.519176Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:13:54.520960Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmimjq9c" level=info timestamp=2018-08-02T11:13:54.601521Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmimjq9c, existing: true\n" level=info timestamp=2018-08-02T11:13:54.602733Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:13:54.602829Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:13:54.603253Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:13:54.606878Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:13:54.607249Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmimjq9c" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:13:52.599334Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:13:52.600084Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:13:52.600219Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmizwmvz" level=info timestamp=2018-08-02T11:13:52.920642Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmizwmvz, existing: true\n" level=info timestamp=2018-08-02T11:13:52.920812Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:13:52.920908Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:13:52.921256Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:13:52.923117Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:13:52.923404Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmizwmvz" level=info timestamp=2018-08-02T11:13:53.563911Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmizwmvz, existing: true\n" level=info timestamp=2018-08-02T11:13:53.564143Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:13:53.564217Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:13:53.564404Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:13:53.566927Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:13:53.567670Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmizwmvz" Pod name: virt-launcher-testvmi59pgq-8t9nj Pod phase: Running level=info timestamp=2018-08-02T11:13:43.276054Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:13:43.277751Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:13:43.280938Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:13:54.542442Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:13:54.569054Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi59pgq" level=info timestamp=2018-08-02T11:13:54.569741Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:13:54.569911Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmi87smp-h2jhs Pod phase: Running level=info timestamp=2018-08-02T11:13:44.920352Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:13:44.920499Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:13:44.922154Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" Pod name: virt-launcher-testvmimjq9c-2v222 Pod phase: Running level=info timestamp=2018-08-02T11:13:42.905945Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:13:42.906148Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:13:42.908984Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:13:53.710442Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:13:53.833166Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmimjq9c" level=info timestamp=2018-08-02T11:13:53.838132Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:13:53.838635Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmizwmvz-fllm6 Pod phase: Running level=info timestamp=2018-08-02T11:13:41.115592Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:13:41.115843Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:13:41.117345Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:13:51.126183Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:13:51.249038Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmizwmvz" level=info timestamp=2018-08-02T11:13:51.252377Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:13:51.252812Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:15:40.989719Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:15:50.368035Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:15:50 http: TLS handshake error from 10.244.1.1:59124: EOF level=info timestamp=2018-08-02T11:15:58.899730Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:15:59.035112Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:16:00 http: TLS handshake error from 10.244.1.1:59130: EOF level=info timestamp=2018-08-02T11:16:08.446208Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:16:08.451352Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:16:10 http: TLS handshake error from 10.244.1.1:59136: EOF level=info timestamp=2018-08-02T11:16:11.128269Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:16:20 http: TLS handshake error from 10.244.1.1:59142: EOF level=info timestamp=2018-08-02T11:16:20.505230Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:16:29.013067Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:16:29.105492Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:16:30 http: TLS handshake error from 10.244.1.1:59148: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:14:57 http: TLS handshake error from 10.244.0.1:52378: EOF level=info timestamp=2018-08-02T11:14:59.363940Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:15:07 http: TLS handshake error from 10.244.0.1:52438: EOF 2018/08/02 11:15:17 http: TLS handshake error from 10.244.0.1:52498: EOF 2018/08/02 11:15:27 http: TLS handshake error from 10.244.0.1:52558: EOF level=info timestamp=2018-08-02T11:15:29.390904Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:15:37 http: TLS handshake error from 10.244.0.1:52618: EOF 2018/08/02 11:15:47 http: TLS handshake error from 10.244.0.1:52678: EOF 2018/08/02 11:15:57 http: TLS handshake error from 10.244.0.1:52738: EOF level=info timestamp=2018-08-02T11:15:59.476739Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:16:07 http: TLS handshake error from 10.244.0.1:52798: EOF 2018/08/02 11:16:17 http: TLS handshake error from 10.244.0.1:52858: EOF 2018/08/02 11:16:27 http: TLS handshake error from 10.244.0.1:52918: EOF level=info timestamp=2018-08-02T11:16:29.500192Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:16:37 http: TLS handshake error from 10.244.0.1:52978: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:10:36.514009Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmish4cc kind= uid=ade4218c-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.569249Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicxqrx kind= uid=adedb663-9644-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:10:36.569444Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicxqrx kind= uid=adedb663-9644-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:10:36.917150Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmish4cc\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmish4cc" level=info timestamp=2018-08-02T11:13:38.401437Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.409299Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.416759Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi87smp kind= uid=1a561116-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.417113Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi87smp kind= uid=1a561116-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.447145Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.447492Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.544296Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi59pgq kind= uid=1a5ddf79-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.544606Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi59pgq kind= uid=1a5ddf79-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.723088Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi87smp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi87smp" level=info timestamp=2018-08-02T11:13:38.817606Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi87smp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi87smp" level=info timestamp=2018-08-02T11:13:39.234435Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi59pgq\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi59pgq" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:15:18.824931Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi87smp" level=info timestamp=2018-08-02T11:16:20.279862Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmihd484, existing: false\n" level=info timestamp=2018-08-02T11:16:20.280631Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:16:20.281021Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:16:20.281625Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmihd484 kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:16:21.045546Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmish4cc, existing: false\n" level=info timestamp=2018-08-02T11:16:21.045708Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:16:21.045863Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmish4cc kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:16:21.046123Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmish4cc kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:16:38.342295Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmimjq9c, existing: true\n" level=info timestamp=2018-08-02T11:16:38.343474Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:16:38.343604Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:16:38.344264Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:16:38.350682Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind= uid=1a530462-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:16:38.351470Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmimjq9c" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:15:14.249932Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:15:14.250039Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:15:14.250609Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:15:14.256925Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:15:14.262550Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmizwmvz" level=info timestamp=2018-08-02T11:16:19.231742Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi4j6qk, existing: false\n" level=info timestamp=2018-08-02T11:16:19.232621Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:16:19.233522Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:16:19.234790Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmi4j6qk kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:16:36.183957Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmizwmvz, existing: true\n" level=info timestamp=2018-08-02T11:16:36.184851Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:16:36.185035Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:16:36.185330Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:16:36.188208Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:16:36.188708Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmizwmvz" Pod name: virt-launcher-testvmi59pgq-8t9nj Pod phase: Running level=info timestamp=2018-08-02T11:13:43.276054Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:13:43.277751Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:13:43.280938Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:13:54.542442Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:13:54.569054Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi59pgq" level=info timestamp=2018-08-02T11:13:54.569741Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:13:54.569911Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmi87smp-h2jhs Pod phase: Running level=info timestamp=2018-08-02T11:13:44.920352Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:13:44.920499Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:13:44.922154Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:13:54.939308Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:13:55.028798Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi87smp" level=info timestamp=2018-08-02T11:13:55.031603Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:13:55.032043Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmimjq9c-2v222 Pod phase: Running level=info timestamp=2018-08-02T11:13:42.905945Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:13:42.906148Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:13:42.908984Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:13:53.710442Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:13:53.833166Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmimjq9c" level=info timestamp=2018-08-02T11:13:53.838132Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:13:53.838635Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmizwmvz-fllm6 Pod phase: Running level=info timestamp=2018-08-02T11:13:41.115592Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:13:41.115843Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:13:41.117345Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:13:51.126183Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:13:51.249038Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmizwmvz" level=info timestamp=2018-08-02T11:13:51.252377Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:13:51.252812Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [182.036 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 should be able to reach [BeforeEach] /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table.go:92 the Inbound VirtualMachineInstance with custom MAC address /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go:46 Unexpected Warning event received: testvmimjq9c,1a530462-9645-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:13:38.278508Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmimjq9c kind=VirtualMachineInstance uid=1a530462-9645-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmimjq9c-2v222" level=info timestamp=2018-08-02T11:13:53.921243Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmimjq9c kind=VirtualMachineInstance uid=1a530462-9645-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmimjq9c-2v222" level=error timestamp=2018-08-02T11:13:53.938571Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmimjq9c kind=VirtualMachineInstance uid=1a530462-9645-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:15:59.035112Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:16:00 http: TLS handshake error from 10.244.1.1:59130: EOF level=info timestamp=2018-08-02T11:16:08.446208Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:16:08.451352Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:16:10 http: TLS handshake error from 10.244.1.1:59136: EOF level=info timestamp=2018-08-02T11:16:11.128269Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:16:20 http: TLS handshake error from 10.244.1.1:59142: EOF level=info timestamp=2018-08-02T11:16:20.505230Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:16:29.013067Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:16:29.105492Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:16:30 http: TLS handshake error from 10.244.1.1:59148: EOF 2018/08/02 11:16:40 http: TLS handshake error from 10.244.1.1:59154: EOF level=info timestamp=2018-08-02T11:16:41.218899Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:16:50 http: TLS handshake error from 10.244.1.1:59160: EOF level=info timestamp=2018-08-02T11:16:50.698831Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:14:59.363940Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:15:07 http: TLS handshake error from 10.244.0.1:52438: EOF 2018/08/02 11:15:17 http: TLS handshake error from 10.244.0.1:52498: EOF 2018/08/02 11:15:27 http: TLS handshake error from 10.244.0.1:52558: EOF level=info timestamp=2018-08-02T11:15:29.390904Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:15:37 http: TLS handshake error from 10.244.0.1:52618: EOF 2018/08/02 11:15:47 http: TLS handshake error from 10.244.0.1:52678: EOF 2018/08/02 11:15:57 http: TLS handshake error from 10.244.0.1:52738: EOF level=info timestamp=2018-08-02T11:15:59.476739Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:16:07 http: TLS handshake error from 10.244.0.1:52798: EOF 2018/08/02 11:16:17 http: TLS handshake error from 10.244.0.1:52858: EOF 2018/08/02 11:16:27 http: TLS handshake error from 10.244.0.1:52918: EOF level=info timestamp=2018-08-02T11:16:29.500192Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:16:37 http: TLS handshake error from 10.244.0.1:52978: EOF 2018/08/02 11:16:47 http: TLS handshake error from 10.244.0.1:53038: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:13:38.447145Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.447492Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.544296Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi59pgq kind= uid=1a5ddf79-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.544606Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi59pgq kind= uid=1a5ddf79-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.723088Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi87smp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi87smp" level=info timestamp=2018-08-02T11:13:38.817606Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi87smp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi87smp" level=info timestamp=2018-08-02T11:13:39.234435Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi59pgq\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi59pgq" level=info timestamp=2018-08-02T11:16:40.436965Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.441462Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:16:40.463804Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisswgj kind= uid=86d6ab0f-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.464175Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisswgj kind= uid=86d6ab0f-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:16:40.494814Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivhgrp kind= uid=86da6001-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.495021Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivhgrp kind= uid=86da6001-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:16:40.553319Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijsz2f kind= uid=86df6cc1-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.556030Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijsz2f kind= uid=86df6cc1-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:16:40.016869Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:16:40.017040Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmi87smp kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:16:40.017219Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmi87smp kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:16:40.045205Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmimjq9c, existing: false\n" level=info timestamp=2018-08-02T11:16:40.045335Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:16:40.045961Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:16:40.046145Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:16:40.415528Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi59pgq, existing: false\n" level=info timestamp=2018-08-02T11:16:40.415746Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:16:40.415898Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmi59pgq kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:16:40.416802Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmi59pgq kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:16:40.745717Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi87smp, existing: false\n" level=info timestamp=2018-08-02T11:16:40.745902Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:16:40.746317Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmi87smp kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:16:40.746620Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmi87smp kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:16:55.151235Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:16:55.152768Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:16:55.152921Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmin7v9l" level=info timestamp=2018-08-02T11:16:55.193154Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmin7v9l, existing: true\n" level=info timestamp=2018-08-02T11:16:55.193248Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:16:55.193275Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:16:55.193360Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:16:55.194010Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:16:55.194575Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmin7v9l" level=info timestamp=2018-08-02T11:16:55.274951Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmin7v9l, existing: true\n" level=info timestamp=2018-08-02T11:16:55.275020Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:16:55.275991Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:16:55.276311Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:16:55.277874Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:16:55.278257Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmin7v9l" Pod name: virt-launcher-testvmijsz2f-zkc44 Pod phase: Running level=info timestamp=2018-08-02T11:16:45.170175Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:16:45.170403Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:16:45.171978Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:16:55.996801Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:16:56.033737Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmijsz2f" level=info timestamp=2018-08-02T11:16:56.034737Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:16:56.034943Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmin7v9l-zxqdg Pod phase: Running level=info timestamp=2018-08-02T11:16:43.413039Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:16:43.413516Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:16:43.414883Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:16:53.421875Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:16:53.503772Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmin7v9l" level=info timestamp=2018-08-02T11:16:53.505875Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:16:53.506485Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmisswgj-xj2nn Pod phase: Running level=info timestamp=2018-08-02T11:16:45.460290Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:16:45.464890Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:16:45.466388Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:16:56.214167Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:16:56.240238Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmisswgj" level=info timestamp=2018-08-02T11:16:56.241876Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:16:56.242048Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmivhgrp-zfd7p Pod phase: Running level=info timestamp=2018-08-02T11:16:46.078201Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:16:46.078324Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:16:46.079847Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:16:56.282793Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:16:56.324128Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmivhgrp" level=info timestamp=2018-08-02T11:16:56.325008Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:16:56.325191Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:18:40 http: TLS handshake error from 10.244.1.1:59226: EOF level=info timestamp=2018-08-02T11:18:41.723430Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:18:50 http: TLS handshake error from 10.244.1.1:59232: EOF level=info timestamp=2018-08-02T11:18:51.303736Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:18:59.426781Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:18:59.523335Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:19:00 http: TLS handshake error from 10.244.1.1:59238: EOF 2018/08/02 11:19:10 http: TLS handshake error from 10.244.1.1:59244: EOF level=info timestamp=2018-08-02T11:19:11.821770Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:19:20 http: TLS handshake error from 10.244.1.1:59250: EOF level=info timestamp=2018-08-02T11:19:21.446728Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:19:29.539172Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:19:29.616456Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:19:30 http: TLS handshake error from 10.244.1.1:59256: EOF 2018/08/02 11:19:40 http: TLS handshake error from 10.244.1.1:59262: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:17:57 http: TLS handshake error from 10.244.0.1:53458: EOF level=info timestamp=2018-08-02T11:17:59.382651Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:18:07 http: TLS handshake error from 10.244.0.1:53518: EOF 2018/08/02 11:18:17 http: TLS handshake error from 10.244.0.1:53578: EOF 2018/08/02 11:18:27 http: TLS handshake error from 10.244.0.1:53638: EOF level=info timestamp=2018-08-02T11:18:29.444282Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:18:37 http: TLS handshake error from 10.244.0.1:53698: EOF 2018/08/02 11:18:47 http: TLS handshake error from 10.244.0.1:53758: EOF 2018/08/02 11:18:57 http: TLS handshake error from 10.244.0.1:53818: EOF level=info timestamp=2018-08-02T11:18:59.481272Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:19:07 http: TLS handshake error from 10.244.0.1:53878: EOF 2018/08/02 11:19:17 http: TLS handshake error from 10.244.0.1:53938: EOF 2018/08/02 11:19:27 http: TLS handshake error from 10.244.0.1:53998: EOF level=info timestamp=2018-08-02T11:19:29.423913Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:19:37 http: TLS handshake error from 10.244.0.1:54058: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:13:38.447145Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.447492Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizwmvz kind= uid=1a58a10c-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.544296Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi59pgq kind= uid=1a5ddf79-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:13:38.544606Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi59pgq kind= uid=1a5ddf79-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:13:38.723088Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi87smp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi87smp" level=info timestamp=2018-08-02T11:13:38.817606Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi87smp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi87smp" level=info timestamp=2018-08-02T11:13:39.234435Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi59pgq\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi59pgq" level=info timestamp=2018-08-02T11:16:40.436965Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.441462Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:16:40.463804Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisswgj kind= uid=86d6ab0f-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.464175Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisswgj kind= uid=86d6ab0f-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:16:40.494814Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivhgrp kind= uid=86da6001-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.495021Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivhgrp kind= uid=86da6001-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:16:40.553319Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijsz2f kind= uid=86df6cc1-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.556030Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijsz2f kind= uid=86df6cc1-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:18:20.101348Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:18:20.101524Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:18:20.101959Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmisswgj kind= uid=86d6ab0f-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:18:20.105445Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmisswgj kind= uid=86d6ab0f-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:18:20.105910Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmisswgj" level=info timestamp=2018-08-02T11:18:20.207620Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmivhgrp, existing: true\n" level=info timestamp=2018-08-02T11:18:20.207805Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:18:20.207877Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:18:20.208146Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivhgrp kind= uid=86da6001-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:18:20.210123Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivhgrp kind= uid=86da6001-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:18:20.210552Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivhgrp" level=info timestamp=2018-08-02T11:19:22.193624Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmimjq9c, existing: false\n" level=info timestamp=2018-08-02T11:19:22.194286Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:19:22.194704Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:19:22.195207Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmimjq9c kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:18:17.095986Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:18:17.097277Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:18:17.097661Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:18:17.109957Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:18:17.110830Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmin7v9l" level=info timestamp=2018-08-02T11:19:20.033232Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmizwmvz, existing: false\n" level=info timestamp=2018-08-02T11:19:20.034746Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:19:20.035772Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:19:20.036925Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmizwmvz kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:19:39.031891Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmin7v9l, existing: true\n" level=info timestamp=2018-08-02T11:19:39.032818Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:19:39.032910Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:19:39.033265Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:19:39.047702Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind= uid=86d2bdb3-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:19:39.052430Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmin7v9l" Pod name: virt-launcher-testvmijsz2f-zkc44 Pod phase: Running level=info timestamp=2018-08-02T11:16:45.170175Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:16:45.170403Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:16:45.171978Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:16:55.996801Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:16:56.033737Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmijsz2f" level=info timestamp=2018-08-02T11:16:56.034737Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:16:56.034943Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmin7v9l-zxqdg Pod phase: Running level=info timestamp=2018-08-02T11:16:43.413039Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:16:43.413516Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:16:43.414883Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:16:53.421875Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:16:53.503772Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmin7v9l" level=info timestamp=2018-08-02T11:16:53.505875Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:16:53.506485Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmisswgj-xj2nn Pod phase: Running level=info timestamp=2018-08-02T11:16:45.460290Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:16:45.464890Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:16:45.466388Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:16:56.214167Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:16:56.240238Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmisswgj" level=info timestamp=2018-08-02T11:16:56.241876Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:16:56.242048Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmivhgrp-zfd7p Pod phase: Running level=info timestamp=2018-08-02T11:16:46.078201Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:16:46.078324Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:16:46.079847Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:16:56.282793Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:16:56.324128Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmivhgrp" level=info timestamp=2018-08-02T11:16:56.325008Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:16:56.325191Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [181.845 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 should be able to reach [BeforeEach] /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table.go:92 the internet /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go:46 Unexpected Warning event received: testvmin7v9l,86d2bdb3-9645-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:16:40.289838Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmin7v9l kind=VirtualMachineInstance uid=86d2bdb3-9645-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmin7v9l-zxqdg" level=info timestamp=2018-08-02T11:16:55.557318Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmin7v9l kind=VirtualMachineInstance uid=86d2bdb3-9645-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmin7v9l-zxqdg" level=error timestamp=2018-08-02T11:16:55.635380Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmin7v9l kind=VirtualMachineInstance uid=86d2bdb3-9645-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:18:51.303736Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:18:59.426781Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:18:59.523335Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:19:00 http: TLS handshake error from 10.244.1.1:59238: EOF 2018/08/02 11:19:10 http: TLS handshake error from 10.244.1.1:59244: EOF level=info timestamp=2018-08-02T11:19:11.821770Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:19:20 http: TLS handshake error from 10.244.1.1:59250: EOF level=info timestamp=2018-08-02T11:19:21.446728Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:19:29.539172Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:19:29.616456Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:19:30 http: TLS handshake error from 10.244.1.1:59256: EOF 2018/08/02 11:19:40 http: TLS handshake error from 10.244.1.1:59262: EOF level=info timestamp=2018-08-02T11:19:41.875576Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:19:50 http: TLS handshake error from 10.244.1.1:59268: EOF level=info timestamp=2018-08-02T11:19:51.519485Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:18:07 http: TLS handshake error from 10.244.0.1:53518: EOF 2018/08/02 11:18:17 http: TLS handshake error from 10.244.0.1:53578: EOF 2018/08/02 11:18:27 http: TLS handshake error from 10.244.0.1:53638: EOF level=info timestamp=2018-08-02T11:18:29.444282Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:18:37 http: TLS handshake error from 10.244.0.1:53698: EOF 2018/08/02 11:18:47 http: TLS handshake error from 10.244.0.1:53758: EOF 2018/08/02 11:18:57 http: TLS handshake error from 10.244.0.1:53818: EOF level=info timestamp=2018-08-02T11:18:59.481272Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:19:07 http: TLS handshake error from 10.244.0.1:53878: EOF 2018/08/02 11:19:17 http: TLS handshake error from 10.244.0.1:53938: EOF 2018/08/02 11:19:27 http: TLS handshake error from 10.244.0.1:53998: EOF level=info timestamp=2018-08-02T11:19:29.423913Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:19:37 http: TLS handshake error from 10.244.0.1:54058: EOF 2018/08/02 11:19:47 http: TLS handshake error from 10.244.0.1:54118: EOF 2018/08/02 11:19:57 http: TLS handshake error from 10.244.0.1:54178: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:16:40.464175Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisswgj kind= uid=86d6ab0f-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:16:40.494814Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivhgrp kind= uid=86da6001-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.495021Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivhgrp kind= uid=86da6001-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:16:40.553319Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijsz2f kind= uid=86df6cc1-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.556030Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijsz2f kind= uid=86df6cc1-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.311302Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib2q8c kind= uid=f338fdfd-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.314298Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib2q8c kind= uid=f338fdfd-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.351285Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiqd528 kind= uid=f33fa02b-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.351626Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiqd528 kind= uid=f33fa02b-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.403850Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.404211Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.482287Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6ncn kind= uid=f34cbe60-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.482544Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6ncn kind= uid=f34cbe60-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.681188Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmib2q8c\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmib2q8c" level=info timestamp=2018-08-02T11:19:42.931592Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmib2q8c\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmib2q8c" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:19:59.101220Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmib2q8c kind= uid=f338fdfd-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:19:59.102774Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmib2q8c kind= uid=f338fdfd-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:19:59.103119Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmib2q8c" level=info timestamp=2018-08-02T11:19:59.183666Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmib2q8c, existing: true\n" level=info timestamp=2018-08-02T11:19:59.183778Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:19:59.183827Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:19:59.184013Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmib2q8c kind= uid=f338fdfd-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:19:59.184937Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmib2q8c kind= uid=f338fdfd-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:19:59.185174Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmib2q8c" level=info timestamp=2018-08-02T11:19:59.345662Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmib2q8c, existing: true\n" level=info timestamp=2018-08-02T11:19:59.345808Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:19:59.345918Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:19:59.346145Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmib2q8c kind= uid=f338fdfd-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:19:59.347960Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmib2q8c kind= uid=f338fdfd-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:19:59.348324Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmib2q8c" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:19:57.315704Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:19:57.317585Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:19:57.317913Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmib4bhx" level=info timestamp=2018-08-02T11:19:57.638427Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmib4bhx, existing: true\n" level=info timestamp=2018-08-02T11:19:57.638621Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:19:57.638690Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:19:57.639303Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:19:57.641344Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:19:57.641858Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmib4bhx" level=info timestamp=2018-08-02T11:19:58.282956Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmib4bhx, existing: true\n" level=info timestamp=2018-08-02T11:19:58.283303Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:19:58.283387Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:19:58.283592Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:19:58.286637Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:19:58.286970Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmib4bhx" Pod name: virt-launcher-testvmib2q8c-zgtz5 Pod phase: Running level=info timestamp=2018-08-02T11:19:47.359464Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:19:47.359685Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:19:47.361643Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:19:57.755818Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:19:57.818585Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmib2q8c" level=info timestamp=2018-08-02T11:19:57.820100Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:19:57.820584Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmib4bhx-ktwl2 Pod phase: Running level=info timestamp=2018-08-02T11:19:44.719976Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:19:44.720284Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:19:44.721570Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:19:54.728785Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:19:54.925252Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmib4bhx" level=info timestamp=2018-08-02T11:19:54.927108Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:19:54.927418Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmil6ncn-fpqxp Pod phase: Running level=info timestamp=2018-08-02T11:19:48.011509Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:19:48.022515Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:19:48.024158Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:19:58.398251Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:19:58.439354Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmil6ncn" level=info timestamp=2018-08-02T11:19:58.440546Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:19:58.440765Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiqd528-k7cx5 Pod phase: Running level=info timestamp=2018-08-02T11:19:48.160668Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:19:48.161607Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:19:48.163145Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:19:58.838877Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:19:58.923228Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiqd528" level=info timestamp=2018-08-02T11:19:58.924325Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:19:58.924618Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:21:42.237333Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:21:50 http: TLS handshake error from 10.244.1.1:59340: EOF level=info timestamp=2018-08-02T11:21:52.110105Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:21:59.972940Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:22:00.070891Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:22:00 http: TLS handshake error from 10.244.1.1:59346: EOF 2018/08/02 11:22:10 http: TLS handshake error from 10.244.1.1:59352: EOF level=info timestamp=2018-08-02T11:22:12.324539Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:22:20 http: TLS handshake error from 10.244.1.1:59358: EOF level=info timestamp=2018-08-02T11:22:22.242340Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:22:30.042829Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:22:30.142515Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:22:30 http: TLS handshake error from 10.244.1.1:59364: EOF 2018/08/02 11:22:40 http: TLS handshake error from 10.244.1.1:59370: EOF level=info timestamp=2018-08-02T11:22:42.420114Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:20:57 http: TLS handshake error from 10.244.0.1:54538: EOF level=info timestamp=2018-08-02T11:20:59.442878Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:21:07 http: TLS handshake error from 10.244.0.1:54598: EOF 2018/08/02 11:21:17 http: TLS handshake error from 10.244.0.1:54658: EOF 2018/08/02 11:21:27 http: TLS handshake error from 10.244.0.1:54718: EOF level=info timestamp=2018-08-02T11:21:29.362518Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:21:37 http: TLS handshake error from 10.244.0.1:54778: EOF 2018/08/02 11:21:47 http: TLS handshake error from 10.244.0.1:54838: EOF 2018/08/02 11:21:57 http: TLS handshake error from 10.244.0.1:54898: EOF level=info timestamp=2018-08-02T11:21:59.448956Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:22:07 http: TLS handshake error from 10.244.0.1:54958: EOF 2018/08/02 11:22:17 http: TLS handshake error from 10.244.0.1:55018: EOF 2018/08/02 11:22:27 http: TLS handshake error from 10.244.0.1:55078: EOF level=info timestamp=2018-08-02T11:22:29.440252Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:22:37 http: TLS handshake error from 10.244.0.1:55138: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:16:40.464175Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisswgj kind= uid=86d6ab0f-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:16:40.494814Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivhgrp kind= uid=86da6001-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.495021Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivhgrp kind= uid=86da6001-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:16:40.553319Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijsz2f kind= uid=86df6cc1-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:16:40.556030Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijsz2f kind= uid=86df6cc1-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.311302Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib2q8c kind= uid=f338fdfd-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.314298Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib2q8c kind= uid=f338fdfd-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.351285Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiqd528 kind= uid=f33fa02b-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.351626Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiqd528 kind= uid=f33fa02b-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.403850Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.404211Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.482287Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6ncn kind= uid=f34cbe60-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.482544Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6ncn kind= uid=f34cbe60-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.681188Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmib2q8c\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmib2q8c" level=info timestamp=2018-08-02T11:19:42.931592Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmib2q8c\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmib2q8c" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:21:21.898869Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:21:21.898945Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:21:21.899256Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmil6ncn kind= uid=f34cbe60-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:21:21.902890Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmil6ncn kind= uid=f34cbe60-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:21:21.903299Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmil6ncn" level=info timestamp=2018-08-02T11:21:21.989624Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiqd528, existing: true\n" level=info timestamp=2018-08-02T11:21:21.989795Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:21:21.989912Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:21:21.990153Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiqd528 kind= uid=f33fa02b-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:21:21.991981Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiqd528 kind= uid=f33fa02b-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:21:21.992310Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiqd528" level=info timestamp=2018-08-02T11:22:25.044680Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmijsz2f, existing: false\n" level=info timestamp=2018-08-02T11:22:25.045529Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:22:25.046225Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmijsz2f kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:22:25.046948Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmijsz2f kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:21:19.129481Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:21:19.129624Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:21:19.130989Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:21:19.137473Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:21:19.138322Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmib4bhx" level=info timestamp=2018-08-02T11:22:22.894371Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmin7v9l, existing: false\n" level=info timestamp=2018-08-02T11:22:22.897825Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:22:22.898270Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:22:22.898761Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmin7v9l kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:22:41.059724Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmib4bhx, existing: true\n" level=info timestamp=2018-08-02T11:22:41.060137Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:22:41.060215Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:22:41.060656Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:22:41.066976Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:22:41.069770Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmib4bhx" Pod name: virt-launcher-testvmib2q8c-zgtz5 Pod phase: Running level=info timestamp=2018-08-02T11:19:47.359464Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:19:47.359685Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:19:47.361643Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:19:57.755818Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:19:57.818585Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmib2q8c" level=info timestamp=2018-08-02T11:19:57.820100Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:19:57.820584Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmib4bhx-ktwl2 Pod phase: Running level=info timestamp=2018-08-02T11:19:44.719976Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:19:44.720284Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:19:44.721570Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:19:54.728785Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:19:54.925252Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmib4bhx" level=info timestamp=2018-08-02T11:19:54.927108Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:19:54.927418Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmil6ncn-fpqxp Pod phase: Running level=info timestamp=2018-08-02T11:19:48.011509Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:19:48.022515Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:19:48.024158Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:19:58.398251Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:19:58.439354Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmil6ncn" level=info timestamp=2018-08-02T11:19:58.440546Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:19:58.440765Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiqd528-k7cx5 Pod phase: Running level=info timestamp=2018-08-02T11:19:48.160668Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:19:48.161607Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:19:48.163145Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:19:58.838877Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:19:58.923228Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiqd528" level=info timestamp=2018-08-02T11:19:58.924325Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:19:58.924618Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [182.015 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 should be reachable via the propagated IP from a Pod [BeforeEach] /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table.go:92 on the same node from Pod /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go:46 Unexpected Warning event received: testvmib2q8c,f338fdfd-9645-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:19:42.325325Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmib2q8c kind=VirtualMachineInstance uid=f338fdfd-9645-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmib2q8c-zgtz5" level=info timestamp=2018-08-02T11:19:58.478956Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmib2q8c kind=VirtualMachineInstance uid=f338fdfd-9645-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmib2q8c-zgtz5" level=error timestamp=2018-08-02T11:19:58.505066Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmib2q8c kind=VirtualMachineInstance uid=f338fdfd-9645-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:22:00 http: TLS handshake error from 10.244.1.1:59346: EOF 2018/08/02 11:22:10 http: TLS handshake error from 10.244.1.1:59352: EOF level=info timestamp=2018-08-02T11:22:12.324539Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:22:20 http: TLS handshake error from 10.244.1.1:59358: EOF level=info timestamp=2018-08-02T11:22:22.242340Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:22:30.042829Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:22:30.142515Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:22:30 http: TLS handshake error from 10.244.1.1:59364: EOF 2018/08/02 11:22:40 http: TLS handshake error from 10.244.1.1:59370: EOF level=info timestamp=2018-08-02T11:22:42.420114Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:22:50 http: TLS handshake error from 10.244.1.1:59376: EOF level=info timestamp=2018-08-02T11:22:52.352094Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:23:00.103251Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:23:00.226844Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:23:00 http: TLS handshake error from 10.244.1.1:59382: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:21:17 http: TLS handshake error from 10.244.0.1:54658: EOF 2018/08/02 11:21:27 http: TLS handshake error from 10.244.0.1:54718: EOF level=info timestamp=2018-08-02T11:21:29.362518Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:21:37 http: TLS handshake error from 10.244.0.1:54778: EOF 2018/08/02 11:21:47 http: TLS handshake error from 10.244.0.1:54838: EOF 2018/08/02 11:21:57 http: TLS handshake error from 10.244.0.1:54898: EOF level=info timestamp=2018-08-02T11:21:59.448956Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:22:07 http: TLS handshake error from 10.244.0.1:54958: EOF 2018/08/02 11:22:17 http: TLS handshake error from 10.244.0.1:55018: EOF 2018/08/02 11:22:27 http: TLS handshake error from 10.244.0.1:55078: EOF level=info timestamp=2018-08-02T11:22:29.440252Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:22:37 http: TLS handshake error from 10.244.0.1:55138: EOF 2018/08/02 11:22:47 http: TLS handshake error from 10.244.0.1:55198: EOF 2018/08/02 11:22:57 http: TLS handshake error from 10.244.0.1:55258: EOF level=info timestamp=2018-08-02T11:22:59.373335Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:19:42.403850Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.404211Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.482287Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6ncn kind= uid=f34cbe60-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.482544Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6ncn kind= uid=f34cbe60-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.681188Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmib2q8c\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmib2q8c" level=info timestamp=2018-08-02T11:19:42.931592Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmib2q8c\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmib2q8c" level=info timestamp=2018-08-02T11:22:44.335040Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijr9b6 kind= uid=5fb681ec-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.338267Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijr9b6 kind= uid=5fb681ec-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.358665Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidrvm5 kind= uid=5fbdb06a-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.359113Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidrvm5 kind= uid=5fbdb06a-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.397926Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.398183Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.446756Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6kqc6 kind= uid=5fc7cc98-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.447079Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6kqc6 kind= uid=5fc7cc98-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.633771Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmidrvm5\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmidrvm5" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:23:02.096089Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmidrvm5 kind= uid=5fbdb06a-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:23:02.097611Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmidrvm5 kind= uid=5fbdb06a-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:23:02.097927Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmidrvm5" level=info timestamp=2018-08-02T11:23:02.129464Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmijr9b6, existing: true\n" level=info timestamp=2018-08-02T11:23:02.129624Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:23:02.129702Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:23:02.129872Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmijr9b6 kind= uid=5fb681ec-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:23:02.131195Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmijr9b6 kind= uid=5fb681ec-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:23:02.131640Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmijr9b6" level=info timestamp=2018-08-02T11:23:02.212126Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmijr9b6, existing: true\n" level=info timestamp=2018-08-02T11:23:02.212280Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:23:02.212519Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:23:02.212775Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmijr9b6 kind= uid=5fb681ec-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:23:02.215307Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmijr9b6 kind= uid=5fb681ec-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:23:02.215741Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmijr9b6" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:22:59.108362Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:22:59.111382Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:22:59.112291Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiz29w4" level=info timestamp=2018-08-02T11:22:59.432836Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiz29w4, existing: true\n" level=info timestamp=2018-08-02T11:22:59.432948Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:22:59.432976Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:22:59.433108Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:22:59.434968Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:22:59.435349Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiz29w4" level=info timestamp=2018-08-02T11:23:00.075745Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiz29w4, existing: true\n" level=info timestamp=2018-08-02T11:23:00.075896Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:23:00.075949Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:23:00.076237Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:23:00.077700Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:23:00.077961Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiz29w4" Pod name: virt-launcher-testvmi6kqc6-pxkz2 Pod phase: Running level=info timestamp=2018-08-02T11:22:49.345980Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:22:49.346158Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:22:49.348723Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:23:01.195572Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:23:01.219815Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi6kqc6" level=info timestamp=2018-08-02T11:23:01.220579Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:23:01.220751Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmidrvm5-4gmh2 Pod phase: Running level=info timestamp=2018-08-02T11:22:48.449353Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:22:48.449593Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:22:48.451178Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:23:00.479174Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:23:00.509631Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmidrvm5" level=info timestamp=2018-08-02T11:23:00.510740Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:23:00.510939Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmijr9b6-26qr4 Pod phase: Running level=info timestamp=2018-08-02T11:22:49.692121Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:22:49.692286Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:22:49.693839Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:23:00.802228Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:23:00.873907Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmijr9b6" level=info timestamp=2018-08-02T11:23:00.875519Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:23:00.875711Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiz29w4-nb7tx Pod phase: Running level=info timestamp=2018-08-02T11:22:47.386725Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:22:47.387011Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:22:47.388388Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:22:57.395636Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:22:57.486914Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiz29w4" level=info timestamp=2018-08-02T11:22:57.489953Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:22:57.490982Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:24:52.867352Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:25:00.405693Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:25:00 http: TLS handshake error from 10.244.1.1:59454: EOF level=info timestamp=2018-08-02T11:25:00.684281Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:25:08.200836Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:25:08.204835Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:25:10 http: TLS handshake error from 10.244.1.1:59460: EOF level=info timestamp=2018-08-02T11:25:12.887218Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:25:20 http: TLS handshake error from 10.244.1.1:59466: EOF level=info timestamp=2018-08-02T11:25:23.006724Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:25:30 http: TLS handshake error from 10.244.1.1:59472: EOF level=info timestamp=2018-08-02T11:25:30.577886Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:25:30.773088Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:25:40 http: TLS handshake error from 10.244.1.1:59478: EOF level=info timestamp=2018-08-02T11:25:42.990177Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:23:57 http: TLS handshake error from 10.244.0.1:55618: EOF level=info timestamp=2018-08-02T11:23:59.460954Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:24:07 http: TLS handshake error from 10.244.0.1:55678: EOF 2018/08/02 11:24:17 http: TLS handshake error from 10.244.0.1:55738: EOF 2018/08/02 11:24:27 http: TLS handshake error from 10.244.0.1:55798: EOF level=info timestamp=2018-08-02T11:24:29.521013Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:24:37 http: TLS handshake error from 10.244.0.1:55858: EOF 2018/08/02 11:24:47 http: TLS handshake error from 10.244.0.1:55918: EOF 2018/08/02 11:24:57 http: TLS handshake error from 10.244.0.1:55978: EOF level=info timestamp=2018-08-02T11:24:59.606991Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:25:07 http: TLS handshake error from 10.244.0.1:56038: EOF 2018/08/02 11:25:17 http: TLS handshake error from 10.244.0.1:56098: EOF 2018/08/02 11:25:27 http: TLS handshake error from 10.244.0.1:56158: EOF level=info timestamp=2018-08-02T11:25:29.408979Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:25:37 http: TLS handshake error from 10.244.0.1:56218: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:19:42.403850Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.404211Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmib4bhx kind= uid=f345f091-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.482287Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6ncn kind= uid=f34cbe60-9645-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:19:42.482544Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6ncn kind= uid=f34cbe60-9645-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:19:42.681188Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmib2q8c\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmib2q8c" level=info timestamp=2018-08-02T11:19:42.931592Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmib2q8c\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmib2q8c" level=info timestamp=2018-08-02T11:22:44.335040Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijr9b6 kind= uid=5fb681ec-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.338267Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijr9b6 kind= uid=5fb681ec-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.358665Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidrvm5 kind= uid=5fbdb06a-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.359113Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidrvm5 kind= uid=5fbdb06a-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.397926Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.398183Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.446756Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6kqc6 kind= uid=5fc7cc98-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.447079Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6kqc6 kind= uid=5fc7cc98-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.633771Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmidrvm5\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmidrvm5" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:24:24.856014Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:24:24.856089Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:24:24.856534Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi6kqc6 kind= uid=5fc7cc98-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:24:24.858785Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi6kqc6 kind= uid=5fc7cc98-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:24:24.859194Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi6kqc6" level=info timestamp=2018-08-02T11:25:26.773680Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmib2q8c, existing: false\n" level=info timestamp=2018-08-02T11:25:26.774335Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:25:26.774638Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmib2q8c kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:25:26.775160Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmib2q8c kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:25:44.704190Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmidrvm5, existing: true\n" level=info timestamp=2018-08-02T11:25:44.704822Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:25:44.704913Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:25:44.705264Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmidrvm5 kind= uid=5fbdb06a-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:25:44.712486Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmidrvm5 kind= uid=5fbdb06a-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:25:44.713239Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmidrvm5" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:24:20.763771Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:24:20.763861Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:24:20.764800Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:24:20.775915Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:24:20.776671Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiz29w4" level=info timestamp=2018-08-02T11:25:24.910482Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmib4bhx, existing: false\n" level=info timestamp=2018-08-02T11:25:24.910694Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:25:24.910838Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:25:24.911029Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmib4bhx kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:25:42.698957Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiz29w4, existing: true\n" level=info timestamp=2018-08-02T11:25:42.701112Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:25:42.701297Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:25:42.702343Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:25:42.708966Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:25:42.710385Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiz29w4" Pod name: virt-launcher-testvmi6kqc6-pxkz2 Pod phase: Running level=info timestamp=2018-08-02T11:22:49.345980Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:22:49.346158Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:22:49.348723Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:23:01.195572Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:23:01.219815Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi6kqc6" level=info timestamp=2018-08-02T11:23:01.220579Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:23:01.220751Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmidrvm5-4gmh2 Pod phase: Running level=info timestamp=2018-08-02T11:22:48.449353Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:22:48.449593Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:22:48.451178Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:23:00.479174Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:23:00.509631Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmidrvm5" level=info timestamp=2018-08-02T11:23:00.510740Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:23:00.510939Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmijr9b6-26qr4 Pod phase: Running level=info timestamp=2018-08-02T11:22:49.692121Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:22:49.692286Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:22:49.693839Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:23:00.802228Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:23:00.873907Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmijr9b6" level=info timestamp=2018-08-02T11:23:00.875519Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:23:00.875711Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiz29w4-nb7tx Pod phase: Running level=info timestamp=2018-08-02T11:22:47.386725Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:22:47.387011Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:22:47.388388Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:22:57.395636Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:22:57.486914Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiz29w4" level=info timestamp=2018-08-02T11:22:57.489953Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:22:57.490982Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [181.904 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 should be reachable via the propagated IP from a Pod [BeforeEach] /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table.go:92 on a different node from Pod /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go:46 Unexpected Warning event received: testvmijr9b6,5fb681ec-9646-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:22:44.265826Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmijr9b6 kind=VirtualMachineInstance uid=5fb681ec-9646-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmijr9b6-26qr4" level=info timestamp=2018-08-02T11:23:01.503765Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmijr9b6 kind=VirtualMachineInstance uid=5fb681ec-9646-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmijr9b6-26qr4" level=error timestamp=2018-08-02T11:23:01.537062Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmijr9b6 kind=VirtualMachineInstance uid=5fb681ec-9646-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:25:08.204835Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:25:10 http: TLS handshake error from 10.244.1.1:59460: EOF level=info timestamp=2018-08-02T11:25:12.887218Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:25:20 http: TLS handshake error from 10.244.1.1:59466: EOF level=info timestamp=2018-08-02T11:25:23.006724Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:25:30 http: TLS handshake error from 10.244.1.1:59472: EOF level=info timestamp=2018-08-02T11:25:30.577886Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:25:30.773088Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:25:40 http: TLS handshake error from 10.244.1.1:59478: EOF level=info timestamp=2018-08-02T11:25:42.990177Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:25:50 http: TLS handshake error from 10.244.1.1:59484: EOF level=info timestamp=2018-08-02T11:25:53.128862Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:26:00 http: TLS handshake error from 10.244.1.1:59490: EOF level=info timestamp=2018-08-02T11:26:00.677007Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:26:00.840745Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:24:17 http: TLS handshake error from 10.244.0.1:55738: EOF 2018/08/02 11:24:27 http: TLS handshake error from 10.244.0.1:55798: EOF level=info timestamp=2018-08-02T11:24:29.521013Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:24:37 http: TLS handshake error from 10.244.0.1:55858: EOF 2018/08/02 11:24:47 http: TLS handshake error from 10.244.0.1:55918: EOF 2018/08/02 11:24:57 http: TLS handshake error from 10.244.0.1:55978: EOF level=info timestamp=2018-08-02T11:24:59.606991Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:25:07 http: TLS handshake error from 10.244.0.1:56038: EOF 2018/08/02 11:25:17 http: TLS handshake error from 10.244.0.1:56098: EOF 2018/08/02 11:25:27 http: TLS handshake error from 10.244.0.1:56158: EOF level=info timestamp=2018-08-02T11:25:29.408979Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:25:37 http: TLS handshake error from 10.244.0.1:56218: EOF 2018/08/02 11:25:47 http: TLS handshake error from 10.244.0.1:56278: EOF 2018/08/02 11:25:57 http: TLS handshake error from 10.244.0.1:56338: EOF level=info timestamp=2018-08-02T11:25:59.402807Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:22:44.397926Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.398183Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.446756Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6kqc6 kind= uid=5fc7cc98-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.447079Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6kqc6 kind= uid=5fc7cc98-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.633771Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmidrvm5\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmidrvm5" level=info timestamp=2018-08-02T11:25:46.216577Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.217953Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.237873Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizjhlf kind= uid=cc26b8d2-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.238038Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizjhlf kind= uid=cc26b8d2-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.270355Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.270726Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.335043Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidmdl9 kind= uid=cc2fc454-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.335246Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidmdl9 kind= uid=cc2fc454-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.379117Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmih5kgn\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmih5kgn" level=info timestamp=2018-08-02T11:25:46.546131Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvminws9p\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvminws9p" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:26:02.345327Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:26:02.346091Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:26:02.346264Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmih5kgn" level=info timestamp=2018-08-02T11:26:02.386696Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmih5kgn, existing: true\n" level=info timestamp=2018-08-02T11:26:02.386838Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:26:02.386909Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:26:02.387652Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:26:02.389111Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:26:02.390464Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmih5kgn" level=info timestamp=2018-08-02T11:26:02.471140Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmih5kgn, existing: true\n" level=info timestamp=2018-08-02T11:26:02.471311Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:26:02.471430Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:26:02.471953Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:26:02.473779Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:26:02.474217Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmih5kgn" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:26:01.297327Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:26:01.297410Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:26:01.307527Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:26:01.310337Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvminws9p" level=info timestamp=2018-08-02T11:26:01.391618Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvminws9p, existing: true\n" level=info timestamp=2018-08-02T11:26:01.391878Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:26:01.391985Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:26:01.393354Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:26:01.394506Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:26:01.394777Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvminws9p" level=info timestamp=2018-08-02T11:26:01.559220Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvminws9p, existing: true\n" level=info timestamp=2018-08-02T11:26:01.559407Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:26:01.559478Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:26:01.559710Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:26:01.562774Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." Pod name: virt-launcher-testvmidmdl9-rxrd4 Pod phase: Running level=info timestamp=2018-08-02T11:25:50.990071Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:25:50.990808Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:25:50.992202Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:26:01.690952Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:26:01.714104Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmidmdl9" level=info timestamp=2018-08-02T11:26:01.714920Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:26:01.715118Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmih5kgn-v77dc Pod phase: Running level=info timestamp=2018-08-02T11:25:51.024098Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:25:51.030035Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:25:51.031236Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:26:01.721193Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:26:01.739936Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmih5kgn" level=info timestamp=2018-08-02T11:26:01.740577Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:26:01.740771Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvminws9p-n7m8s Pod phase: Running level=info timestamp=2018-08-02T11:25:49.075725Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:25:49.077060Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:25:49.079590Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:25:59.089685Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:25:59.209315Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvminws9p" level=info timestamp=2018-08-02T11:25:59.210679Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:25:59.210859Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmizjhlf-2dn59 Pod phase: Running level=info timestamp=2018-08-02T11:25:51.422251Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:25:51.422859Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:25:51.424089Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:26:02.098039Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:26:02.135942Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmizjhlf" level=info timestamp=2018-08-02T11:26:02.137171Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:26:02.137456Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:27:53.748312Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:28:00 http: TLS handshake error from 10.244.1.1:59562: EOF level=info timestamp=2018-08-02T11:28:00.918696Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:28:01.040832Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:28:08.226285Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:28:08.231996Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:28:10 http: TLS handshake error from 10.244.1.1:59568: EOF level=info timestamp=2018-08-02T11:28:13.512302Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:28:20 http: TLS handshake error from 10.244.1.1:59574: EOF level=info timestamp=2018-08-02T11:28:23.899316Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:28:30 http: TLS handshake error from 10.244.1.1:59580: EOF level=info timestamp=2018-08-02T11:28:31.033535Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:28:31.140943Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:28:40 http: TLS handshake error from 10.244.1.1:59586: EOF level=info timestamp=2018-08-02T11:28:43.601534Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:26:57 http: TLS handshake error from 10.244.0.1:56698: EOF level=info timestamp=2018-08-02T11:26:59.478274Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:27:07 http: TLS handshake error from 10.244.0.1:56758: EOF 2018/08/02 11:27:17 http: TLS handshake error from 10.244.0.1:56818: EOF 2018/08/02 11:27:27 http: TLS handshake error from 10.244.0.1:56878: EOF level=info timestamp=2018-08-02T11:27:29.369550Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:27:37 http: TLS handshake error from 10.244.0.1:56938: EOF 2018/08/02 11:27:47 http: TLS handshake error from 10.244.0.1:56998: EOF 2018/08/02 11:27:57 http: TLS handshake error from 10.244.0.1:57058: EOF level=info timestamp=2018-08-02T11:27:59.470285Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:28:07 http: TLS handshake error from 10.244.0.1:57118: EOF 2018/08/02 11:28:17 http: TLS handshake error from 10.244.0.1:57178: EOF 2018/08/02 11:28:27 http: TLS handshake error from 10.244.0.1:57238: EOF level=info timestamp=2018-08-02T11:28:29.578171Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:28:37 http: TLS handshake error from 10.244.0.1:57298: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:22:44.397926Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.398183Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiz29w4 kind= uid=5fc111b1-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.446756Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6kqc6 kind= uid=5fc7cc98-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:22:44.447079Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi6kqc6 kind= uid=5fc7cc98-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:22:44.633771Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmidrvm5\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmidrvm5" level=info timestamp=2018-08-02T11:25:46.216577Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.217953Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.237873Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizjhlf kind= uid=cc26b8d2-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.238038Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizjhlf kind= uid=cc26b8d2-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.270355Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.270726Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.335043Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidmdl9 kind= uid=cc2fc454-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.335246Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidmdl9 kind= uid=cc2fc454-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.379117Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmih5kgn\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmih5kgn" level=info timestamp=2018-08-02T11:25:46.546131Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvminws9p\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvminws9p" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:27:25.905937Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:27:25.906010Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:27:25.906253Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmidmdl9 kind= uid=cc2fc454-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:27:25.911080Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmidmdl9 kind= uid=cc2fc454-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:27:25.911872Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmidmdl9" level=info timestamp=2018-08-02T11:28:28.559277Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmidrvm5, existing: false\n" level=info timestamp=2018-08-02T11:28:28.560049Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:28:28.560489Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmidrvm5 kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:28:28.561070Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmidrvm5 kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:28:46.207723Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmih5kgn, existing: true\n" level=info timestamp=2018-08-02T11:28:46.208121Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:28:46.208202Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:28:46.208512Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:28:46.217459Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmih5kgn kind= uid=cc2337a1-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:28:46.218142Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmih5kgn" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:27:23.219004Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:27:23.219188Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:27:23.219809Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:27:23.225512Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:27:23.226343Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvminws9p" level=info timestamp=2018-08-02T11:28:26.552021Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiz29w4, existing: false\n" level=info timestamp=2018-08-02T11:28:26.552848Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:28:26.553147Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:28:26.553455Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmiz29w4 kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:28:45.148114Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvminws9p, existing: true\n" level=info timestamp=2018-08-02T11:28:45.149302Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:28:45.149430Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:28:45.149873Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:28:45.158979Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:28:45.159848Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvminws9p" Pod name: virt-launcher-testvmidmdl9-rxrd4 Pod phase: Running level=info timestamp=2018-08-02T11:25:50.990071Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:25:50.990808Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:25:50.992202Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:26:01.690952Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:26:01.714104Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmidmdl9" level=info timestamp=2018-08-02T11:26:01.714920Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:26:01.715118Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmih5kgn-v77dc Pod phase: Running level=info timestamp=2018-08-02T11:25:51.024098Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:25:51.030035Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:25:51.031236Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:26:01.721193Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:26:01.739936Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmih5kgn" level=info timestamp=2018-08-02T11:26:01.740577Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:26:01.740771Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvminws9p-n7m8s Pod phase: Running level=info timestamp=2018-08-02T11:25:49.075725Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:25:49.077060Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:25:49.079590Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:25:59.089685Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:25:59.209315Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvminws9p" level=info timestamp=2018-08-02T11:25:59.210679Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:25:59.210859Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmizjhlf-2dn59 Pod phase: Running level=info timestamp=2018-08-02T11:25:51.422251Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:25:51.422859Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:25:51.424089Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:26:02.098039Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:26:02.135942Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmizjhlf" level=info timestamp=2018-08-02T11:26:02.137171Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:26:02.137456Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [181.866 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 should be reachable via the propagated IP from a Pod [BeforeEach] /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table.go:92 on the same node from Node /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go:46 Unexpected Warning event received: testvmih5kgn,cc2337a1-9646-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:25:45.989015Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmih5kgn kind=VirtualMachineInstance uid=cc2337a1-9646-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmih5kgn-v77dc" level=info timestamp=2018-08-02T11:26:01.796513Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmih5kgn kind=VirtualMachineInstance uid=cc2337a1-9646-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmih5kgn-v77dc" level=error timestamp=2018-08-02T11:26:01.805371Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmih5kgn kind=VirtualMachineInstance uid=cc2337a1-9646-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:28:08.231996Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:28:10 http: TLS handshake error from 10.244.1.1:59568: EOF level=info timestamp=2018-08-02T11:28:13.512302Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:28:20 http: TLS handshake error from 10.244.1.1:59574: EOF level=info timestamp=2018-08-02T11:28:23.899316Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:28:30 http: TLS handshake error from 10.244.1.1:59580: EOF level=info timestamp=2018-08-02T11:28:31.033535Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:28:31.140943Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:28:40 http: TLS handshake error from 10.244.1.1:59586: EOF level=info timestamp=2018-08-02T11:28:43.601534Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:28:50 http: TLS handshake error from 10.244.1.1:59592: EOF level=info timestamp=2018-08-02T11:28:53.996312Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:29:00 http: TLS handshake error from 10.244.1.1:59598: EOF level=info timestamp=2018-08-02T11:29:01.195805Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:29:01.290985Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:27:17 http: TLS handshake error from 10.244.0.1:56818: EOF 2018/08/02 11:27:27 http: TLS handshake error from 10.244.0.1:56878: EOF level=info timestamp=2018-08-02T11:27:29.369550Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:27:37 http: TLS handshake error from 10.244.0.1:56938: EOF 2018/08/02 11:27:47 http: TLS handshake error from 10.244.0.1:56998: EOF 2018/08/02 11:27:57 http: TLS handshake error from 10.244.0.1:57058: EOF level=info timestamp=2018-08-02T11:27:59.470285Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:28:07 http: TLS handshake error from 10.244.0.1:57118: EOF 2018/08/02 11:28:17 http: TLS handshake error from 10.244.0.1:57178: EOF 2018/08/02 11:28:27 http: TLS handshake error from 10.244.0.1:57238: EOF level=info timestamp=2018-08-02T11:28:29.578171Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:28:37 http: TLS handshake error from 10.244.0.1:57298: EOF 2018/08/02 11:28:47 http: TLS handshake error from 10.244.0.1:57358: EOF 2018/08/02 11:28:57 http: TLS handshake error from 10.244.0.1:57418: EOF level=info timestamp=2018-08-02T11:28:59.376817Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:25:46.238038Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizjhlf kind= uid=cc26b8d2-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.270355Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.270726Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.335043Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidmdl9 kind= uid=cc2fc454-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.335246Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidmdl9 kind= uid=cc2fc454-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.379117Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmih5kgn\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmih5kgn" level=info timestamp=2018-08-02T11:25:46.546131Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvminws9p\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvminws9p" level=info timestamp=2018-08-02T11:28:48.104070Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qsnq kind= uid=388b820b-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.112772Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qsnq kind= uid=388b820b-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:28:48.126189Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibn66d kind= uid=388fd2ba-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.126614Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibn66d kind= uid=388fd2ba-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:28:48.166875Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.167214Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:28:48.249487Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.249699Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:29:04.301446Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:29:04.303786Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:29:04.304117Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmil6pb6" level=info timestamp=2018-08-02T11:29:04.345173Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5qsnq, existing: true\n" level=info timestamp=2018-08-02T11:29:04.345313Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:29:04.345429Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:29:04.345616Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5qsnq kind= uid=388b820b-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:29:04.347133Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5qsnq kind= uid=388b820b-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:29:04.348351Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5qsnq" level=info timestamp=2018-08-02T11:29:04.429213Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5qsnq, existing: true\n" level=info timestamp=2018-08-02T11:29:04.429295Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:29:04.429323Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:29:04.429436Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5qsnq kind= uid=388b820b-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:29:04.430170Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5qsnq kind= uid=388b820b-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:29:04.430306Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5qsnq" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:29:02.461872Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:29:02.462559Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:29:02.462691Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivwt7x" level=info timestamp=2018-08-02T11:29:02.623017Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmivwt7x, existing: true\n" level=info timestamp=2018-08-02T11:29:02.623127Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:29:02.623170Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:29:02.623303Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:29:02.624010Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:29:02.627445Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivwt7x" level=info timestamp=2018-08-02T11:29:02.948610Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmivwt7x, existing: true\n" level=info timestamp=2018-08-02T11:29:02.948712Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:29:02.948793Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:29:02.948997Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:29:02.952530Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:29:02.956253Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivwt7x" Pod name: virt-launcher-testvmi5qsnq-sntn2 Pod phase: Running level=info timestamp=2018-08-02T11:28:53.056281Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:28:53.057300Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:28:53.058909Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:29:03.632152Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:29:03.697925Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi5qsnq" level=info timestamp=2018-08-02T11:29:03.699030Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:29:03.699221Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmibn66d-mhwnw Pod phase: Running level=info timestamp=2018-08-02T11:28:54.151291Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:28:54.166601Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:28:54.169058Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:29:04.488011Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:29:04.561916Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmibn66d" level=info timestamp=2018-08-02T11:29:04.564017Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:29:04.564245Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmil6pb6-kzlgp Pod phase: Running level=info timestamp=2018-08-02T11:28:52.774139Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:28:52.789517Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:28:52.791633Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:29:03.276476Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:29:03.325159Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmil6pb6" level=info timestamp=2018-08-02T11:29:03.326026Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:29:03.326219Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmivwt7x-mjz87 Pod phase: Running level=info timestamp=2018-08-02T11:28:51.620843Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:28:51.621123Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:28:51.622708Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:29:01.636952Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:29:01.741646Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmivwt7x" level=info timestamp=2018-08-02T11:29:01.744546Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:29:01.744993Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:30:54.570954Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:31:00 http: TLS handshake error from 10.244.1.1:59670: EOF level=info timestamp=2018-08-02T11:31:01.553224Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:31:01.628228Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:31:08.368413Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:31:08.374768Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:31:10 http: TLS handshake error from 10.244.1.1:59676: EOF level=info timestamp=2018-08-02T11:31:14.083930Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:31:20 http: TLS handshake error from 10.244.1.1:59682: EOF level=info timestamp=2018-08-02T11:31:24.716225Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:31:30 http: TLS handshake error from 10.244.1.1:59688: EOF level=info timestamp=2018-08-02T11:31:31.634032Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:31:31.701537Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:31:40 http: TLS handshake error from 10.244.1.1:59694: EOF level=info timestamp=2018-08-02T11:31:44.173328Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:29:59.482520Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:30:07 http: TLS handshake error from 10.244.0.1:57838: EOF 2018/08/02 11:30:17 http: TLS handshake error from 10.244.0.1:57898: EOF 2018/08/02 11:30:27 http: TLS handshake error from 10.244.0.1:57958: EOF level=info timestamp=2018-08-02T11:30:29.513476Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:30:37 http: TLS handshake error from 10.244.0.1:58018: EOF 2018/08/02 11:30:47 http: TLS handshake error from 10.244.0.1:58078: EOF 2018/08/02 11:30:57 http: TLS handshake error from 10.244.0.1:58138: EOF level=info timestamp=2018-08-02T11:30:59.467899Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:31:07 http: TLS handshake error from 10.244.0.1:58198: EOF 2018/08/02 11:31:17 http: TLS handshake error from 10.244.0.1:58258: EOF 2018/08/02 11:31:27 http: TLS handshake error from 10.244.0.1:58318: EOF level=info timestamp=2018-08-02T11:31:29.434888Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:31:37 http: TLS handshake error from 10.244.0.1:58378: EOF 2018/08/02 11:31:47 http: TLS handshake error from 10.244.0.1:58438: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:25:46.238038Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizjhlf kind= uid=cc26b8d2-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.270355Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.270726Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvminws9p kind= uid=cc29c96c-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.335043Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidmdl9 kind= uid=cc2fc454-9646-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:25:46.335246Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmidmdl9 kind= uid=cc2fc454-9646-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:25:46.379117Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmih5kgn\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmih5kgn" level=info timestamp=2018-08-02T11:25:46.546131Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvminws9p\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvminws9p" level=info timestamp=2018-08-02T11:28:48.104070Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qsnq kind= uid=388b820b-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.112772Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qsnq kind= uid=388b820b-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:28:48.126189Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibn66d kind= uid=388fd2ba-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.126614Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibn66d kind= uid=388fd2ba-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:28:48.166875Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.167214Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:28:48.249487Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.249699Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:31:31.156680Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:31:31.157031Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmizjhlf kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:31:31.157499Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmizjhlf kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:31:47.552286Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmil6pb6, existing: true\n" level=info timestamp=2018-08-02T11:31:47.553072Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:31:47.553162Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:31:47.553643Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:31:47.562817Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:31:47.563606Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmil6pb6" level=info timestamp=2018-08-02T11:31:48.156527Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5qsnq, existing: true\n" level=info timestamp=2018-08-02T11:31:48.156747Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:31:48.156837Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:31:48.157191Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5qsnq kind= uid=388b820b-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:31:48.159492Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5qsnq kind= uid=388b820b-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:31:48.159893Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5qsnq" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:30:24.303611Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:30:24.303647Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:30:24.303894Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:30:24.307835Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:30:24.308151Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivwt7x" level=info timestamp=2018-08-02T11:31:29.001628Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvminws9p, existing: false\n" level=info timestamp=2018-08-02T11:31:29.002410Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:31:29.002730Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:31:29.003192Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvminws9p kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:31:46.230726Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmivwt7x, existing: true\n" level=info timestamp=2018-08-02T11:31:46.231430Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:31:46.231527Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:31:46.231905Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:31:46.240572Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:31:46.241376Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivwt7x" Pod name: virt-launcher-testvmi5qsnq-sntn2 Pod phase: Running level=info timestamp=2018-08-02T11:28:53.056281Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:28:53.057300Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:28:53.058909Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:29:03.632152Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:29:03.697925Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi5qsnq" level=info timestamp=2018-08-02T11:29:03.699030Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:29:03.699221Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmibn66d-mhwnw Pod phase: Running level=info timestamp=2018-08-02T11:28:54.151291Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:28:54.166601Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:28:54.169058Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:29:04.488011Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:29:04.561916Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmibn66d" level=info timestamp=2018-08-02T11:29:04.564017Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:29:04.564245Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmil6pb6-kzlgp Pod phase: Running level=info timestamp=2018-08-02T11:28:52.774139Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:28:52.789517Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:28:52.791633Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:29:03.276476Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:29:03.325159Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmil6pb6" level=info timestamp=2018-08-02T11:29:03.326026Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:29:03.326219Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmivwt7x-mjz87 Pod phase: Running level=info timestamp=2018-08-02T11:28:51.620843Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:28:51.621123Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:28:51.622708Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:29:01.636952Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:29:01.741646Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmivwt7x" level=info timestamp=2018-08-02T11:29:01.744546Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:29:01.744993Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [182.028 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 should be reachable via the propagated IP from a Pod [BeforeEach] /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table.go:92 on a different node from Node /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go:46 Unexpected Warning event received: testvmi5qsnq,388b820b-9647-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:28:48.001607Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmi5qsnq kind=VirtualMachineInstance uid=388b820b-9647-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmi5qsnq-sntn2" level=info timestamp=2018-08-02T11:29:03.697661Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmi5qsnq kind=VirtualMachineInstance uid=388b820b-9647-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmi5qsnq-sntn2" level=error timestamp=2018-08-02T11:29:03.724385Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmi5qsnq kind=VirtualMachineInstance uid=388b820b-9647-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:31:08.374768Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:31:10 http: TLS handshake error from 10.244.1.1:59676: EOF level=info timestamp=2018-08-02T11:31:14.083930Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:31:20 http: TLS handshake error from 10.244.1.1:59682: EOF level=info timestamp=2018-08-02T11:31:24.716225Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:31:30 http: TLS handshake error from 10.244.1.1:59688: EOF level=info timestamp=2018-08-02T11:31:31.634032Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:31:31.701537Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:31:40 http: TLS handshake error from 10.244.1.1:59694: EOF level=info timestamp=2018-08-02T11:31:44.173328Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:31:50 http: TLS handshake error from 10.244.1.1:59700: EOF level=info timestamp=2018-08-02T11:31:54.840866Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:32:00 http: TLS handshake error from 10.244.1.1:59706: EOF level=info timestamp=2018-08-02T11:32:01.693004Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:32:01.749127Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:30:17 http: TLS handshake error from 10.244.0.1:57898: EOF 2018/08/02 11:30:27 http: TLS handshake error from 10.244.0.1:57958: EOF level=info timestamp=2018-08-02T11:30:29.513476Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:30:37 http: TLS handshake error from 10.244.0.1:58018: EOF 2018/08/02 11:30:47 http: TLS handshake error from 10.244.0.1:58078: EOF 2018/08/02 11:30:57 http: TLS handshake error from 10.244.0.1:58138: EOF level=info timestamp=2018-08-02T11:30:59.467899Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:31:07 http: TLS handshake error from 10.244.0.1:58198: EOF 2018/08/02 11:31:17 http: TLS handshake error from 10.244.0.1:58258: EOF 2018/08/02 11:31:27 http: TLS handshake error from 10.244.0.1:58318: EOF level=info timestamp=2018-08-02T11:31:29.434888Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:31:37 http: TLS handshake error from 10.244.0.1:58378: EOF 2018/08/02 11:31:47 http: TLS handshake error from 10.244.0.1:58438: EOF 2018/08/02 11:31:57 http: TLS handshake error from 10.244.0.1:58498: EOF level=info timestamp=2018-08-02T11:31:59.443567Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:28:48.166875Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.167214Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:28:48.249487Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.249699Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.139060Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiw69dl kind= uid=a50b369b-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:31:50.142186Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiw69dl kind= uid=a50b369b-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.159791Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiq2hsd kind= uid=a5105c34-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:31:50.160117Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiq2hsd kind= uid=a5105c34-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.190730Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:31:50.190953Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.253150Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi56v52 kind= uid=a5180dce-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:31:50.253516Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi56v52 kind= uid=a5180dce-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.281556Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiw69dl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiw69dl" level=info timestamp=2018-08-02T11:31:50.400480Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiw69dl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiw69dl" level=info timestamp=2018-08-02T11:31:50.427822Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiq2hsd\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiq2hsd" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:32:07.510974Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiw69dl kind= uid=a50b369b-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:32:07.513617Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiw69dl kind= uid=a50b369b-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:32:07.514161Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiw69dl" level=info timestamp=2018-08-02T11:32:07.594788Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiw69dl, existing: true\n" level=info timestamp=2018-08-02T11:32:07.594931Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:32:07.595001Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:32:07.595182Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiw69dl kind= uid=a50b369b-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:32:07.596893Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiw69dl kind= uid=a50b369b-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:32:07.597208Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiw69dl" level=info timestamp=2018-08-02T11:32:07.621602Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiq2hsd, existing: true\n" level=info timestamp=2018-08-02T11:32:07.621744Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:32:07.621829Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:32:07.622103Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiq2hsd kind= uid=a5105c34-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:32:07.623812Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiq2hsd kind= uid=a5105c34-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:32:07.624092Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiq2hsd" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:32:04.611765Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:32:04.616948Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:32:04.617604Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibg87b" level=info timestamp=2018-08-02T11:32:05.258134Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibg87b, existing: true\n" level=info timestamp=2018-08-02T11:32:05.258272Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:32:05.258340Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:32:05.258580Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:32:05.261526Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:32:05.261881Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibg87b" level=info timestamp=2018-08-02T11:32:06.542617Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibg87b, existing: true\n" level=info timestamp=2018-08-02T11:32:06.542782Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:32:06.542856Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:32:06.546384Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:32:06.549908Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:32:06.550337Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibg87b" Pod name: virt-launcher-testvmi56v52-gmmpk Pod phase: Running level=info timestamp=2018-08-02T11:31:55.350893Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:31:55.352073Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:31:55.354278Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:32:06.090343Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:32:06.125931Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi56v52" level=info timestamp=2018-08-02T11:32:06.126729Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:32:06.126902Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmibg87b-q2bt2 Pod phase: Running level=info timestamp=2018-08-02T11:31:53.068247Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:31:53.068598Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:31:53.071579Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:32:03.079568Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:32:03.218741Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmibg87b" level=info timestamp=2018-08-02T11:32:03.226977Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:32:03.227471Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiq2hsd-2q99r Pod phase: Running level=info timestamp=2018-08-02T11:31:55.629997Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:31:55.630112Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:31:55.633734Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:32:06.159869Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:32:06.179807Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiq2hsd" level=info timestamp=2018-08-02T11:32:06.180617Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:32:06.180840Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiw69dl-9ghc4 Pod phase: Running level=info timestamp=2018-08-02T11:31:55.566713Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:31:55.567211Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:31:55.569099Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:32:06.419464Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:32:06.438530Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiw69dl" level=info timestamp=2018-08-02T11:32:06.439207Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:32:06.439449Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:33:50 http: TLS handshake error from 10.244.1.1:59772: EOF level=info timestamp=2018-08-02T11:33:55.474021Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:34:00 http: TLS handshake error from 10.244.1.1:59778: EOF level=info timestamp=2018-08-02T11:34:02.077063Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:34:02.130710Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:34:10 http: TLS handshake error from 10.244.1.1:59784: EOF level=info timestamp=2018-08-02T11:34:14.621638Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:34:20 http: TLS handshake error from 10.244.1.1:59790: EOF level=info timestamp=2018-08-02T11:34:25.662462Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:34:30 http: TLS handshake error from 10.244.1.1:59796: EOF level=info timestamp=2018-08-02T11:34:32.136507Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:34:32.203523Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:34:40 http: TLS handshake error from 10.244.1.1:59802: EOF level=info timestamp=2018-08-02T11:34:44.791518Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:34:50 http: TLS handshake error from 10.244.1.1:59808: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:32:59.435140Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:33:07 http: TLS handshake error from 10.244.0.1:58918: EOF 2018/08/02 11:33:17 http: TLS handshake error from 10.244.0.1:58978: EOF 2018/08/02 11:33:27 http: TLS handshake error from 10.244.0.1:59038: EOF level=info timestamp=2018-08-02T11:33:29.451271Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:33:37 http: TLS handshake error from 10.244.0.1:59098: EOF 2018/08/02 11:33:47 http: TLS handshake error from 10.244.0.1:59158: EOF 2018/08/02 11:33:57 http: TLS handshake error from 10.244.0.1:59218: EOF level=info timestamp=2018-08-02T11:33:59.430919Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:34:07 http: TLS handshake error from 10.244.0.1:59278: EOF 2018/08/02 11:34:17 http: TLS handshake error from 10.244.0.1:59338: EOF 2018/08/02 11:34:27 http: TLS handshake error from 10.244.0.1:59398: EOF level=info timestamp=2018-08-02T11:34:29.390206Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:34:37 http: TLS handshake error from 10.244.0.1:59458: EOF 2018/08/02 11:34:47 http: TLS handshake error from 10.244.0.1:59518: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:28:48.166875Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.167214Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivwt7x kind= uid=38931a46-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:28:48.249487Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:28:48.249699Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmil6pb6 kind= uid=389932a7-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.139060Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiw69dl kind= uid=a50b369b-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:31:50.142186Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiw69dl kind= uid=a50b369b-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.159791Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiq2hsd kind= uid=a5105c34-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:31:50.160117Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiq2hsd kind= uid=a5105c34-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.190730Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:31:50.190953Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.253150Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi56v52 kind= uid=a5180dce-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:31:50.253516Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi56v52 kind= uid=a5180dce-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.281556Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiw69dl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiw69dl" level=info timestamp=2018-08-02T11:31:50.400480Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiw69dl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiw69dl" level=info timestamp=2018-08-02T11:31:50.427822Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiq2hsd\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiq2hsd" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:33:30.010735Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi56v52 kind= uid=a5180dce-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:33:30.014211Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi56v52 kind= uid=a5180dce-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:33:30.015976Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi56v52" level=info timestamp=2018-08-02T11:34:31.405612Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmil6pb6, existing: false\n" level=info timestamp=2018-08-02T11:34:31.406261Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:34:31.406639Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmil6pb6 kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:34:31.407172Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmil6pb6 kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:34:32.003063Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5qsnq, existing: false\n" level=info timestamp=2018-08-02T11:34:32.003599Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:34:32.003979Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmi5qsnq kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:34:32.004857Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmi5qsnq kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:34:33.050466Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibn66d, existing: false\n" level=info timestamp=2018-08-02T11:34:33.050678Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:34:33.050843Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmibn66d kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:34:33.051035Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmibn66d kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:33:25.967665Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:33:25.968289Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:33:25.969705Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:33:25.978146Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:33:25.978876Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibg87b" level=info timestamp=2018-08-02T11:34:30.082472Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmivwt7x, existing: false\n" level=info timestamp=2018-08-02T11:34:30.082710Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:34:30.082899Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:34:30.083308Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmivwt7x kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:34:47.901183Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibg87b, existing: true\n" level=info timestamp=2018-08-02T11:34:47.902300Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:34:47.903141Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:34:47.903732Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:34:47.911970Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind= uid=a51403c4-9647-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:34:47.919636Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7590/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibg87b" Pod name: virt-launcher-testvmi56v52-gmmpk Pod phase: Running level=info timestamp=2018-08-02T11:31:55.350893Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:31:55.352073Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:31:55.354278Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:32:06.090343Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:32:06.125931Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi56v52" level=info timestamp=2018-08-02T11:32:06.126729Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:32:06.126902Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmibg87b-q2bt2 Pod phase: Running level=info timestamp=2018-08-02T11:31:53.068247Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:31:53.068598Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:31:53.071579Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:32:03.079568Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:32:03.218741Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmibg87b" level=info timestamp=2018-08-02T11:32:03.226977Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:32:03.227471Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiq2hsd-2q99r Pod phase: Running level=info timestamp=2018-08-02T11:31:55.629997Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:31:55.630112Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:31:55.633734Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:32:06.159869Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:32:06.179807Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiq2hsd" level=info timestamp=2018-08-02T11:32:06.180617Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:32:06.180840Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiw69dl-9ghc4 Pod phase: Running level=info timestamp=2018-08-02T11:31:55.566713Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:31:55.567211Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:31:55.569099Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:32:06.419464Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:32:06.438530Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiw69dl" level=info timestamp=2018-08-02T11:32:06.439207Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:32:06.439449Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [181.879 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 with a service matching the vmi exposed [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:272 should be able to reach the vmi based on labels specified on the vmi /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:292 Unexpected Warning event received: testvmiw69dl,a50b369b-9647-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:31:50.059173Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmiw69dl kind=VirtualMachineInstance uid=a50b369b-9647-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmiw69dl-9ghc4" level=info timestamp=2018-08-02T11:32:06.862521Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmiw69dl kind=VirtualMachineInstance uid=a50b369b-9647-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmiw69dl-9ghc4" level=error timestamp=2018-08-02T11:32:06.882901Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmiw69dl kind=VirtualMachineInstance uid=a50b369b-9647-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:34:02.130710Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:34:10 http: TLS handshake error from 10.244.1.1:59784: EOF level=info timestamp=2018-08-02T11:34:14.621638Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:34:20 http: TLS handshake error from 10.244.1.1:59790: EOF level=info timestamp=2018-08-02T11:34:25.662462Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:34:30 http: TLS handshake error from 10.244.1.1:59796: EOF level=info timestamp=2018-08-02T11:34:32.136507Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:34:32.203523Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:34:40 http: TLS handshake error from 10.244.1.1:59802: EOF level=info timestamp=2018-08-02T11:34:44.791518Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:34:50 http: TLS handshake error from 10.244.1.1:59808: EOF level=info timestamp=2018-08-02T11:34:55.854838Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:35:00 http: TLS handshake error from 10.244.1.1:59814: EOF level=info timestamp=2018-08-02T11:35:02.244634Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:35:02.367780Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:33:17 http: TLS handshake error from 10.244.0.1:58978: EOF 2018/08/02 11:33:27 http: TLS handshake error from 10.244.0.1:59038: EOF level=info timestamp=2018-08-02T11:33:29.451271Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:33:37 http: TLS handshake error from 10.244.0.1:59098: EOF 2018/08/02 11:33:47 http: TLS handshake error from 10.244.0.1:59158: EOF 2018/08/02 11:33:57 http: TLS handshake error from 10.244.0.1:59218: EOF level=info timestamp=2018-08-02T11:33:59.430919Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:34:07 http: TLS handshake error from 10.244.0.1:59278: EOF 2018/08/02 11:34:17 http: TLS handshake error from 10.244.0.1:59338: EOF 2018/08/02 11:34:27 http: TLS handshake error from 10.244.0.1:59398: EOF level=info timestamp=2018-08-02T11:34:29.390206Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:34:37 http: TLS handshake error from 10.244.0.1:59458: EOF 2018/08/02 11:34:47 http: TLS handshake error from 10.244.0.1:59518: EOF 2018/08/02 11:34:57 http: TLS handshake error from 10.244.0.1:59578: EOF level=info timestamp=2018-08-02T11:34:59.378379Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:31:50.253150Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi56v52 kind= uid=a5180dce-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:31:50.253516Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi56v52 kind= uid=a5180dce-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.281556Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiw69dl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiw69dl" level=info timestamp=2018-08-02T11:31:50.400480Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiw69dl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiw69dl" level=info timestamp=2018-08-02T11:31:50.427822Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiq2hsd\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiq2hsd" level=info timestamp=2018-08-02T11:34:52.001522Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:34:52.002950Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.017582Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmif7jmr kind= uid=117622da-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:34:52.017722Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmif7jmr kind= uid=117622da-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.073728Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:34:52.073995Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.141217Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicrzff kind= uid=11822732-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:34:52.141519Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicrzff kind= uid=11822732-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.454857Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi7k7jv\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi7k7jv" level=info timestamp=2018-08-02T11:34:52.613020Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmicrzff\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmicrzff" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:35:07.607884Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:35:07.608619Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:35:07.608746Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmis9q4t" level=info timestamp=2018-08-02T11:35:07.648948Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmis9q4t, existing: true\n" level=info timestamp=2018-08-02T11:35:07.649028Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:35:07.649056Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:35:07.649159Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:35:07.649936Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:35:07.650068Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmis9q4t" level=info timestamp=2018-08-02T11:35:07.730302Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmis9q4t, existing: true\n" level=info timestamp=2018-08-02T11:35:07.730404Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:35:07.730433Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:35:07.730525Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:35:07.731303Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:35:07.731468Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmis9q4t" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:35:06.083947Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:35:06.085261Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:35:06.085405Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi7k7jv" level=info timestamp=2018-08-02T11:35:06.245973Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi7k7jv, existing: true\n" level=info timestamp=2018-08-02T11:35:06.246270Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:35:06.246298Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:35:06.246586Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:35:06.248809Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:35:06.249072Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi7k7jv" level=info timestamp=2018-08-02T11:35:06.569548Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi7k7jv, existing: true\n" level=info timestamp=2018-08-02T11:35:06.569697Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:35:06.569768Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:35:06.570518Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:35:06.573296Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:35:06.573882Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi7k7jv" Pod name: virt-launcher-testvmi7k7jv-cjwq8 Pod phase: Running level=info timestamp=2018-08-02T11:34:55.231477Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:34:55.232574Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:34:55.234595Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:35:05.239978Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:35:05.368700Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi7k7jv" level=info timestamp=2018-08-02T11:35:05.371744Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:35:05.373704Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmicrzff-9hgc2 Pod phase: Running level=info timestamp=2018-08-02T11:34:56.589038Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:34:56.589794Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:34:56.592627Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:35:07.603726Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:35:07.628165Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmicrzff" level=info timestamp=2018-08-02T11:35:07.629548Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:35:07.629745Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmif7jmr-v4n9c Pod phase: Running level=info timestamp=2018-08-02T11:34:57.783783Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:34:57.784039Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:34:57.788661Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:35:08.067538Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:35:08.119292Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmif7jmr" level=info timestamp=2018-08-02T11:35:08.120017Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:35:08.120213Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmis9q4t-ppbrg Pod phase: Running level=info timestamp=2018-08-02T11:34:56.941276Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:34:56.942075Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:34:56.945064Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:35:06.954876Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:35:07.005426Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmis9q4t" level=info timestamp=2018-08-02T11:35:07.006224Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:35:07.006417Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:36:50 http: TLS handshake error from 10.244.1.1:59880: EOF level=info timestamp=2018-08-02T11:36:56.422101Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:37:00 http: TLS handshake error from 10.244.1.1:59886: EOF level=info timestamp=2018-08-02T11:37:02.669866Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:37:02.761322Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:37:10 http: TLS handshake error from 10.244.1.1:59892: EOF level=info timestamp=2018-08-02T11:37:15.314586Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:37:20 http: TLS handshake error from 10.244.1.1:59898: EOF level=info timestamp=2018-08-02T11:37:26.643107Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:37:30 http: TLS handshake error from 10.244.1.1:59904: EOF level=info timestamp=2018-08-02T11:37:32.758630Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:37:32.800983Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:37:40 http: TLS handshake error from 10.244.1.1:59910: EOF level=info timestamp=2018-08-02T11:37:45.403888Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:37:50 http: TLS handshake error from 10.244.1.1:59916: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:35:59.553599Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:36:07 http: TLS handshake error from 10.244.0.1:59998: EOF 2018/08/02 11:36:17 http: TLS handshake error from 10.244.0.1:60058: EOF 2018/08/02 11:36:27 http: TLS handshake error from 10.244.0.1:60118: EOF level=info timestamp=2018-08-02T11:36:29.463257Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:36:37 http: TLS handshake error from 10.244.0.1:60178: EOF 2018/08/02 11:36:47 http: TLS handshake error from 10.244.0.1:60238: EOF 2018/08/02 11:36:57 http: TLS handshake error from 10.244.0.1:60298: EOF level=info timestamp=2018-08-02T11:36:59.447698Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:37:07 http: TLS handshake error from 10.244.0.1:60358: EOF 2018/08/02 11:37:17 http: TLS handshake error from 10.244.0.1:60418: EOF 2018/08/02 11:37:27 http: TLS handshake error from 10.244.0.1:60478: EOF level=info timestamp=2018-08-02T11:37:29.499994Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:37:37 http: TLS handshake error from 10.244.0.1:60538: EOF 2018/08/02 11:37:47 http: TLS handshake error from 10.244.0.1:60598: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:31:50.253150Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi56v52 kind= uid=a5180dce-9647-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:31:50.253516Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi56v52 kind= uid=a5180dce-9647-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:31:50.281556Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiw69dl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiw69dl" level=info timestamp=2018-08-02T11:31:50.400480Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiw69dl\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiw69dl" level=info timestamp=2018-08-02T11:31:50.427822Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmiq2hsd\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmiq2hsd" level=info timestamp=2018-08-02T11:34:52.001522Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:34:52.002950Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.017582Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmif7jmr kind= uid=117622da-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:34:52.017722Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmif7jmr kind= uid=117622da-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.073728Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:34:52.073995Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.141217Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicrzff kind= uid=11822732-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:34:52.141519Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicrzff kind= uid=11822732-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.454857Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi7k7jv\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi7k7jv" level=info timestamp=2018-08-02T11:34:52.613020Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmicrzff\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmicrzff" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:36:31.907758Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmif7jmr" level=info timestamp=2018-08-02T11:37:35.071500Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiq2hsd, existing: false\n" level=info timestamp=2018-08-02T11:37:35.072236Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:37:35.072679Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmiq2hsd kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:37:35.073293Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmiq2hsd kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:37:35.165883Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiw69dl, existing: false\n" level=info timestamp=2018-08-02T11:37:35.166054Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:37:35.166248Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmiw69dl kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:37:35.166560Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmiw69dl kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:37:51.454087Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmis9q4t, existing: true\n" level=info timestamp=2018-08-02T11:37:51.454612Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:37:51.454740Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:37:51.455093Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:37:51.461532Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmis9q4t kind= uid=11736337-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:37:51.462274Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmis9q4t" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:36:27.919333Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:36:27.919447Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:36:27.920573Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:36:27.925958Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:36:27.926918Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi7k7jv" level=info timestamp=2018-08-02T11:37:31.764250Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibg87b, existing: false\n" level=info timestamp=2018-08-02T11:37:31.765388Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:37:31.765701Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:37:31.766871Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmibg87b kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:37:49.848014Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi7k7jv, existing: true\n" level=info timestamp=2018-08-02T11:37:49.848316Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:37:49.848392Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:37:49.848614Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:37:49.852478Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:37:49.853160Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi7k7jv" Pod name: virt-launcher-testvmi7k7jv-cjwq8 Pod phase: Running level=info timestamp=2018-08-02T11:34:55.231477Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:34:55.232574Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:34:55.234595Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:35:05.239978Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:35:05.368700Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi7k7jv" level=info timestamp=2018-08-02T11:35:05.371744Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:35:05.373704Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmicrzff-9hgc2 Pod phase: Running level=info timestamp=2018-08-02T11:34:56.589038Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:34:56.589794Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:34:56.592627Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:35:07.603726Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:35:07.628165Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmicrzff" level=info timestamp=2018-08-02T11:35:07.629548Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:35:07.629745Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmif7jmr-v4n9c Pod phase: Running level=info timestamp=2018-08-02T11:34:57.783783Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:34:57.784039Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:34:57.788661Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:35:08.067538Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:35:08.119292Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmif7jmr" level=info timestamp=2018-08-02T11:35:08.120017Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:35:08.120213Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmis9q4t-ppbrg Pod phase: Running level=info timestamp=2018-08-02T11:34:56.941276Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:34:56.942075Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:34:56.945064Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:35:06.954876Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:35:07.005426Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmis9q4t" level=info timestamp=2018-08-02T11:35:07.006224Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:35:07.006417Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [181.966 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 with a service matching the vmi exposed [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:272 should fail to reach the vmi if an invalid servicename is used /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:303 Unexpected Warning event received: testvmis9q4t,11736337-9648-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:34:51.962912Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmis9q4t kind=VirtualMachineInstance uid=11736337-9648-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmis9q4t-ppbrg" level=info timestamp=2018-08-02T11:35:06.978940Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmis9q4t kind=VirtualMachineInstance uid=11736337-9648-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmis9q4t-ppbrg" level=error timestamp=2018-08-02T11:35:07.018356Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmis9q4t kind=VirtualMachineInstance uid=11736337-9648-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:37:20 http: TLS handshake error from 10.244.1.1:59898: EOF level=info timestamp=2018-08-02T11:37:26.643107Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:37:30 http: TLS handshake error from 10.244.1.1:59904: EOF level=info timestamp=2018-08-02T11:37:32.758630Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:37:32.800983Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:37:40 http: TLS handshake error from 10.244.1.1:59910: EOF level=info timestamp=2018-08-02T11:37:45.403888Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:37:50 http: TLS handshake error from 10.244.1.1:59916: EOF level=info timestamp=2018-08-02T11:37:56.866636Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:38:00 http: TLS handshake error from 10.244.1.1:59922: EOF level=info timestamp=2018-08-02T11:38:02.830327Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:38:02.891735Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:38:08.003617Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:38:08.006814Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:38:10 http: TLS handshake error from 10.244.1.1:59928: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:36:27 http: TLS handshake error from 10.244.0.1:60118: EOF level=info timestamp=2018-08-02T11:36:29.463257Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:36:37 http: TLS handshake error from 10.244.0.1:60178: EOF 2018/08/02 11:36:47 http: TLS handshake error from 10.244.0.1:60238: EOF 2018/08/02 11:36:57 http: TLS handshake error from 10.244.0.1:60298: EOF level=info timestamp=2018-08-02T11:36:59.447698Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:37:07 http: TLS handshake error from 10.244.0.1:60358: EOF 2018/08/02 11:37:17 http: TLS handshake error from 10.244.0.1:60418: EOF 2018/08/02 11:37:27 http: TLS handshake error from 10.244.0.1:60478: EOF level=info timestamp=2018-08-02T11:37:29.499994Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:37:37 http: TLS handshake error from 10.244.0.1:60538: EOF 2018/08/02 11:37:47 http: TLS handshake error from 10.244.0.1:60598: EOF 2018/08/02 11:37:57 http: TLS handshake error from 10.244.0.1:60658: EOF level=info timestamp=2018-08-02T11:37:59.505692Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:38:07 http: TLS handshake error from 10.244.0.1:60718: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:34:52.073995Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.141217Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicrzff kind= uid=11822732-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:34:52.141519Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicrzff kind= uid=11822732-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.454857Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi7k7jv\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi7k7jv" level=info timestamp=2018-08-02T11:34:52.613020Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmicrzff\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmicrzff" level=info timestamp=2018-08-02T11:37:54.008561Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiw6w8k kind= uid=7debc3c2-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:37:54.012502Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiw6w8k kind= uid=7debc3c2-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.044731Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5ztv2 kind= uid=7df2e55f-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:37:54.045157Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5ztv2 kind= uid=7df2e55f-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.086800Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:37:54.086961Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.158171Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qrjm kind= uid=7e00078b-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:37:54.158510Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qrjm kind= uid=7e00078b-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.357687Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmij7n9v\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmij7n9v" level=info timestamp=2018-08-02T11:37:54.836276Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi5qrjm\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi5qrjm" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:38:12.615898Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiw6w8k kind= uid=7debc3c2-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:38:12.617261Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiw6w8k kind= uid=7debc3c2-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:38:12.617983Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiw6w8k" level=info timestamp=2018-08-02T11:38:12.698734Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmiw6w8k, existing: true\n" level=info timestamp=2018-08-02T11:38:12.698933Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:38:12.699006Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:38:12.699210Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiw6w8k kind= uid=7debc3c2-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:38:12.700826Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiw6w8k kind= uid=7debc3c2-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:38:12.701212Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiw6w8k" level=info timestamp=2018-08-02T11:38:12.811974Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5qrjm, existing: true\n" level=info timestamp=2018-08-02T11:38:12.812184Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:38:12.812261Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:38:12.812563Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5qrjm kind= uid=7e00078b-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:38:12.814162Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5qrjm kind= uid=7e00078b-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:38:12.814985Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5qrjm" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:38:09.734203Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:38:09.738884Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:38:09.742141Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmij7n9v" level=info timestamp=2018-08-02T11:38:10.382668Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmij7n9v, existing: true\n" level=info timestamp=2018-08-02T11:38:10.382877Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:38:10.383015Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:38:10.383859Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:38:10.386370Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:38:10.386700Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmij7n9v" level=info timestamp=2018-08-02T11:38:11.677201Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmij7n9v, existing: true\n" level=info timestamp=2018-08-02T11:38:11.677836Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:38:11.677923Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:38:11.679249Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:38:11.685493Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:38:11.690034Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmij7n9v" Pod name: virt-launcher-testvmi5qrjm-s2ckx Pod phase: Running level=info timestamp=2018-08-02T11:37:59.285049Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:37:59.285184Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:37:59.290696Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:38:10.853058Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:38:10.873835Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi5qrjm" level=info timestamp=2018-08-02T11:38:10.874707Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:38:10.874873Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmi5ztv2-zrwg6 Pod phase: Running level=info timestamp=2018-08-02T11:37:58.768620Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:37:58.768832Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:37:58.772598Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:38:08.946229Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:38:08.987780Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi5ztv2" level=info timestamp=2018-08-02T11:38:08.992251Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:38:08.992499Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmij7n9v-qnrqt Pod phase: Running level=info timestamp=2018-08-02T11:37:57.433768Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:37:57.434168Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:37:57.436546Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:38:07.450116Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:38:07.510789Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmij7n9v" level=info timestamp=2018-08-02T11:38:07.513290Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:38:07.513735Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiw6w8k-9lqg2 Pod phase: Running level=info timestamp=2018-08-02T11:37:58.870509Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:37:58.870622Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:37:58.872606Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:38:10.489050Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:38:10.657961Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiw6w8k" level=info timestamp=2018-08-02T11:38:10.660787Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:38:10.661021Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:40:00 http: TLS handshake error from 10.244.1.1:59994: EOF level=info timestamp=2018-08-02T11:40:03.224941Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:40:03.255048Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:40:07.869643Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:40:07.873277Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:40:10 http: TLS handshake error from 10.244.1.1:60000: EOF level=info timestamp=2018-08-02T11:40:15.987249Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:40:20 http: TLS handshake error from 10.244.1.1:60006: EOF level=info timestamp=2018-08-02T11:40:27.796088Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:40:30 http: TLS handshake error from 10.244.1.1:60012: EOF level=info timestamp=2018-08-02T11:40:33.284507Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:40:33.364009Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:40:40 http: TLS handshake error from 10.244.1.1:60018: EOF level=info timestamp=2018-08-02T11:40:46.088510Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:40:50 http: TLS handshake error from 10.244.1.1:60024: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:39:17 http: TLS handshake error from 10.244.0.1:32906: EOF 2018/08/02 11:39:27 http: TLS handshake error from 10.244.0.1:32966: EOF level=info timestamp=2018-08-02T11:39:29.493221Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:39:37 http: TLS handshake error from 10.244.0.1:33026: EOF 2018/08/02 11:39:47 http: TLS handshake error from 10.244.0.1:33086: EOF 2018/08/02 11:39:57 http: TLS handshake error from 10.244.0.1:33146: EOF level=info timestamp=2018-08-02T11:39:59.219643Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:39:59.239961Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:39:59.394693Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:40:07 http: TLS handshake error from 10.244.0.1:33206: EOF 2018/08/02 11:40:17 http: TLS handshake error from 10.244.0.1:33266: EOF 2018/08/02 11:40:27 http: TLS handshake error from 10.244.0.1:33326: EOF level=info timestamp=2018-08-02T11:40:29.490224Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:40:37 http: TLS handshake error from 10.244.0.1:33386: EOF 2018/08/02 11:40:47 http: TLS handshake error from 10.244.0.1:33446: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:34:52.073995Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7k7jv kind= uid=11794ab5-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.141217Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicrzff kind= uid=11822732-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:34:52.141519Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicrzff kind= uid=11822732-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:34:52.454857Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi7k7jv\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi7k7jv" level=info timestamp=2018-08-02T11:34:52.613020Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmicrzff\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmicrzff" level=info timestamp=2018-08-02T11:37:54.008561Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiw6w8k kind= uid=7debc3c2-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:37:54.012502Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmiw6w8k kind= uid=7debc3c2-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.044731Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5ztv2 kind= uid=7df2e55f-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:37:54.045157Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5ztv2 kind= uid=7df2e55f-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.086800Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:37:54.086961Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.158171Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qrjm kind= uid=7e00078b-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:37:54.158510Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qrjm kind= uid=7e00078b-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.357687Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmij7n9v\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmij7n9v" level=info timestamp=2018-08-02T11:37:54.836276Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi5qrjm\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi5qrjm" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:39:34.501158Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmiw6w8k kind= uid=7debc3c2-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:39:34.503680Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmiw6w8k kind= uid=7debc3c2-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:39:34.504015Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmiw6w8k" level=info timestamp=2018-08-02T11:40:35.304843Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmis9q4t, existing: false\n" level=info timestamp=2018-08-02T11:40:35.305744Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:40:35.306242Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmis9q4t kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:40:35.306818Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmis9q4t kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:40:36.937883Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmicrzff, existing: false\n" level=info timestamp=2018-08-02T11:40:36.938145Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:40:36.938628Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmicrzff kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:40:36.938951Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmicrzff kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:40:54.571437Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5ztv2, existing: true\n" level=info timestamp=2018-08-02T11:40:54.571653Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:40:54.571727Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:40:54.571960Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5ztv2 kind= uid=7df2e55f-9648-11e8-869c-525500d15501 msg="Processing vmi update" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:39:31.102466Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:39:31.102497Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:39:31.102769Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:39:31.107273Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:39:31.107566Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmij7n9v" level=info timestamp=2018-08-02T11:40:33.694612Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi7k7jv, existing: false\n" level=info timestamp=2018-08-02T11:40:33.695411Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:40:33.695693Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:40:33.696172Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmi7k7jv kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:40:53.029774Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmij7n9v, existing: true\n" level=info timestamp=2018-08-02T11:40:53.030872Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:40:53.032489Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:40:53.033159Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:40:53.038229Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:40:53.038949Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmij7n9v" Pod name: virt-launcher-testvmi5qrjm-s2ckx Pod phase: Running level=info timestamp=2018-08-02T11:37:59.285049Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:37:59.285184Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:37:59.290696Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:38:10.853058Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:38:10.873835Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi5qrjm" level=info timestamp=2018-08-02T11:38:10.874707Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:38:10.874873Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmi5ztv2-zrwg6 Pod phase: Running level=info timestamp=2018-08-02T11:37:58.768620Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:37:58.768832Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:37:58.772598Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:38:08.946229Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:38:08.987780Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi5ztv2" level=info timestamp=2018-08-02T11:38:08.992251Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:38:08.992499Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmij7n9v-qnrqt Pod phase: Running level=info timestamp=2018-08-02T11:37:57.433768Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:37:57.434168Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:37:57.436546Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:38:07.450116Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:38:07.510789Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmij7n9v" level=info timestamp=2018-08-02T11:38:07.513290Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:38:07.513735Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmiw6w8k-9lqg2 Pod phase: Running level=info timestamp=2018-08-02T11:37:58.870509Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:37:58.870622Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:37:58.872606Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:38:10.489050Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:38:10.657961Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmiw6w8k" level=info timestamp=2018-08-02T11:38:10.660787Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:38:10.661021Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [181.963 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 with a subdomain and a headless service given [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:319 should be able to reach the vmi via its unique fully qualified domain name /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:342 Unexpected Warning event received: testvmiw6w8k,7debc3c2-9648-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:37:54.029001Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmiw6w8k kind=VirtualMachineInstance uid=7debc3c2-9648-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmiw6w8k-9lqg2" level=info timestamp=2018-08-02T11:38:11.947398Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmiw6w8k kind=VirtualMachineInstance uid=7debc3c2-9648-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmiw6w8k-9lqg2" level=error timestamp=2018-08-02T11:38:11.972607Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmiw6w8k kind=VirtualMachineInstance uid=7debc3c2-9648-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:40:20 http: TLS handshake error from 10.244.1.1:60006: EOF level=info timestamp=2018-08-02T11:40:27.796088Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:40:30 http: TLS handshake error from 10.244.1.1:60012: EOF level=info timestamp=2018-08-02T11:40:33.284507Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:40:33.364009Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:40:40 http: TLS handshake error from 10.244.1.1:60018: EOF level=info timestamp=2018-08-02T11:40:46.088510Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:40:50 http: TLS handshake error from 10.244.1.1:60024: EOF level=info timestamp=2018-08-02T11:40:57.972523Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:41:00 http: TLS handshake error from 10.244.1.1:60030: EOF level=info timestamp=2018-08-02T11:41:03.390059Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:41:03.420168Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:41:07.880665Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:41:07.884613Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:41:10 http: TLS handshake error from 10.244.1.1:60036: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:39:37 http: TLS handshake error from 10.244.0.1:33026: EOF 2018/08/02 11:39:47 http: TLS handshake error from 10.244.0.1:33086: EOF 2018/08/02 11:39:57 http: TLS handshake error from 10.244.0.1:33146: EOF level=info timestamp=2018-08-02T11:39:59.219643Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:39:59.239961Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:39:59.394693Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:40:07 http: TLS handshake error from 10.244.0.1:33206: EOF 2018/08/02 11:40:17 http: TLS handshake error from 10.244.0.1:33266: EOF 2018/08/02 11:40:27 http: TLS handshake error from 10.244.0.1:33326: EOF level=info timestamp=2018-08-02T11:40:29.490224Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:40:37 http: TLS handshake error from 10.244.0.1:33386: EOF 2018/08/02 11:40:47 http: TLS handshake error from 10.244.0.1:33446: EOF 2018/08/02 11:40:57 http: TLS handshake error from 10.244.0.1:33506: EOF level=info timestamp=2018-08-02T11:40:59.435560Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:41:07 http: TLS handshake error from 10.244.0.1:33566: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:37:54.086961Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.158171Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qrjm kind= uid=7e00078b-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:37:54.158510Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qrjm kind= uid=7e00078b-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.357687Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmij7n9v\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmij7n9v" level=info timestamp=2018-08-02T11:37:54.836276Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi5qrjm\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi5qrjm" level=info timestamp=2018-08-02T11:40:56.046258Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicqxmn kind= uid=ea6c670d-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:40:56.049639Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicqxmn kind= uid=ea6c670d-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:40:56.076855Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmildtmr kind= uid=ea73238f-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:40:56.077226Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmildtmr kind= uid=ea73238f-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:40:56.132448Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:40:56.132736Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:40:56.172849Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7x2zx kind= uid=ea806a11-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:40:56.173132Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7x2zx kind= uid=ea806a11-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:40:56.553268Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmildtmr\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmildtmr" level=info timestamp=2018-08-02T11:40:56.658151Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi7x2zx\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi7x2zx" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:41:14.041595Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmicqxmn kind= uid=ea6c670d-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:41:14.043642Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmicqxmn kind= uid=ea6c670d-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:41:14.044021Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmicqxmn" level=info timestamp=2018-08-02T11:41:14.060481Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi7x2zx, existing: true\n" level=info timestamp=2018-08-02T11:41:14.060624Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:41:14.060725Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:41:14.060908Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi7x2zx kind= uid=ea806a11-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:41:14.062471Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi7x2zx kind= uid=ea806a11-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:41:14.062836Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi7x2zx" level=info timestamp=2018-08-02T11:41:14.072560Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmildtmr, existing: true\n" level=info timestamp=2018-08-02T11:41:14.072703Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:41:14.072857Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:41:14.073033Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmildtmr kind= uid=ea73238f-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:41:14.074755Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmildtmr kind= uid=ea73238f-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:41:14.075067Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmildtmr" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:41:10.674253Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:41:10.678769Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:41:10.682340Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi9fgnv" level=info timestamp=2018-08-02T11:41:11.327311Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi9fgnv, existing: true\n" level=info timestamp=2018-08-02T11:41:11.327478Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:41:11.327572Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:41:11.327782Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:41:11.335311Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:41:11.336563Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi9fgnv" level=info timestamp=2018-08-02T11:41:12.617419Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi9fgnv, existing: true\n" level=info timestamp=2018-08-02T11:41:12.617542Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:41:12.617571Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:41:12.617797Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:41:12.618948Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:41:12.619195Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi9fgnv" Pod name: virt-launcher-testvmi7x2zx-4p6wt Pod phase: Running level=info timestamp=2018-08-02T11:41:00.574390Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:41:00.574618Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:41:00.580208Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:41:12.130183Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:41:12.166220Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi7x2zx" level=info timestamp=2018-08-02T11:41:12.174201Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:41:12.174466Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmi9fgnv-cttrk Pod phase: Running level=info timestamp=2018-08-02T11:40:58.964347Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:40:58.964783Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:40:58.966521Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:41:08.976550Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:41:09.115956Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi9fgnv" level=info timestamp=2018-08-02T11:41:09.118019Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:41:09.118501Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmicqxmn-n9ph5 Pod phase: Running level=info timestamp=2018-08-02T11:41:00.575446Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:41:00.575565Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:41:00.592236Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:41:12.508257Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:41:12.528174Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmicqxmn" level=info timestamp=2018-08-02T11:41:12.529629Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:41:12.529886Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmildtmr-4kn74 Pod phase: Running level=info timestamp=2018-08-02T11:41:01.852641Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:41:01.852796Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:41:01.862057Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:41:12.564785Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:41:12.591982Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmildtmr" level=info timestamp=2018-08-02T11:41:12.592898Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:41:12.593131Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:43:00 http: TLS handshake error from 10.244.1.1:60102: EOF level=info timestamp=2018-08-02T11:43:03.650703Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:43:03.763311Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:43:07.890501Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:43:07.895091Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:43:10 http: TLS handshake error from 10.244.1.1:60108: EOF level=info timestamp=2018-08-02T11:43:16.583286Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:43:20 http: TLS handshake error from 10.244.1.1:60114: EOF level=info timestamp=2018-08-02T11:43:28.708737Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:43:30 http: TLS handshake error from 10.244.1.1:60120: EOF level=info timestamp=2018-08-02T11:43:33.724351Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:43:33.826274Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:43:40 http: TLS handshake error from 10.244.1.1:60126: EOF level=info timestamp=2018-08-02T11:43:46.677236Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:43:50 http: TLS handshake error from 10.244.1.1:60132: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:41:59.425979Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:42:07 http: TLS handshake error from 10.244.0.1:33926: EOF 2018/08/02 11:42:17 http: TLS handshake error from 10.244.0.1:33986: EOF 2018/08/02 11:42:27 http: TLS handshake error from 10.244.0.1:34046: EOF level=info timestamp=2018-08-02T11:42:29.430309Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:42:37 http: TLS handshake error from 10.244.0.1:34106: EOF 2018/08/02 11:42:47 http: TLS handshake error from 10.244.0.1:34166: EOF 2018/08/02 11:42:57 http: TLS handshake error from 10.244.0.1:34226: EOF level=info timestamp=2018-08-02T11:42:59.410564Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:43:07 http: TLS handshake error from 10.244.0.1:34286: EOF 2018/08/02 11:43:17 http: TLS handshake error from 10.244.0.1:34346: EOF 2018/08/02 11:43:27 http: TLS handshake error from 10.244.0.1:34406: EOF level=info timestamp=2018-08-02T11:43:29.480921Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:43:37 http: TLS handshake error from 10.244.0.1:34466: EOF 2018/08/02 11:43:47 http: TLS handshake error from 10.244.0.1:34526: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:37:54.086961Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmij7n9v kind= uid=7df7b0c8-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.158171Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qrjm kind= uid=7e00078b-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:37:54.158510Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5qrjm kind= uid=7e00078b-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:37:54.357687Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmij7n9v\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmij7n9v" level=info timestamp=2018-08-02T11:37:54.836276Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi5qrjm\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi5qrjm" level=info timestamp=2018-08-02T11:40:56.046258Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicqxmn kind= uid=ea6c670d-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:40:56.049639Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmicqxmn kind= uid=ea6c670d-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:40:56.076855Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmildtmr kind= uid=ea73238f-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:40:56.077226Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmildtmr kind= uid=ea73238f-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:40:56.132448Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:40:56.132736Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:40:56.172849Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7x2zx kind= uid=ea806a11-9648-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:40:56.173132Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7x2zx kind= uid=ea806a11-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:40:56.553268Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmildtmr\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmildtmr" level=info timestamp=2018-08-02T11:40:56.658151Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi7x2zx\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi7x2zx" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:42:35.843953Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:42:35.844030Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:42:35.844590Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmicqxmn kind= uid=ea6c670d-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:42:35.849454Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmicqxmn kind= uid=ea6c670d-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:42:35.849897Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmicqxmn" level=info timestamp=2018-08-02T11:42:35.861806Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi7x2zx, existing: true\n" level=info timestamp=2018-08-02T11:42:35.861967Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:42:35.862042Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:42:35.862328Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi7x2zx kind= uid=ea806a11-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:42:35.864248Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi7x2zx kind= uid=ea806a11-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:42:35.866199Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi7x2zx" level=info timestamp=2018-08-02T11:43:38.421543Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5ztv2, existing: false\n" level=info timestamp=2018-08-02T11:43:38.422315Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:43:38.422920Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmi5ztv2 kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:43:38.423690Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmi5ztv2 kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:42:32.013758Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:42:32.013854Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:42:32.014497Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:42:32.019604Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:42:32.032539Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi9fgnv" level=info timestamp=2018-08-02T11:43:36.880746Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmij7n9v, existing: false\n" level=info timestamp=2018-08-02T11:43:36.881360Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:43:36.881737Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:43:36.883096Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmij7n9v kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:43:53.953790Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi9fgnv, existing: true\n" level=info timestamp=2018-08-02T11:43:53.955261Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:43:53.955400Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:43:53.955747Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:43:53.962440Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind= uid=ea7a5549-9648-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:43:53.963237Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi9fgnv" Pod name: virt-launcher-testvmi7x2zx-4p6wt Pod phase: Running level=info timestamp=2018-08-02T11:41:00.574390Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:41:00.574618Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:41:00.580208Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:41:12.130183Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:41:12.166220Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi7x2zx" level=info timestamp=2018-08-02T11:41:12.174201Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:41:12.174466Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmi9fgnv-cttrk Pod phase: Running level=info timestamp=2018-08-02T11:40:58.964347Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:40:58.964783Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:40:58.966521Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:41:08.976550Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:41:09.115956Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi9fgnv" level=info timestamp=2018-08-02T11:41:09.118019Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:41:09.118501Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmicqxmn-n9ph5 Pod phase: Running level=info timestamp=2018-08-02T11:41:00.575446Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:41:00.575565Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:41:00.592236Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:41:12.508257Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:41:12.528174Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmicqxmn" level=info timestamp=2018-08-02T11:41:12.529629Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:41:12.529886Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmildtmr-4kn74 Pod phase: Running level=info timestamp=2018-08-02T11:41:01.852641Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:41:01.852796Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:41:01.862057Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:41:12.564785Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:41:12.591982Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmildtmr" level=info timestamp=2018-08-02T11:41:12.592898Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:41:12.593131Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [182.050 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 VirtualMachineInstance with custom interface model [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:368 should expose the right device type to the guest /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:369 Unexpected Warning event received: testvmicqxmn,ea6c670d-9648-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:40:55.917098Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmicqxmn kind=VirtualMachineInstance uid=ea6c670d-9648-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmicqxmn-n9ph5" level=info timestamp=2018-08-02T11:41:13.251310Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmicqxmn kind=VirtualMachineInstance uid=ea6c670d-9648-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmicqxmn-n9ph5" level=error timestamp=2018-08-02T11:41:13.293796Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmicqxmn kind=VirtualMachineInstance uid=ea6c670d-9648-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:43:10 http: TLS handshake error from 10.244.1.1:60108: EOF level=info timestamp=2018-08-02T11:43:16.583286Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:43:20 http: TLS handshake error from 10.244.1.1:60114: EOF level=info timestamp=2018-08-02T11:43:28.708737Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:43:30 http: TLS handshake error from 10.244.1.1:60120: EOF level=info timestamp=2018-08-02T11:43:33.724351Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:43:33.826274Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:43:40 http: TLS handshake error from 10.244.1.1:60126: EOF level=info timestamp=2018-08-02T11:43:46.677236Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:43:50 http: TLS handshake error from 10.244.1.1:60132: EOF level=info timestamp=2018-08-02T11:43:58.920784Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:44:00 http: TLS handshake error from 10.244.1.1:60138: EOF level=info timestamp=2018-08-02T11:44:03.814563Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:44:03.902007Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:44:10 http: TLS handshake error from 10.244.1.1:60144: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:42:27 http: TLS handshake error from 10.244.0.1:34046: EOF level=info timestamp=2018-08-02T11:42:29.430309Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:42:37 http: TLS handshake error from 10.244.0.1:34106: EOF 2018/08/02 11:42:47 http: TLS handshake error from 10.244.0.1:34166: EOF 2018/08/02 11:42:57 http: TLS handshake error from 10.244.0.1:34226: EOF level=info timestamp=2018-08-02T11:42:59.410564Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:43:07 http: TLS handshake error from 10.244.0.1:34286: EOF 2018/08/02 11:43:17 http: TLS handshake error from 10.244.0.1:34346: EOF 2018/08/02 11:43:27 http: TLS handshake error from 10.244.0.1:34406: EOF level=info timestamp=2018-08-02T11:43:29.480921Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:43:37 http: TLS handshake error from 10.244.0.1:34466: EOF 2018/08/02 11:43:47 http: TLS handshake error from 10.244.0.1:34526: EOF 2018/08/02 11:43:57 http: TLS handshake error from 10.244.0.1:34586: EOF level=info timestamp=2018-08-02T11:43:59.589312Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:44:07 http: TLS handshake error from 10.244.0.1:34646: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:40:56.173132Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7x2zx kind= uid=ea806a11-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:40:56.553268Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmildtmr\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmildtmr" level=info timestamp=2018-08-02T11:40:56.658151Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi7x2zx\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi7x2zx" level=info timestamp=2018-08-02T11:43:58.039670Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmis5tk9 kind= uid=56e75176-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:43:58.046447Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmis5tk9 kind= uid=56e75176-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:43:58.068743Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:43:58.069058Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:43:58.115043Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:43:58.115427Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:43:58.155448Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivkczp kind= uid=56f8f5b1-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:43:58.155629Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivkczp kind= uid=56f8f5b1-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:43:58.415919Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi2sjj4\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" level=info timestamp=2018-08-02T11:43:58.832240Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi2sjj4\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" level=info timestamp=2018-08-02T11:43:58.943080Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmivkczp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmivkczp" level=info timestamp=2018-08-02T11:43:59.271659Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmivkczp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmivkczp" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:44:16.416081Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:44:16.416793Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:44:16.416943Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" level=info timestamp=2018-08-02T11:44:16.437210Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi2sjj4, existing: true\n" level=info timestamp=2018-08-02T11:44:16.437303Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:44:16.437342Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:44:16.437469Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:44:16.438221Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:44:16.438421Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" level=info timestamp=2018-08-02T11:44:16.478693Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi2sjj4, existing: true\n" level=info timestamp=2018-08-02T11:44:16.478809Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:44:16.478868Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:44:16.478996Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:44:16.479871Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:44:16.480040Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:44:12.536967Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:44:12.538843Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:44:12.539439Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifv8lb" level=info timestamp=2018-08-02T11:44:13.182552Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifv8lb, existing: true\n" level=info timestamp=2018-08-02T11:44:13.182742Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:44:13.182812Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:44:13.184356Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:44:13.187943Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:44:13.189678Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifv8lb" level=info timestamp=2018-08-02T11:44:14.470294Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifv8lb, existing: true\n" level=info timestamp=2018-08-02T11:44:14.470439Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:44:14.470577Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:44:14.470780Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:44:14.473684Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:44:14.474105Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifv8lb" Pod name: virt-launcher-testvmi2sjj4-gmzq4 Pod phase: Running level=info timestamp=2018-08-02T11:44:03.373881Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:44:03.374045Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:44:03.376144Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:44:15.137662Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:44:15.186384Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi2sjj4" level=info timestamp=2018-08-02T11:44:15.188047Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:44:15.188327Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmifv8lb-cnjn9 Pod phase: Running level=info timestamp=2018-08-02T11:44:01.497791Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:44:01.498099Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:44:01.499827Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:44:11.511871Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:44:11.731400Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmifv8lb" level=info timestamp=2018-08-02T11:44:11.736374Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:44:11.736857Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmis5tk9-gblhc Pod phase: Running level=info timestamp=2018-08-02T11:44:03.128786Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:44:03.128997Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:44:03.130721Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:44:14.466547Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:44:14.503286Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmis5tk9" level=info timestamp=2018-08-02T11:44:14.511188Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:44:14.511466Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmivkczp-lt98r Pod phase: Running level=info timestamp=2018-08-02T11:44:04.662643Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:44:04.662802Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:44:04.666982Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:44:16.171297Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:44:16.212902Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmivkczp" level=info timestamp=2018-08-02T11:44:16.214135Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:44:16.214331Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:46:00 http: TLS handshake error from 10.244.1.1:60210: EOF level=info timestamp=2018-08-02T11:46:04.238978Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:46:04.319817Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:46:07.795639Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:46:07.799525Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:46:10 http: TLS handshake error from 10.244.1.1:60216: EOF level=info timestamp=2018-08-02T11:46:17.270602Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:46:20 http: TLS handshake error from 10.244.1.1:60222: EOF level=info timestamp=2018-08-02T11:46:29.764012Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:46:30 http: TLS handshake error from 10.244.1.1:60228: EOF level=info timestamp=2018-08-02T11:46:34.301099Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:46:34.389616Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:46:40 http: TLS handshake error from 10.244.1.1:60234: EOF level=info timestamp=2018-08-02T11:46:47.435627Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:46:50 http: TLS handshake error from 10.244.1.1:60240: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:44:59.574268Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:45:07 http: TLS handshake error from 10.244.0.1:35006: EOF 2018/08/02 11:45:17 http: TLS handshake error from 10.244.0.1:35066: EOF 2018/08/02 11:45:27 http: TLS handshake error from 10.244.0.1:35126: EOF level=info timestamp=2018-08-02T11:45:29.476620Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:45:37 http: TLS handshake error from 10.244.0.1:35186: EOF 2018/08/02 11:45:47 http: TLS handshake error from 10.244.0.1:35246: EOF 2018/08/02 11:45:57 http: TLS handshake error from 10.244.0.1:35306: EOF level=info timestamp=2018-08-02T11:45:59.447701Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:46:07 http: TLS handshake error from 10.244.0.1:35366: EOF 2018/08/02 11:46:17 http: TLS handshake error from 10.244.0.1:35426: EOF 2018/08/02 11:46:27 http: TLS handshake error from 10.244.0.1:35486: EOF level=info timestamp=2018-08-02T11:46:29.408616Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:46:37 http: TLS handshake error from 10.244.0.1:35546: EOF 2018/08/02 11:46:47 http: TLS handshake error from 10.244.0.1:35606: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:40:56.173132Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi7x2zx kind= uid=ea806a11-9648-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:40:56.553268Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmildtmr\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmildtmr" level=info timestamp=2018-08-02T11:40:56.658151Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi7x2zx\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi7x2zx" level=info timestamp=2018-08-02T11:43:58.039670Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmis5tk9 kind= uid=56e75176-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:43:58.046447Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmis5tk9 kind= uid=56e75176-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:43:58.068743Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:43:58.069058Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:43:58.115043Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:43:58.115427Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:43:58.155448Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivkczp kind= uid=56f8f5b1-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:43:58.155629Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivkczp kind= uid=56f8f5b1-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:43:58.415919Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi2sjj4\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" level=info timestamp=2018-08-02T11:43:58.832240Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi2sjj4\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" level=info timestamp=2018-08-02T11:43:58.943080Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmivkczp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmivkczp" level=info timestamp=2018-08-02T11:43:59.271659Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmivkczp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmivkczp" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:45:38.369885Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:45:38.369955Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:45:38.370244Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:45:38.373648Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi2sjj4 kind= uid=56ed26e0-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:45:38.374027Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" level=info timestamp=2018-08-02T11:45:38.728200Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmivkczp, existing: true\n" level=info timestamp=2018-08-02T11:45:38.728498Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:45:38.728596Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:45:38.728847Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmivkczp kind= uid=56f8f5b1-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:45:38.732443Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmivkczp kind= uid=56f8f5b1-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:45:38.732817Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivkczp" level=info timestamp=2018-08-02T11:46:41.166765Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmildtmr, existing: false\n" level=info timestamp=2018-08-02T11:46:41.167572Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:46:41.168158Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmildtmr kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:46:41.168896Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmildtmr kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:45:33.877915Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:45:33.877989Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:45:33.879509Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:45:33.884537Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:45:33.885769Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifv8lb" level=info timestamp=2018-08-02T11:46:37.805525Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi9fgnv, existing: false\n" level=info timestamp=2018-08-02T11:46:37.806360Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:46:37.806713Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:46:37.807534Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmi9fgnv kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:46:55.809948Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifv8lb, existing: true\n" level=info timestamp=2018-08-02T11:46:55.810931Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:46:55.811030Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:46:55.812427Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:46:55.821196Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind= uid=56f2cd65-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:46:55.821858Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifv8lb" Pod name: virt-launcher-testvmi2sjj4-gmzq4 Pod phase: Running level=info timestamp=2018-08-02T11:44:03.373881Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:44:03.374045Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:44:03.376144Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:44:15.137662Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:44:15.186384Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi2sjj4" level=info timestamp=2018-08-02T11:44:15.188047Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:44:15.188327Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmifv8lb-cnjn9 Pod phase: Running level=info timestamp=2018-08-02T11:44:01.497791Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:44:01.498099Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:44:01.499827Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:44:11.511871Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:44:11.731400Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmifv8lb" level=info timestamp=2018-08-02T11:44:11.736374Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:44:11.736857Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmis5tk9-gblhc Pod phase: Running level=info timestamp=2018-08-02T11:44:03.128786Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:44:03.128997Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:44:03.130721Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:44:14.466547Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:44:14.503286Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmis5tk9" level=info timestamp=2018-08-02T11:44:14.511188Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:44:14.511466Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmivkczp-lt98r Pod phase: Running level=info timestamp=2018-08-02T11:44:04.662643Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:44:04.662802Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:44:04.666982Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:44:16.171297Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:44:16.212902Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmivkczp" level=info timestamp=2018-08-02T11:44:16.214135Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:44:16.214331Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [181.968 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 VirtualMachineInstance with default interface model [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:382 should expose the right device type to the guest /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:383 Unexpected Warning event received: testvmis5tk9,56e75176-9649-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:43:58.258173Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmis5tk9 kind=VirtualMachineInstance uid=56e75176-9649-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmis5tk9-gblhc" level=info timestamp=2018-08-02T11:44:15.571639Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmis5tk9 kind=VirtualMachineInstance uid=56e75176-9649-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmis5tk9-gblhc" level=error timestamp=2018-08-02T11:44:15.630951Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmis5tk9 kind=VirtualMachineInstance uid=56e75176-9649-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:46:10 http: TLS handshake error from 10.244.1.1:60216: EOF level=info timestamp=2018-08-02T11:46:17.270602Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:46:20 http: TLS handshake error from 10.244.1.1:60222: EOF level=info timestamp=2018-08-02T11:46:29.764012Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:46:30 http: TLS handshake error from 10.244.1.1:60228: EOF level=info timestamp=2018-08-02T11:46:34.301099Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:46:34.389616Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:46:40 http: TLS handshake error from 10.244.1.1:60234: EOF level=info timestamp=2018-08-02T11:46:47.435627Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:46:50 http: TLS handshake error from 10.244.1.1:60240: EOF level=info timestamp=2018-08-02T11:46:59.838086Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:47:00 http: TLS handshake error from 10.244.1.1:60246: EOF level=info timestamp=2018-08-02T11:47:04.368421Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:47:04.470902Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:47:10 http: TLS handshake error from 10.244.1.1:60252: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:45:27 http: TLS handshake error from 10.244.0.1:35126: EOF level=info timestamp=2018-08-02T11:45:29.476620Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:45:37 http: TLS handshake error from 10.244.0.1:35186: EOF 2018/08/02 11:45:47 http: TLS handshake error from 10.244.0.1:35246: EOF 2018/08/02 11:45:57 http: TLS handshake error from 10.244.0.1:35306: EOF level=info timestamp=2018-08-02T11:45:59.447701Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:46:07 http: TLS handshake error from 10.244.0.1:35366: EOF 2018/08/02 11:46:17 http: TLS handshake error from 10.244.0.1:35426: EOF 2018/08/02 11:46:27 http: TLS handshake error from 10.244.0.1:35486: EOF level=info timestamp=2018-08-02T11:46:29.408616Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:46:37 http: TLS handshake error from 10.244.0.1:35546: EOF 2018/08/02 11:46:47 http: TLS handshake error from 10.244.0.1:35606: EOF 2018/08/02 11:46:57 http: TLS handshake error from 10.244.0.1:35666: EOF level=info timestamp=2018-08-02T11:46:59.449617Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:47:07 http: TLS handshake error from 10.244.0.1:35726: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:43:58.415919Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi2sjj4\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" level=info timestamp=2018-08-02T11:43:58.832240Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi2sjj4\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" level=info timestamp=2018-08-02T11:43:58.943080Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmivkczp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmivkczp" level=info timestamp=2018-08-02T11:43:59.271659Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmivkczp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmivkczp" level=info timestamp=2018-08-02T11:46:59.994238Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijbm2m kind= uid=c35cccef-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:46:59.999318Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijbm2m kind= uid=c35cccef-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.027703Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmirr654 kind= uid=c3611b01-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:47:00.028036Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmirr654 kind= uid=c3611b01-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.062963Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:47:00.063324Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.121313Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifdpqc kind= uid=c36b15bb-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:47:00.121666Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifdpqc kind= uid=c36b15bb-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.180476Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmirr654\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmirr654" level=info timestamp=2018-08-02T11:47:00.351779Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmirr654\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmirr654" level=info timestamp=2018-08-02T11:47:01.016981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmijbm2m\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmijbm2m" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:47:17.403486Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmirr654 kind= uid=c3611b01-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:47:17.405465Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmirr654 kind= uid=c3611b01-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:47:17.405718Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmirr654" level=info timestamp=2018-08-02T11:47:17.413666Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmijbm2m, existing: true\n" level=info timestamp=2018-08-02T11:47:17.413756Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:47:17.413804Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:47:17.413962Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmijbm2m kind= uid=c35cccef-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:47:17.415122Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmijbm2m kind= uid=c35cccef-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:47:17.415915Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmijbm2m" level=info timestamp=2018-08-02T11:47:17.451130Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmirr654, existing: true\n" level=info timestamp=2018-08-02T11:47:17.451235Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:47:17.451289Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:47:17.451486Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmirr654 kind= uid=c3611b01-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:47:17.453876Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmirr654 kind= uid=c3611b01-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:47:17.454138Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmirr654" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:47:14.753521Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:47:14.755022Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:47:14.755403Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmih2b99" level=info timestamp=2018-08-02T11:47:15.075972Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmih2b99, existing: true\n" level=info timestamp=2018-08-02T11:47:15.076208Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:47:15.076280Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:47:15.076529Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:47:15.079031Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:47:15.079426Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmih2b99" level=info timestamp=2018-08-02T11:47:15.720036Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmih2b99, existing: true\n" level=info timestamp=2018-08-02T11:47:15.720372Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:47:15.720504Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:47:15.720730Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:47:15.723410Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:47:15.723758Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmih2b99" Pod name: virt-launcher-testvmifdpqc-dnxfs Pod phase: Running level=info timestamp=2018-08-02T11:47:05.438824Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:47:05.438956Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:47:05.440684Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" Pod name: virt-launcher-testvmih2b99-c8ctp Pod phase: Running level=info timestamp=2018-08-02T11:47:02.882160Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:47:02.882431Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:47:02.884351Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:47:12.898376Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:47:13.037974Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmih2b99" level=info timestamp=2018-08-02T11:47:13.050025Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:47:13.050650Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmijbm2m-8ckz9 Pod phase: Running level=info timestamp=2018-08-02T11:47:05.303544Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:47:05.303696Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:47:05.305512Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:47:16.689422Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:47:16.739683Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmijbm2m" level=info timestamp=2018-08-02T11:47:16.740444Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:47:16.740648Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmirr654-l8s7r Pod phase: Running level=info timestamp=2018-08-02T11:47:04.465406Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:47:04.465620Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:47:04.468073Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:47:15.506322Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:47:15.638973Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmirr654" level=info timestamp=2018-08-02T11:47:15.641883Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:47:15.642106Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:48:50 http: TLS handshake error from 10.244.1.1:60312: EOF level=info timestamp=2018-08-02T11:49:00.457947Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:49:00 http: TLS handshake error from 10.244.1.1:60318: EOF level=info timestamp=2018-08-02T11:49:04.674217Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:49:04.746629Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:49:10 http: TLS handshake error from 10.244.1.1:60324: EOF level=info timestamp=2018-08-02T11:49:17.844282Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:49:20 http: TLS handshake error from 10.244.1.1:60330: EOF 2018/08/02 11:49:30 http: TLS handshake error from 10.244.1.1:60336: EOF level=info timestamp=2018-08-02T11:49:30.650981Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:49:34.738445Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:49:34.830443Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:49:40 http: TLS handshake error from 10.244.1.1:60342: EOF level=info timestamp=2018-08-02T11:49:47.936556Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:49:50 http: TLS handshake error from 10.244.1.1:60348: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:48:17 http: TLS handshake error from 10.244.0.1:36146: EOF 2018/08/02 11:48:27 http: TLS handshake error from 10.244.0.1:36206: EOF level=info timestamp=2018-08-02T11:48:29.411367Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:48:37 http: TLS handshake error from 10.244.0.1:36266: EOF 2018/08/02 11:48:47 http: TLS handshake error from 10.244.0.1:36326: EOF 2018/08/02 11:48:57 http: TLS handshake error from 10.244.0.1:36386: EOF level=info timestamp=2018-08-02T11:48:59.506884Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:49:07 http: TLS handshake error from 10.244.0.1:36446: EOF 2018/08/02 11:49:17 http: TLS handshake error from 10.244.0.1:36506: EOF 2018/08/02 11:49:27 http: TLS handshake error from 10.244.0.1:36566: EOF level=info timestamp=2018-08-02T11:49:29.629621Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:49:37 http: TLS handshake error from 10.244.0.1:36626: EOF 2018/08/02 11:49:47 http: TLS handshake error from 10.244.0.1:36686: EOF 2018/08/02 11:49:57 http: TLS handshake error from 10.244.0.1:36746: EOF level=info timestamp=2018-08-02T11:49:59.224406Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:43:58.415919Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi2sjj4\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" level=info timestamp=2018-08-02T11:43:58.832240Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmi2sjj4\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmi2sjj4" level=info timestamp=2018-08-02T11:43:58.943080Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmivkczp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmivkczp" level=info timestamp=2018-08-02T11:43:59.271659Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmivkczp\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmivkczp" level=info timestamp=2018-08-02T11:46:59.994238Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijbm2m kind= uid=c35cccef-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:46:59.999318Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmijbm2m kind= uid=c35cccef-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.027703Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmirr654 kind= uid=c3611b01-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:47:00.028036Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmirr654 kind= uid=c3611b01-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.062963Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:47:00.063324Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.121313Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifdpqc kind= uid=c36b15bb-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:47:00.121666Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifdpqc kind= uid=c36b15bb-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.180476Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmirr654\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmirr654" level=info timestamp=2018-08-02T11:47:00.351779Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmirr654\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmirr654" level=info timestamp=2018-08-02T11:47:01.016981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmijbm2m\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmijbm2m" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:48:39.050936Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmijbm2m kind= uid=c35cccef-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:48:39.066809Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmijbm2m kind= uid=c35cccef-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:48:39.067619Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmijbm2m" level=info timestamp=2018-08-02T11:48:39.365137Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmirr654, existing: true\n" level=info timestamp=2018-08-02T11:48:39.365422Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:48:39.365504Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:48:39.365802Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmirr654 kind= uid=c3611b01-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:48:39.370236Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmirr654 kind= uid=c3611b01-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:48:39.370661Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmirr654" level=info timestamp=2018-08-02T11:48:39.856671Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifdpqc, existing: true\n" level=info timestamp=2018-08-02T11:48:39.856857Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:48:39.856928Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:48:39.857169Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifdpqc kind= uid=c36b15bb-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:48:39.866772Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifdpqc kind= uid=c36b15bb-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:48:39.868691Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifdpqc" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:48:36.420737Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:48:36.420824Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:48:36.421264Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:48:36.431752Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:48:36.433216Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmih2b99" level=info timestamp=2018-08-02T11:49:39.667796Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifv8lb, existing: false\n" level=info timestamp=2018-08-02T11:49:39.668180Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:49:39.668453Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:49:39.669399Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifv8lb kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:49:58.359462Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmih2b99, existing: true\n" level=info timestamp=2018-08-02T11:49:58.360322Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:49:58.360442Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:49:58.360960Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:49:58.369713Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:49:58.370534Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmih2b99" Pod name: virt-launcher-testvmifdpqc-dnxfs Pod phase: Running level=info timestamp=2018-08-02T11:47:05.438824Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:47:05.438956Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:47:05.440684Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:47:17.728044Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:47:17.756860Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmifdpqc" level=info timestamp=2018-08-02T11:47:17.757495Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:47:17.757682Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmih2b99-c8ctp Pod phase: Running level=info timestamp=2018-08-02T11:47:02.882160Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:47:02.882431Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:47:02.884351Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:47:12.898376Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:47:13.037974Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmih2b99" level=info timestamp=2018-08-02T11:47:13.050025Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:47:13.050650Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmijbm2m-8ckz9 Pod phase: Running level=info timestamp=2018-08-02T11:47:05.303544Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:47:05.303696Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:47:05.305512Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:47:16.689422Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:47:16.739683Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmijbm2m" level=info timestamp=2018-08-02T11:47:16.740444Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:47:16.740648Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmirr654-l8s7r Pod phase: Running level=info timestamp=2018-08-02T11:47:04.465406Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:47:04.465620Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:47:04.468073Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:47:15.506322Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:47:15.638973Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmirr654" level=info timestamp=2018-08-02T11:47:15.641883Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:47:15.642106Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [182.373 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 VirtualMachineInstance with custom MAC address [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:402 should configure custom MAC address /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:403 Unexpected Warning event received: testvmijbm2m,c35cccef-9649-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:46:59.969189Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmijbm2m kind=VirtualMachineInstance uid=c35cccef-9649-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmijbm2m-8ckz9" level=info timestamp=2018-08-02T11:47:16.470514Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmijbm2m kind=VirtualMachineInstance uid=c35cccef-9649-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmijbm2m-8ckz9" level=error timestamp=2018-08-02T11:47:16.536265Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmijbm2m kind=VirtualMachineInstance uid=c35cccef-9649-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:49:30 http: TLS handshake error from 10.244.1.1:60336: EOF level=info timestamp=2018-08-02T11:49:30.650981Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:49:34.738445Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:49:34.830443Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:49:40 http: TLS handshake error from 10.244.1.1:60342: EOF level=info timestamp=2018-08-02T11:49:47.936556Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:49:50 http: TLS handshake error from 10.244.1.1:60348: EOF 2018/08/02 11:50:00 http: TLS handshake error from 10.244.1.1:60354: EOF level=info timestamp=2018-08-02T11:50:00.882891Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:50:04.791613Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:50:04.880263Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:50:10.027108Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:50:10.033903Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:50:10 http: TLS handshake error from 10.244.1.1:60360: EOF level=info timestamp=2018-08-02T11:50:18.131526Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:48:37 http: TLS handshake error from 10.244.0.1:36266: EOF 2018/08/02 11:48:47 http: TLS handshake error from 10.244.0.1:36326: EOF 2018/08/02 11:48:57 http: TLS handshake error from 10.244.0.1:36386: EOF level=info timestamp=2018-08-02T11:48:59.506884Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:49:07 http: TLS handshake error from 10.244.0.1:36446: EOF 2018/08/02 11:49:17 http: TLS handshake error from 10.244.0.1:36506: EOF 2018/08/02 11:49:27 http: TLS handshake error from 10.244.0.1:36566: EOF level=info timestamp=2018-08-02T11:49:29.629621Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:49:37 http: TLS handshake error from 10.244.0.1:36626: EOF 2018/08/02 11:49:47 http: TLS handshake error from 10.244.0.1:36686: EOF 2018/08/02 11:49:57 http: TLS handshake error from 10.244.0.1:36746: EOF level=info timestamp=2018-08-02T11:49:59.224406Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:49:59.414756Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:50:07 http: TLS handshake error from 10.244.0.1:36806: EOF 2018/08/02 11:50:17 http: TLS handshake error from 10.244.0.1:36866: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:47:00.062963Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:47:00.063324Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.121313Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifdpqc kind= uid=c36b15bb-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:47:00.121666Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifdpqc kind= uid=c36b15bb-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.180476Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmirr654\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmirr654" level=info timestamp=2018-08-02T11:47:00.351779Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmirr654\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmirr654" level=info timestamp=2018-08-02T11:47:01.016981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmijbm2m\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmijbm2m" level=info timestamp=2018-08-02T11:50:02.361038Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmipq72b kind= uid=300ffb60-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.367430Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmipq72b kind= uid=300ffb60-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.371253Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi22jtk kind= uid=3013b4b6-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.371688Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi22jtk kind= uid=3013b4b6-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.402001Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.402208Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.465223Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.465619Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:50:19.978737Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmipq72b kind= uid=300ffb60-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:50:19.980590Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmipq72b kind= uid=300ffb60-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:50:19.980920Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmipq72b" level=info timestamp=2018-08-02T11:50:19.992407Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmik7fqt, existing: true\n" level=info timestamp=2018-08-02T11:50:19.992559Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:50:19.992627Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:50:19.993087Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:50:19.994783Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:50:19.995108Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmik7fqt" level=info timestamp=2018-08-02T11:50:20.076687Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmik7fqt, existing: true\n" level=info timestamp=2018-08-02T11:50:20.076982Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:50:20.077121Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:50:20.077436Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:50:20.079323Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:50:20.079782Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmik7fqt" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:50:17.655619Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:50:17.658544Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:50:17.658938Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibb6ck" level=info timestamp=2018-08-02T11:50:17.979394Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibb6ck, existing: true\n" level=info timestamp=2018-08-02T11:50:17.979533Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:50:17.979602Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:50:17.979820Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:50:17.982157Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:50:17.982513Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibb6ck" level=info timestamp=2018-08-02T11:50:18.626408Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibb6ck, existing: true\n" level=info timestamp=2018-08-02T11:50:18.626607Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:50:18.626682Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:50:18.626896Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:50:18.649148Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:50:18.649575Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibb6ck" Pod name: virt-launcher-testvmi22jtk-4pmhv Pod phase: Running level=info timestamp=2018-08-02T11:50:07.885446Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:50:07.885586Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:50:07.888084Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:50:18.146457Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:50:18.248153Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi22jtk" level=info timestamp=2018-08-02T11:50:18.249156Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:50:18.249402Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmibb6ck-r94z8 Pod phase: Running level=info timestamp=2018-08-02T11:50:07.134167Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:50:07.134391Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:50:07.136463Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:50:17.153981Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:50:17.207622Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmibb6ck" level=info timestamp=2018-08-02T11:50:17.208297Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:50:17.208471Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmik7fqt-cps4t Pod phase: Running level=info timestamp=2018-08-02T11:50:07.845150Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:50:07.855498Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:50:07.857469Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:50:18.509674Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:50:18.534965Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmik7fqt" level=info timestamp=2018-08-02T11:50:18.535691Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:50:18.535947Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmipq72b-npx78 Pod phase: Running level=info timestamp=2018-08-02T11:50:08.197532Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:50:08.197659Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:50:08.199623Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:50:18.674648Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:50:18.704702Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmipq72b" level=info timestamp=2018-08-02T11:50:18.708630Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:50:18.708921Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:52:01.528679Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:52:05.121324Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:52:05.192852Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:52:10 http: TLS handshake error from 10.244.1.1:60432: EOF level=info timestamp=2018-08-02T11:52:18.534752Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:52:20 http: TLS handshake error from 10.244.1.1:60438: EOF 2018/08/02 11:52:30 http: TLS handshake error from 10.244.1.1:60444: EOF level=info timestamp=2018-08-02T11:52:31.671927Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:52:35.206695Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:52:35.259356Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:52:40 http: TLS handshake error from 10.244.1.1:60450: EOF level=info timestamp=2018-08-02T11:52:48.668607Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:52:50 http: TLS handshake error from 10.244.1.1:60456: EOF 2018/08/02 11:53:00 http: TLS handshake error from 10.244.1.1:60462: EOF level=info timestamp=2018-08-02T11:53:01.808354Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:51:17 http: TLS handshake error from 10.244.0.1:37226: EOF 2018/08/02 11:51:27 http: TLS handshake error from 10.244.0.1:37286: EOF level=info timestamp=2018-08-02T11:51:29.636499Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:51:37 http: TLS handshake error from 10.244.0.1:37346: EOF 2018/08/02 11:51:47 http: TLS handshake error from 10.244.0.1:37406: EOF 2018/08/02 11:51:57 http: TLS handshake error from 10.244.0.1:37466: EOF level=info timestamp=2018-08-02T11:51:59.443471Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:52:07 http: TLS handshake error from 10.244.0.1:37526: EOF 2018/08/02 11:52:17 http: TLS handshake error from 10.244.0.1:37586: EOF 2018/08/02 11:52:27 http: TLS handshake error from 10.244.0.1:37646: EOF level=info timestamp=2018-08-02T11:52:29.497783Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:52:37 http: TLS handshake error from 10.244.0.1:37706: EOF 2018/08/02 11:52:47 http: TLS handshake error from 10.244.0.1:37766: EOF 2018/08/02 11:52:57 http: TLS handshake error from 10.244.0.1:37826: EOF level=info timestamp=2018-08-02T11:52:59.472420Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:47:00.062963Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:47:00.063324Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmih2b99 kind= uid=c365b1e6-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.121313Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifdpqc kind= uid=c36b15bb-9649-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:47:00.121666Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifdpqc kind= uid=c36b15bb-9649-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:47:00.180476Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmirr654\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmirr654" level=info timestamp=2018-08-02T11:47:00.351779Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmirr654\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmirr654" level=info timestamp=2018-08-02T11:47:01.016981Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvmijbm2m\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvmijbm2m" level=info timestamp=2018-08-02T11:50:02.361038Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmipq72b kind= uid=300ffb60-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.367430Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmipq72b kind= uid=300ffb60-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.371253Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi22jtk kind= uid=3013b4b6-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.371688Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi22jtk kind= uid=3013b4b6-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.402001Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.402208Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.465223Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.465619Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:51:41.878302Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmik7fqt" level=info timestamp=2018-08-02T11:52:44.868984Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmijbm2m, existing: false\n" level=info timestamp=2018-08-02T11:52:44.869648Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:52:44.869935Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmijbm2m kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:52:44.871340Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmijbm2m kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:52:45.133867Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmirr654, existing: false\n" level=info timestamp=2018-08-02T11:52:45.134028Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:52:45.134253Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmirr654 kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:52:45.134580Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmirr654 kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:53:02.563967Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi22jtk, existing: true\n" level=info timestamp=2018-08-02T11:53:02.564731Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:53:02.564845Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:53:02.565336Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi22jtk kind= uid=3013b4b6-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:53:02.574428Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi22jtk kind= uid=3013b4b6-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:53:02.575131Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi22jtk" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:51:39.329802Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:51:39.329901Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:51:39.331715Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:51:39.342674Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:51:39.343567Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibb6ck" level=info timestamp=2018-08-02T11:52:42.214723Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmih2b99, existing: false\n" level=info timestamp=2018-08-02T11:52:42.215761Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:52:42.216459Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:52:42.217349Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmih2b99 kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:53:01.270822Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibb6ck, existing: true\n" level=info timestamp=2018-08-02T11:53:01.271164Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:53:01.271242Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:53:01.271481Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:53:01.278872Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:53:01.279572Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmibb6ck" Pod name: virt-launcher-testvmi22jtk-4pmhv Pod phase: Running level=info timestamp=2018-08-02T11:50:07.885446Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:50:07.885586Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:50:07.888084Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:50:18.146457Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:50:18.248153Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi22jtk" level=info timestamp=2018-08-02T11:50:18.249156Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:50:18.249402Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmibb6ck-r94z8 Pod phase: Running level=info timestamp=2018-08-02T11:50:07.134167Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:50:07.134391Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:50:07.136463Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:50:17.153981Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:50:17.207622Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmibb6ck" level=info timestamp=2018-08-02T11:50:17.208297Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:50:17.208471Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmik7fqt-cps4t Pod phase: Running level=info timestamp=2018-08-02T11:50:07.845150Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:50:07.855498Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:50:07.857469Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:50:18.509674Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:50:18.534965Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmik7fqt" level=info timestamp=2018-08-02T11:50:18.535691Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:50:18.535947Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmipq72b-npx78 Pod phase: Running level=info timestamp=2018-08-02T11:50:08.197532Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:50:08.197659Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:50:08.199623Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:50:18.674648Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:50:18.704702Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmipq72b" level=info timestamp=2018-08-02T11:50:18.708630Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:50:18.708921Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [181.929 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 VirtualMachineInstance with custom MAC address in non-conventional format [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:414 should configure custom MAC address /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:415 Unexpected Warning event received: testvmipq72b,300ffb60-964a-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:50:02.134439Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmipq72b kind=VirtualMachineInstance uid=300ffb60-964a-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmipq72b-npx78" level=info timestamp=2018-08-02T11:50:19.198550Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmipq72b kind=VirtualMachineInstance uid=300ffb60-964a-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmipq72b-npx78" level=error timestamp=2018-08-02T11:50:19.272407Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmipq72b kind=VirtualMachineInstance uid=300ffb60-964a-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:52:31.671927Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:52:35.206695Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:52:35.259356Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:52:40 http: TLS handshake error from 10.244.1.1:60450: EOF level=info timestamp=2018-08-02T11:52:48.668607Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:52:50 http: TLS handshake error from 10.244.1.1:60456: EOF 2018/08/02 11:53:00 http: TLS handshake error from 10.244.1.1:60462: EOF level=info timestamp=2018-08-02T11:53:01.808354Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:53:05.265607Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:53:05.345604Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:53:10.055135Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:53:10.060739Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:53:10 http: TLS handshake error from 10.244.1.1:60468: EOF level=info timestamp=2018-08-02T11:53:18.760770Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:53:20 http: TLS handshake error from 10.244.1.1:60474: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:51:29.636499Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:51:37 http: TLS handshake error from 10.244.0.1:37346: EOF 2018/08/02 11:51:47 http: TLS handshake error from 10.244.0.1:37406: EOF 2018/08/02 11:51:57 http: TLS handshake error from 10.244.0.1:37466: EOF level=info timestamp=2018-08-02T11:51:59.443471Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:52:07 http: TLS handshake error from 10.244.0.1:37526: EOF 2018/08/02 11:52:17 http: TLS handshake error from 10.244.0.1:37586: EOF 2018/08/02 11:52:27 http: TLS handshake error from 10.244.0.1:37646: EOF level=info timestamp=2018-08-02T11:52:29.497783Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:52:37 http: TLS handshake error from 10.244.0.1:37706: EOF 2018/08/02 11:52:47 http: TLS handshake error from 10.244.0.1:37766: EOF 2018/08/02 11:52:57 http: TLS handshake error from 10.244.0.1:37826: EOF level=info timestamp=2018-08-02T11:52:59.472420Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:53:07 http: TLS handshake error from 10.244.0.1:37886: EOF 2018/08/02 11:53:17 http: TLS handshake error from 10.244.0.1:37946: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:50:02.367430Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmipq72b kind= uid=300ffb60-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.371253Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi22jtk kind= uid=3013b4b6-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.371688Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi22jtk kind= uid=3013b4b6-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.402001Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.402208Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.465223Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.465619Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.339639Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.343178Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.401665Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifz4zq kind= uid=9c8c2800-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.402021Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifz4zq kind= uid=9c8c2800-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.497720Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.497973Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.569811Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.570194Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:53:23.147831Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:53:23.148994Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:53:23.149191Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmizv4l4" level=info timestamp=2018-08-02T11:53:23.229553Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmizv4l4, existing: true\n" level=info timestamp=2018-08-02T11:53:23.229720Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:53:23.229749Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:53:23.229886Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:53:23.230785Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:53:23.230949Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmizv4l4" level=info timestamp=2018-08-02T11:53:23.392533Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmizv4l4, existing: true\n" level=info timestamp=2018-08-02T11:53:23.392659Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:53:23.393688Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:53:23.393825Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:53:23.399615Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:53:23.399871Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmizv4l4" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:53:20.296863Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:53:20.304594Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:53:20.305014Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/9255/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmixdn8q" level=info timestamp=2018-08-02T11:53:20.949523Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmixdn8q, existing: true\n" level=info timestamp=2018-08-02T11:53:20.949805Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:53:20.949881Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:53:20.950444Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:53:20.954863Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:53:20.956358Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmixdn8q" level=info timestamp=2018-08-02T11:53:22.241023Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmixdn8q, existing: true\n" level=info timestamp=2018-08-02T11:53:22.241703Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:53:22.241776Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:53:22.241983Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:53:22.245949Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:53:22.246841Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmixdn8q" Pod name: virt-launcher-testvmifz4zq-wqd4p Pod phase: Running level=info timestamp=2018-08-02T11:53:09.235219Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:53:09.236705Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:53:09.238940Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:53:19.245141Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:53:19.290244Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmifz4zq" level=info timestamp=2018-08-02T11:53:19.291256Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:53:19.291528Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmivftg8-4nw62 Pod phase: Running level=info timestamp=2018-08-02T11:53:10.323049Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:53:10.323190Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:53:10.324836Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:53:20.751720Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:53:20.777916Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmivftg8" level=info timestamp=2018-08-02T11:53:20.778691Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:53:20.778867Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmixdn8q-zm7nv Pod phase: Running level=info timestamp=2018-08-02T11:53:07.503457Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:53:07.503782Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:53:07.505908Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:53:17.515009Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:53:17.647430Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmixdn8q" level=info timestamp=2018-08-02T11:53:17.665416Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:53:17.665836Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmizv4l4-r9mv7 Pod phase: Running level=info timestamp=2018-08-02T11:53:09.696592Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:53:09.696728Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:53:09.698504Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:53:21.326836Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:53:21.355021Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmizv4l4" level=info timestamp=2018-08-02T11:53:21.355955Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:53:21.356153Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:55:05.773964Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:55:09.094727Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:55:09.098880Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:55:10 http: TLS handshake error from 10.244.1.1:60540: EOF level=info timestamp=2018-08-02T11:55:19.304957Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:55:20 http: TLS handshake error from 10.244.1.1:60546: EOF 2018/08/02 11:55:30 http: TLS handshake error from 10.244.1.1:60552: EOF level=info timestamp=2018-08-02T11:55:32.547017Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:55:35.643645Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:55:35.852092Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:55:40 http: TLS handshake error from 10.244.1.1:60558: EOF level=info timestamp=2018-08-02T11:55:49.395491Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:55:50 http: TLS handshake error from 10.244.1.1:60564: EOF 2018/08/02 11:56:00 http: TLS handshake error from 10.244.1.1:60570: EOF level=info timestamp=2018-08-02T11:56:02.698604Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:54:17 http: TLS handshake error from 10.244.0.1:38306: EOF 2018/08/02 11:54:27 http: TLS handshake error from 10.244.0.1:38366: EOF level=info timestamp=2018-08-02T11:54:29.595922Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:54:37 http: TLS handshake error from 10.244.0.1:38426: EOF 2018/08/02 11:54:47 http: TLS handshake error from 10.244.0.1:38486: EOF 2018/08/02 11:54:57 http: TLS handshake error from 10.244.0.1:38546: EOF level=info timestamp=2018-08-02T11:54:59.640169Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:55:07 http: TLS handshake error from 10.244.0.1:38606: EOF 2018/08/02 11:55:17 http: TLS handshake error from 10.244.0.1:38666: EOF 2018/08/02 11:55:27 http: TLS handshake error from 10.244.0.1:38726: EOF level=info timestamp=2018-08-02T11:55:29.542972Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:55:37 http: TLS handshake error from 10.244.0.1:38786: EOF 2018/08/02 11:55:47 http: TLS handshake error from 10.244.0.1:38846: EOF 2018/08/02 11:55:57 http: TLS handshake error from 10.244.0.1:38906: EOF level=info timestamp=2018-08-02T11:55:59.509513Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:50:02.367430Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmipq72b kind= uid=300ffb60-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.371253Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi22jtk kind= uid=3013b4b6-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.371688Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi22jtk kind= uid=3013b4b6-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.402001Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.402208Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmibb6ck kind= uid=30179976-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:50:02.465223Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:50:02.465619Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmik7fqt kind= uid=301a302a-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.339639Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.343178Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.401665Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifz4zq kind= uid=9c8c2800-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.402021Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifz4zq kind= uid=9c8c2800-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.497720Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.497973Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.569811Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.570194Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:54:43.520658Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmivftg8" level=info timestamp=2018-08-02T11:54:45.031873Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmizv4l4, existing: true\n" level=info timestamp=2018-08-02T11:54:45.032068Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:54:45.032142Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:54:45.032352Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:54:45.034349Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:54:45.036878Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4077/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmizv4l4" level=info timestamp=2018-08-02T11:55:46.416271Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi22jtk, existing: false\n" level=info timestamp=2018-08-02T11:55:46.417157Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:55:46.417519Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmi22jtk kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:55:46.417946Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmi22jtk kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:55:47.538487Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmipq72b, existing: false\n" level=info timestamp=2018-08-02T11:55:47.538703Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:55:47.539004Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmipq72b kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:55:47.539334Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmipq72b kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:54:41.636318Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:54:41.636407Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:54:41.636982Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:54:41.644762Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:54:41.656498Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7592/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmixdn8q" level=info timestamp=2018-08-02T11:55:45.120947Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmibb6ck, existing: false\n" level=info timestamp=2018-08-02T11:55:45.121535Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:55:45.121793Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:55:45.122889Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmibb6ck kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:56:03.581183Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmixdn8q, existing: true\n" level=info timestamp=2018-08-02T11:56:03.581557Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:56:03.581632Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:56:03.582012Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:56:03.589795Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:56:03.595515Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmixdn8q" Pod name: virt-launcher-testvmifz4zq-wqd4p Pod phase: Running level=info timestamp=2018-08-02T11:53:09.235219Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:53:09.236705Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:53:09.238940Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:53:19.245141Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:53:19.290244Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmifz4zq" level=info timestamp=2018-08-02T11:53:19.291256Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:53:19.291528Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmivftg8-4nw62 Pod phase: Running level=info timestamp=2018-08-02T11:53:10.323049Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:53:10.323190Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:53:10.324836Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:53:20.751720Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:53:20.777916Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmivftg8" level=info timestamp=2018-08-02T11:53:20.778691Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:53:20.778867Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmixdn8q-zm7nv Pod phase: Running level=info timestamp=2018-08-02T11:53:07.503457Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:53:07.503782Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:53:07.505908Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:53:17.515009Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:53:17.647430Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmixdn8q" level=info timestamp=2018-08-02T11:53:17.665416Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:53:17.665836Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmizv4l4-r9mv7 Pod phase: Running level=info timestamp=2018-08-02T11:53:09.696592Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:53:09.696728Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:53:09.698504Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:53:21.326836Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:53:21.355021Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmizv4l4" level=info timestamp=2018-08-02T11:53:21.355955Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:53:21.356153Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [182.023 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 VirtualMachineInstance with custom MAC address and slirp interface [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:427 should configure custom MAC address /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:428 Unexpected Warning event received: testvmizv4l4,9c85b769-964a-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:53:04.217606Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmizv4l4 kind=VirtualMachineInstance uid=9c85b769-964a-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmizv4l4-r9mv7" level=info timestamp=2018-08-02T11:53:22.435013Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmizv4l4 kind=VirtualMachineInstance uid=9c85b769-964a-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmizv4l4-r9mv7" level=error timestamp=2018-08-02T11:53:22.506382Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmizv4l4 kind=VirtualMachineInstance uid=9c85b769-964a-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:55:32.547017Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:55:35.643645Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:55:35.852092Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:55:40 http: TLS handshake error from 10.244.1.1:60558: EOF level=info timestamp=2018-08-02T11:55:49.395491Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:55:50 http: TLS handshake error from 10.244.1.1:60564: EOF 2018/08/02 11:56:00 http: TLS handshake error from 10.244.1.1:60570: EOF level=info timestamp=2018-08-02T11:56:02.698604Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:56:05.946965Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:56:06.020798Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:56:09.115309Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T11:56:09.152997Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:56:10 http: TLS handshake error from 10.244.1.1:60576: EOF level=info timestamp=2018-08-02T11:56:19.464087Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:56:20 http: TLS handshake error from 10.244.1.1:60582: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:54:29.595922Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:54:37 http: TLS handshake error from 10.244.0.1:38426: EOF 2018/08/02 11:54:47 http: TLS handshake error from 10.244.0.1:38486: EOF 2018/08/02 11:54:57 http: TLS handshake error from 10.244.0.1:38546: EOF level=info timestamp=2018-08-02T11:54:59.640169Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:55:07 http: TLS handshake error from 10.244.0.1:38606: EOF 2018/08/02 11:55:17 http: TLS handshake error from 10.244.0.1:38666: EOF 2018/08/02 11:55:27 http: TLS handshake error from 10.244.0.1:38726: EOF level=info timestamp=2018-08-02T11:55:29.542972Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:55:37 http: TLS handshake error from 10.244.0.1:38786: EOF 2018/08/02 11:55:47 http: TLS handshake error from 10.244.0.1:38846: EOF 2018/08/02 11:55:57 http: TLS handshake error from 10.244.0.1:38906: EOF level=info timestamp=2018-08-02T11:55:59.509513Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:56:07 http: TLS handshake error from 10.244.0.1:38966: EOF 2018/08/02 11:56:17 http: TLS handshake error from 10.244.0.1:39026: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:53:04.343178Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.401665Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifz4zq kind= uid=9c8c2800-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.402021Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifz4zq kind= uid=9c8c2800-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.497720Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.497973Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.569811Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.570194Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.341117Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.344757Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.354118Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.354483Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.380810Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.381079Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.426870Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.427091Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:56:23.997756Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:56:23.999280Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:56:23.999660Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifrbxf" level=info timestamp=2018-08-02T11:56:24.023864Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmimmtws, existing: true\n" level=info timestamp=2018-08-02T11:56:24.023992Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:56:24.024058Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:56:24.024464Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:56:24.025890Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:56:24.026181Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmimmtws" level=info timestamp=2018-08-02T11:56:24.160229Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifrbxf, existing: true\n" level=info timestamp=2018-08-02T11:56:24.160442Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:56:24.160517Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:56:24.160862Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:56:24.162502Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:56:24.162896Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifrbxf" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:56:20.581801Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:56:20.583844Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:56:20.584647Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7593/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifr6tv" level=info timestamp=2018-08-02T11:56:21.225243Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: true\n" level=info timestamp=2018-08-02T11:56:21.225497Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:56:21.225569Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:56:21.225793Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:56:21.227704Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:56:21.228281Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifr6tv" level=info timestamp=2018-08-02T11:56:22.510525Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: true\n" level=info timestamp=2018-08-02T11:56:22.510696Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:56:22.510767Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:56:22.510970Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:56:22.515282Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:56:22.515679Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/26097/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifr6tv" Pod name: virt-launcher-testvmifr6tv-r9xjs Pod phase: Running level=info timestamp=2018-08-02T11:56:09.035457Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:56:09.035724Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:56:09.037669Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:56:19.047482Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:56:19.168646Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmifr6tv" level=info timestamp=2018-08-02T11:56:19.171669Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:56:19.172267Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmifrbxf-2zjcs Pod phase: Running level=info timestamp=2018-08-02T11:56:11.507564Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:56:11.507710Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:56:11.509125Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:56:22.643770Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:56:22.683229Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmifrbxf" level=info timestamp=2018-08-02T11:56:22.683891Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:56:22.684076Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmifw8lj-znwjc Pod phase: Running level=info timestamp=2018-08-02T11:56:10.215011Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:56:10.216043Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:56:10.218280Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:56:21.246617Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:56:21.396894Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmifw8lj" level=info timestamp=2018-08-02T11:56:21.407610Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:56:21.408126Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmimmtws-wx7f6 Pod phase: Running level=info timestamp=2018-08-02T11:56:11.155869Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:56:11.155982Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:56:11.159006Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:56:22.091148Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:56:22.132904Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmimmtws" level=info timestamp=2018-08-02T11:56:22.133886Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:56:22.134138Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T11:58:09.170017Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:58:10 http: TLS handshake error from 10.244.1.1:60648: EOF level=info timestamp=2018-08-02T11:58:19.992125Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:58:20 http: TLS handshake error from 10.244.1.1:60654: EOF 2018/08/02 11:58:30 http: TLS handshake error from 10.244.1.1:60660: EOF level=info timestamp=2018-08-02T11:58:33.595407Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:58:36.288158Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:58:36.350300Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:58:40 http: TLS handshake error from 10.244.1.1:60666: EOF level=info timestamp=2018-08-02T11:58:50.169421Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:58:50 http: TLS handshake error from 10.244.1.1:60672: EOF 2018/08/02 11:59:00 http: TLS handshake error from 10.244.1.1:60678: EOF level=info timestamp=2018-08-02T11:59:03.721803Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:59:06.353782Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:59:06.423320Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 11:57:17 http: TLS handshake error from 10.244.0.1:39386: EOF 2018/08/02 11:57:27 http: TLS handshake error from 10.244.0.1:39446: EOF level=info timestamp=2018-08-02T11:57:29.517020Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:57:37 http: TLS handshake error from 10.244.0.1:39506: EOF 2018/08/02 11:57:47 http: TLS handshake error from 10.244.0.1:39566: EOF 2018/08/02 11:57:57 http: TLS handshake error from 10.244.0.1:39626: EOF level=info timestamp=2018-08-02T11:57:59.537345Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:58:07 http: TLS handshake error from 10.244.0.1:39686: EOF 2018/08/02 11:58:17 http: TLS handshake error from 10.244.0.1:39746: EOF 2018/08/02 11:58:27 http: TLS handshake error from 10.244.0.1:39806: EOF level=info timestamp=2018-08-02T11:58:29.544297Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:58:37 http: TLS handshake error from 10.244.0.1:39866: EOF 2018/08/02 11:58:47 http: TLS handshake error from 10.244.0.1:39926: EOF 2018/08/02 11:58:57 http: TLS handshake error from 10.244.0.1:39986: EOF level=info timestamp=2018-08-02T11:58:59.444320Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:53:04.343178Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmizv4l4 kind= uid=9c85b769-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.401665Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifz4zq kind= uid=9c8c2800-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.402021Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifz4zq kind= uid=9c8c2800-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.497720Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.497973Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.569811Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.570194Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.341117Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.344757Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.354118Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.354483Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.380810Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.381079Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.426870Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.427091Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:58:49.292459Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:58:49.292631Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmivftg8 kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:58:49.292814Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmivftg8 kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:06.478629Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifw8lj, existing: true\n" level=info timestamp=2018-08-02T11:59:06.479014Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:59:06.479109Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.479478Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:59:06.483641Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:59:06.485118Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/29176/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifw8lj" level=info timestamp=2018-08-02T11:59:06.613300Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmimmtws, existing: true\n" level=info timestamp=2018-08-02T11:59:06.613577Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:59:06.613651Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.613869Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:59:06.618138Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:59:06.622181Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmimmtws" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:57:41.929886Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:57:41.929975Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:57:41.930888Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:57:41.935288Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:57:41.936000Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7591/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifr6tv" level=info timestamp=2018-08-02T11:58:47.438167Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmixdn8q, existing: false\n" level=info timestamp=2018-08-02T11:58:47.438760Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:58:47.439109Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:58:47.439483Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmixdn8q kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:03.856885Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: true\n" level=info timestamp=2018-08-02T11:59:03.857266Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:59:03.857345Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:03.857612Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:59:03.863117Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:59:03.863906Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifr6tv" Pod name: virt-launcher-testvmifr6tv-r9xjs Pod phase: Running level=info timestamp=2018-08-02T11:56:09.035457Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:56:09.035724Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:56:09.037669Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:56:19.047482Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:56:19.168646Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmifr6tv" level=info timestamp=2018-08-02T11:56:19.171669Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:56:19.172267Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmifrbxf-2zjcs Pod phase: Running level=info timestamp=2018-08-02T11:56:11.507564Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:56:11.507710Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:56:11.509125Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:56:22.643770Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:56:22.683229Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmifrbxf" level=info timestamp=2018-08-02T11:56:22.683891Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:56:22.684076Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmifw8lj-znwjc Pod phase: Running level=info timestamp=2018-08-02T11:56:10.215011Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:56:10.216043Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:56:10.218280Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:56:21.246617Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:56:21.396894Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmifw8lj" level=info timestamp=2018-08-02T11:56:21.407610Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:56:21.408126Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: virt-launcher-testvmimmtws-wx7f6 Pod phase: Running level=info timestamp=2018-08-02T11:56:11.155869Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:56:11.155982Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:56:11.159006Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:56:22.091148Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:56:22.132904Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmimmtws" level=info timestamp=2018-08-02T11:56:22.133886Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:56:22.134138Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [181.890 seconds] Networking /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:48 VirtualMachineInstance with disabled automatic attachment of interfaces [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:440 should not configure any external interfaces /root/go/src/kubevirt.io/kubevirt/tests/vmi_networking_test.go:441 Unexpected Warning event received: testvmifrbxf,09021616-964b-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:56:06.188835Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmifrbxf kind=VirtualMachineInstance uid=09021616-964b-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmifrbxf-2zjcs" level=info timestamp=2018-08-02T11:56:23.207016Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmifrbxf kind=VirtualMachineInstance uid=09021616-964b-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmifrbxf-2zjcs" level=error timestamp=2018-08-02T11:56:23.359155Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmifrbxf kind=VirtualMachineInstance uid=09021616-964b-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4096/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 11:58:20 http: TLS handshake error from 10.244.1.1:60654: EOF 2018/08/02 11:58:30 http: TLS handshake error from 10.244.1.1:60660: EOF level=info timestamp=2018-08-02T11:58:33.595407Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:58:36.288158Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:58:36.350300Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:58:40 http: TLS handshake error from 10.244.1.1:60666: EOF level=info timestamp=2018-08-02T11:58:50.169421Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:58:50 http: TLS handshake error from 10.244.1.1:60672: EOF 2018/08/02 11:59:00 http: TLS handshake error from 10.244.1.1:60678: EOF level=info timestamp=2018-08-02T11:59:03.721803Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:59:06.353782Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T11:59:06.423320Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:59:10 http: TLS handshake error from 10.244.1.1:60684: EOF level=info timestamp=2018-08-02T11:59:20.263159Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 11:59:20 http: TLS handshake error from 10.244.1.1:60690: EOF Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T11:57:29.517020Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:57:37 http: TLS handshake error from 10.244.0.1:39506: EOF 2018/08/02 11:57:47 http: TLS handshake error from 10.244.0.1:39566: EOF 2018/08/02 11:57:57 http: TLS handshake error from 10.244.0.1:39626: EOF level=info timestamp=2018-08-02T11:57:59.537345Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:58:07 http: TLS handshake error from 10.244.0.1:39686: EOF 2018/08/02 11:58:17 http: TLS handshake error from 10.244.0.1:39746: EOF 2018/08/02 11:58:27 http: TLS handshake error from 10.244.0.1:39806: EOF level=info timestamp=2018-08-02T11:58:29.544297Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:58:37 http: TLS handshake error from 10.244.0.1:39866: EOF 2018/08/02 11:58:47 http: TLS handshake error from 10.244.0.1:39926: EOF 2018/08/02 11:58:57 http: TLS handshake error from 10.244.0.1:39986: EOF level=info timestamp=2018-08-02T11:58:59.444320Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 11:59:07 http: TLS handshake error from 10.244.0.1:40046: EOF 2018/08/02 11:59:17 http: TLS handshake error from 10.244.0.1:40106: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:53:04.402021Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifz4zq kind= uid=9c8c2800-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.497720Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.497973Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.569811Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.570194Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.341117Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.344757Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.354118Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.354483Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.380810Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.381079Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.426870Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.427091Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:59:08.252341Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:59:08.256124Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T11:59:23.954712Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:59:23.956292Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:59:23.956707Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmisv7dq" level=info timestamp=2018-08-02T11:59:23.997112Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmisv7dq, existing: true\n" level=info timestamp=2018-08-02T11:59:23.997241Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:59:23.997312Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:23.997558Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:59:24.007000Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:59:24.007342Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmisv7dq" level=info timestamp=2018-08-02T11:59:24.089662Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmisv7dq, existing: true\n" level=info timestamp=2018-08-02T11:59:24.089862Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:59:24.089933Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:24.090222Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T11:59:24.091955Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T11:59:24.092341Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmisv7dq" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:59:03.863906Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/7551/task/7551/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmifr6tv" level=info timestamp=2018-08-02T11:59:06.418842Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: true\n" level=info timestamp=2018-08-02T11:59:06.418994Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T11:59:06.419521Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.419707Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.581911Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:06.587395Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: true\n" level=info timestamp=2018-08-02T11:59:06.588187Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Failed\n" level=info timestamp=2018-08-02T11:59:06.588454Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.588648Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.588854Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:06.703218Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: false\n" level=info timestamp=2018-08-02T11:59:06.703281Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.703362Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.703444Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-launcher-testvmisv7dq-2b9nw Pod phase: Running level=info timestamp=2018-08-02T11:59:12.019076Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:59:12.019611Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:59:12.023936Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:59:22.032516Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:59:22.114195Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmisv7dq" level=info timestamp=2018-08-02T11:59:22.117574Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:59:22.118003Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T12:01:08.574586Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:01:10 http: TLS handshake error from 10.244.1.1:60756: EOF 2018/08/02 12:01:20 http: TLS handshake error from 10.244.1.1:60762: EOF level=info timestamp=2018-08-02T12:01:20.672407Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:01:30 http: TLS handshake error from 10.244.1.1:60768: EOF level=info timestamp=2018-08-02T12:01:34.772883Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:01:36.722870Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:01:36.802561Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:01:40 http: TLS handshake error from 10.244.1.1:60774: EOF 2018/08/02 12:01:50 http: TLS handshake error from 10.244.1.1:60780: EOF level=info timestamp=2018-08-02T12:01:50.774730Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:02:00 http: TLS handshake error from 10.244.1.1:60786: EOF level=info timestamp=2018-08-02T12:02:04.910707Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:02:06.797918Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:02:06.876149Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 12:00:17 http: TLS handshake error from 10.244.0.1:40466: EOF 2018/08/02 12:00:27 http: TLS handshake error from 10.244.0.1:40526: EOF level=info timestamp=2018-08-02T12:00:29.487916Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:00:37 http: TLS handshake error from 10.244.0.1:40586: EOF 2018/08/02 12:00:47 http: TLS handshake error from 10.244.0.1:40646: EOF 2018/08/02 12:00:57 http: TLS handshake error from 10.244.0.1:40706: EOF level=info timestamp=2018-08-02T12:00:59.526253Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:01:07 http: TLS handshake error from 10.244.0.1:40766: EOF 2018/08/02 12:01:17 http: TLS handshake error from 10.244.0.1:40826: EOF 2018/08/02 12:01:27 http: TLS handshake error from 10.244.0.1:40886: EOF level=info timestamp=2018-08-02T12:01:29.677834Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:01:37 http: TLS handshake error from 10.244.0.1:40946: EOF 2018/08/02 12:01:47 http: TLS handshake error from 10.244.0.1:41006: EOF 2018/08/02 12:01:57 http: TLS handshake error from 10.244.0.1:41066: EOF level=info timestamp=2018-08-02T12:01:59.609315Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:53:04.402021Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifz4zq kind= uid=9c8c2800-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.497720Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.497973Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmixdn8q kind= uid=9c957673-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:53:04.569811Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.570194Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.341117Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.344757Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.354118Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.354483Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.380810Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.381079Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.426870Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.427091Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:59:08.252341Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:59:08.256124Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T12:00:45.901805Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmisv7dq" level=info timestamp=2018-08-02T12:01:50.326314Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifw8lj, existing: false\n" level=info timestamp=2018-08-02T12:01:50.326880Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:01:50.327155Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifw8lj kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T12:01:50.327608Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifw8lj kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T12:01:50.462933Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmimmtws, existing: false\n" level=info timestamp=2018-08-02T12:01:50.463117Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:01:50.463332Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmimmtws kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T12:01:50.463609Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmimmtws kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T12:02:07.823214Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmisv7dq, existing: true\n" level=info timestamp=2018-08-02T12:02:07.824162Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T12:02:07.824259Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:02:07.824961Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T12:02:07.830837Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T12:02:07.831540Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmisv7dq" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:59:06.419707Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.581911Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:06.587395Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: true\n" level=info timestamp=2018-08-02T11:59:06.588187Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Failed\n" level=info timestamp=2018-08-02T11:59:06.588454Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.588648Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.588854Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:06.703218Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: false\n" level=info timestamp=2018-08-02T11:59:06.703281Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.703362Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.703444Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T12:01:47.706305Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: false\n" level=info timestamp=2018-08-02T12:01:47.706957Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:01:47.708108Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T12:01:47.708690Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-launcher-testvmisv7dq-2b9nw Pod phase: Running level=info timestamp=2018-08-02T11:59:12.019076Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T11:59:12.019611Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T11:59:12.023936Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T11:59:22.032516Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T11:59:22.114195Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmisv7dq" level=info timestamp=2018-08-02T11:59:22.117574Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T11:59:22.118003Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [181.365 seconds] VNC /root/go/src/kubevirt.io/kubevirt/tests/vnc_test.go:46 A new VirtualMachineInstance /root/go/src/kubevirt.io/kubevirt/tests/vnc_test.go:54 with VNC connection [BeforeEach] /root/go/src/kubevirt.io/kubevirt/tests/vnc_test.go:62 should allow accessing the VNC device /root/go/src/kubevirt.io/kubevirt/tests/vnc_test.go:64 Unexpected Warning event received: testvmisv7dq,756ddada-964b-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T11:59:07.934739Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmisv7dq kind=VirtualMachineInstance uid=756ddada-964b-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvmisv7dq-2b9nw" level=info timestamp=2018-08-02T11:59:23.231882Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvmisv7dq kind=VirtualMachineInstance uid=756ddada-964b-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvmisv7dq-2b9nw" level=error timestamp=2018-08-02T11:59:23.304991Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvmisv7dq kind=VirtualMachineInstance uid=756ddada-964b-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T12:01:20.672407Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:01:30 http: TLS handshake error from 10.244.1.1:60768: EOF level=info timestamp=2018-08-02T12:01:34.772883Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:01:36.722870Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:01:36.802561Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:01:40 http: TLS handshake error from 10.244.1.1:60774: EOF 2018/08/02 12:01:50 http: TLS handshake error from 10.244.1.1:60780: EOF level=info timestamp=2018-08-02T12:01:50.774730Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:02:00 http: TLS handshake error from 10.244.1.1:60786: EOF level=info timestamp=2018-08-02T12:02:04.910707Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:02:06.797918Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:02:06.876149Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:02:10 http: TLS handshake error from 10.244.1.1:60792: EOF 2018/08/02 12:02:20 http: TLS handshake error from 10.244.1.1:60798: EOF level=info timestamp=2018-08-02T12:02:20.879144Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T12:00:29.487916Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:00:37 http: TLS handshake error from 10.244.0.1:40586: EOF 2018/08/02 12:00:47 http: TLS handshake error from 10.244.0.1:40646: EOF 2018/08/02 12:00:57 http: TLS handshake error from 10.244.0.1:40706: EOF level=info timestamp=2018-08-02T12:00:59.526253Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:01:07 http: TLS handshake error from 10.244.0.1:40766: EOF 2018/08/02 12:01:17 http: TLS handshake error from 10.244.0.1:40826: EOF 2018/08/02 12:01:27 http: TLS handshake error from 10.244.0.1:40886: EOF level=info timestamp=2018-08-02T12:01:29.677834Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:01:37 http: TLS handshake error from 10.244.0.1:40946: EOF 2018/08/02 12:01:47 http: TLS handshake error from 10.244.0.1:41006: EOF 2018/08/02 12:01:57 http: TLS handshake error from 10.244.0.1:41066: EOF level=info timestamp=2018-08-02T12:01:59.609315Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:02:07 http: TLS handshake error from 10.244.0.1:41126: EOF 2018/08/02 12:02:17 http: TLS handshake error from 10.244.0.1:41186: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:53:04.569811Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.570194Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.341117Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.344757Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.354118Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.354483Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.380810Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.381079Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.426870Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.427091Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:59:08.252341Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:59:08.256124Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T12:02:09.039765Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T12:02:09.042778Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T12:02:09.308109Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvminkttb\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvminkttb" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T12:02:25.032147Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T12:02:25.033728Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T12:02:25.034020Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4084/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvminkttb" level=info timestamp=2018-08-02T12:02:25.114627Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvminkttb, existing: true\n" level=info timestamp=2018-08-02T12:02:25.114780Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T12:02:25.114858Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:02:25.115104Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T12:02:25.116712Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T12:02:25.117008Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvminkttb" level=info timestamp=2018-08-02T12:02:25.277678Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvminkttb, existing: true\n" level=info timestamp=2018-08-02T12:02:25.277842Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T12:02:25.277934Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:02:25.278147Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T12:02:25.279721Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T12:02:25.280042Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvminkttb" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:59:06.419707Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.581911Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:06.587395Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: true\n" level=info timestamp=2018-08-02T11:59:06.588187Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Failed\n" level=info timestamp=2018-08-02T11:59:06.588454Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.588648Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.588854Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:06.703218Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: false\n" level=info timestamp=2018-08-02T11:59:06.703281Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.703362Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.703444Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T12:01:47.706305Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: false\n" level=info timestamp=2018-08-02T12:01:47.706957Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:01:47.708108Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T12:01:47.708690Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-launcher-testvminkttb-tp77n Pod phase: Running level=info timestamp=2018-08-02T12:02:13.164566Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T12:02:13.165075Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T12:02:13.169031Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T12:02:23.178684Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T12:02:23.227228Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvminkttb" level=info timestamp=2018-08-02T12:02:23.229266Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T12:02:23.229758Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running 2018/08/02 12:04:20 http: TLS handshake error from 10.244.1.1:60870: EOF level=info timestamp=2018-08-02T12:04:21.276291Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:04:30 http: TLS handshake error from 10.244.1.1:60876: EOF level=info timestamp=2018-08-02T12:04:35.709250Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:04:37.321724Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:04:37.406313Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:04:40 http: TLS handshake error from 10.244.1.1:60882: EOF 2018/08/02 12:04:50 http: TLS handshake error from 10.244.1.1:60888: EOF level=info timestamp=2018-08-02T12:04:51.374323Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:05:00 http: TLS handshake error from 10.244.1.1:60894: EOF level=info timestamp=2018-08-02T12:05:05.779434Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:05:07.377837Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:05:07.450864Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:05:08.330020Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T12:05:08.333821Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running 2018/08/02 12:03:27 http: TLS handshake error from 10.244.0.1:41606: EOF level=info timestamp=2018-08-02T12:03:29.517583Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:03:37 http: TLS handshake error from 10.244.0.1:41666: EOF 2018/08/02 12:03:47 http: TLS handshake error from 10.244.0.1:41726: EOF 2018/08/02 12:03:57 http: TLS handshake error from 10.244.0.1:41786: EOF level=info timestamp=2018-08-02T12:03:59.474359Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:04:07 http: TLS handshake error from 10.244.0.1:41846: EOF 2018/08/02 12:04:17 http: TLS handshake error from 10.244.0.1:41906: EOF 2018/08/02 12:04:27 http: TLS handshake error from 10.244.0.1:41966: EOF level=info timestamp=2018-08-02T12:04:29.480543Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:04:37 http: TLS handshake error from 10.244.0.1:42026: EOF 2018/08/02 12:04:47 http: TLS handshake error from 10.244.0.1:42086: EOF 2018/08/02 12:04:57 http: TLS handshake error from 10.244.0.1:42146: EOF level=info timestamp=2018-08-02T12:04:59.721886Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:05:07 http: TLS handshake error from 10.244.0.1:42206: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:53:04.569811Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:53:04.570194Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmivftg8 kind= uid=9ca32450-964a-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.341117Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.344757Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.354118Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.354483Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.380810Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.381079Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.426870Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.427091Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:59:08.252341Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:59:08.256124Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T12:02:09.039765Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T12:02:09.042778Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T12:02:09.308109Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvminkttb\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvminkttb" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T12:03:46.912589Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T12:03:46.912692Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:03:46.913105Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T12:03:46.917772Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T12:03:46.918528Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvminkttb" level=info timestamp=2018-08-02T12:04:51.674235Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmisv7dq, existing: false\n" level=info timestamp=2018-08-02T12:04:51.676302Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:04:51.677201Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmisv7dq kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T12:04:51.678103Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmisv7dq kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T12:05:08.839841Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvminkttb, existing: true\n" level=info timestamp=2018-08-02T12:05:08.840142Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T12:05:08.840250Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:05:08.840604Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T12:05:08.844328Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T12:05:08.845807Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvminkttb" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:59:06.419707Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.581911Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:06.587395Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: true\n" level=info timestamp=2018-08-02T11:59:06.588187Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Failed\n" level=info timestamp=2018-08-02T11:59:06.588454Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.588648Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.588854Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:06.703218Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: false\n" level=info timestamp=2018-08-02T11:59:06.703281Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.703362Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.703444Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T12:01:47.706305Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: false\n" level=info timestamp=2018-08-02T12:01:47.706957Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:01:47.708108Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T12:01:47.708690Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-launcher-testvminkttb-tp77n Pod phase: Running level=info timestamp=2018-08-02T12:02:13.164566Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T12:02:13.165075Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T12:02:13.169031Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T12:02:23.178684Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T12:02:23.227228Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvminkttb" level=info timestamp=2018-08-02T12:02:23.229266Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T12:02:23.229758Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" • Failure in Spec Setup (BeforeEach) [180.728 seconds] VNC /root/go/src/kubevirt.io/kubevirt/tests/vnc_test.go:46 A new VirtualMachineInstance /root/go/src/kubevirt.io/kubevirt/tests/vnc_test.go:54 should upgrade subresource connections if an origin header is given [BeforeEach] /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table.go:92 for vnc /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/extensions/table/table_entry.go:46 Unexpected Warning event received: testvminkttb,e131d5d4-964b-11e8-869c-525500d15501: Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt Expected : Warning not to equal : Warning /root/go/src/kubevirt.io/kubevirt/tests/utils.go:247 ------------------------------ level=info timestamp=2018-08-02T12:02:08.757793Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvminkttb kind=VirtualMachineInstance uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Created virtual machine pod virt-launcher-testvminkttb-tp77n" level=info timestamp=2018-08-02T12:02:24.262100Z pos=utils.go:245 component=tests namespace=kubevirt-test-default name=testvminkttb kind=VirtualMachineInstance uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Pod owner ship transferred to the node virt-launcher-testvminkttb-tp77n" level=error timestamp=2018-08-02T12:02:24.338450Z pos=utils.go:243 component=tests namespace=kubevirt-test-default name=testvminkttb kind=VirtualMachineInstance uid=e131d5d4-964b-11e8-869c-525500d15501 reason="unexpected warning event received" msg="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4095/ns/mnt" Pod name: disks-images-provider-68f8k Pod phase: Running copy all images to host mount directory Pod name: disks-images-provider-tqn5h Pod phase: Running copy all images to host mount directory Pod name: virt-api-bcc6b587d-6g464 Pod phase: Running level=info timestamp=2018-08-02T12:04:35.709250Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:04:37.321724Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:04:37.406313Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:04:40 http: TLS handshake error from 10.244.1.1:60882: EOF 2018/08/02 12:04:50 http: TLS handshake error from 10.244.1.1:60888: EOF level=info timestamp=2018-08-02T12:04:51.374323Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 2018/08/02 12:05:00 http: TLS handshake error from 10.244.1.1:60894: EOF level=info timestamp=2018-08-02T12:05:05.779434Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:05:07.377837Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:05:07.450864Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 level=info timestamp=2018-08-02T12:05:08.330020Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/openapi/v2 proto=HTTP/2.0 statusCode=404 contentLength=19 level=info timestamp=2018-08-02T12:05:08.333821Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url=/swagger.json proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:05:10 http: TLS handshake error from 10.244.1.1:60900: EOF 2018/08/02 12:05:20 http: TLS handshake error from 10.244.1.1:60906: EOF level=info timestamp=2018-08-02T12:05:21.474925Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.0 username=- method=GET url="/apis/subresources.kubevirt.io/v1alpha2?timeout=32s" proto=HTTP/2.0 statusCode=200 contentLength=136 Pod name: virt-api-bcc6b587d-9ptrc Pod phase: Running level=info timestamp=2018-08-02T12:03:29.517583Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:03:37 http: TLS handshake error from 10.244.0.1:41666: EOF 2018/08/02 12:03:47 http: TLS handshake error from 10.244.0.1:41726: EOF 2018/08/02 12:03:57 http: TLS handshake error from 10.244.0.1:41786: EOF level=info timestamp=2018-08-02T12:03:59.474359Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:04:07 http: TLS handshake error from 10.244.0.1:41846: EOF 2018/08/02 12:04:17 http: TLS handshake error from 10.244.0.1:41906: EOF 2018/08/02 12:04:27 http: TLS handshake error from 10.244.0.1:41966: EOF level=info timestamp=2018-08-02T12:04:29.480543Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:04:37 http: TLS handshake error from 10.244.0.1:42026: EOF 2018/08/02 12:04:47 http: TLS handshake error from 10.244.0.1:42086: EOF 2018/08/02 12:04:57 http: TLS handshake error from 10.244.0.1:42146: EOF level=info timestamp=2018-08-02T12:04:59.721886Z pos=filter.go:46 component=virt-api remoteAddress=10.244.0.1 username=- method=GET url=/ proto=HTTP/2.0 statusCode=404 contentLength=19 2018/08/02 12:05:07 http: TLS handshake error from 10.244.0.1:42206: EOF 2018/08/02 12:05:17 http: TLS handshake error from 10.244.0.1:42266: EOF Pod name: virt-controller-67dcdd8464-lsf5b Pod phase: Running level=info timestamp=2018-08-02T11:56:06.341117Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.344757Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifrbxf kind= uid=09021616-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.354118Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.354483Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifw8lj kind= uid=0906c886-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.380810Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.381079Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:56:06.426870Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:56:06.427091Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmimmtws kind= uid=090db15e-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T11:59:08.252341Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T11:59:08.256124Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmisv7dq kind= uid=756ddada-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T12:02:09.039765Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T12:02:09.042778Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvminkttb kind= uid=e131d5d4-964b-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" level=info timestamp=2018-08-02T12:02:09.308109Z pos=vmi.go:157 component=virt-controller service=http reason="Operation cannot be fulfilled on virtualmachineinstances.kubevirt.io \"testvminkttb\": the object has been modified; please apply your changes to the latest version and try again" msg="reenqueuing VirtualMachineInstance kubevirt-test-default/testvminkttb" level=info timestamp=2018-08-02T12:05:09.726199Z pos=preset.go:142 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5mhgd kind= uid=4ce63c72-964c-11e8-869c-525500d15501 msg="Initializing VirtualMachineInstance" level=info timestamp=2018-08-02T12:05:09.733816Z pos=preset.go:171 component=virt-controller service=http namespace=kubevirt-test-default name=testvmi5mhgd kind= uid=4ce63c72-964c-11e8-869c-525500d15501 msg="Marking VirtualMachineInstance as initialized" Pod name: virt-controller-67dcdd8464-nx2mh Pod phase: Running level=info timestamp=2018-08-02T10:45:49.848857Z pos=application.go:177 component=virt-controller service=http action=listening interface=0.0.0.0 port=8182 Pod name: virt-handler-q2ns2 Pod phase: Running level=info timestamp=2018-08-02T12:05:25.134899Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5mhgd kind= uid=4ce63c72-964c-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T12:05:25.136281Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5mhgd kind= uid=4ce63c72-964c-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T12:05:25.136703Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5mhgd" level=info timestamp=2018-08-02T12:05:25.177100Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5mhgd, existing: true\n" level=info timestamp=2018-08-02T12:05:25.177249Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T12:05:25.177320Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:05:25.177566Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5mhgd kind= uid=4ce63c72-964c-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T12:05:25.179567Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5mhgd kind= uid=4ce63c72-964c-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T12:05:25.179914Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5mhgd" level=info timestamp=2018-08-02T12:05:25.260470Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmi5mhgd, existing: true\n" level=info timestamp=2018-08-02T12:05:25.260615Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Scheduled\n" level=info timestamp=2018-08-02T12:05:25.260725Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:05:25.260956Z pos=vm.go:418 component=virt-handler namespace=kubevirt-test-default name=testvmi5mhgd kind= uid=4ce63c72-964c-11e8-869c-525500d15501 msg="Processing vmi update" level=error timestamp=2018-08-02T12:05:25.262593Z pos=vm.go:426 component=virt-handler namespace=kubevirt-test-default name=testvmi5mhgd kind= uid=4ce63c72-964c-11e8-869c-525500d15501 reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="Synchronizing the VirtualMachineInstance failed." level=info timestamp=2018-08-02T12:05:25.262943Z pos=vm.go:253 component=virt-handler reason="Failed to open current namespace: Error detecting namespace type from path: /proc/4057/task/4349/ns/mnt" msg="re-enqueuing VirtualMachineInstance kubevirt-test-default/testvmi5mhgd" Pod name: virt-handler-v4jkl Pod phase: Running level=info timestamp=2018-08-02T11:59:06.419707Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.581911Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:06.587395Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: true\n" level=info timestamp=2018-08-02T11:59:06.588187Z pos=vm.go:317 component=virt-handler msg="vmi is in phase: Failed\n" level=info timestamp=2018-08-02T11:59:06.588454Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.588648Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.588854Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind= uid=0909f9fa-964b-11e8-869c-525500d15501 msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T11:59:06.703218Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: false\n" level=info timestamp=2018-08-02T11:59:06.703281Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T11:59:06.703362Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T11:59:06.703444Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." level=info timestamp=2018-08-02T12:01:47.706305Z pos=vm.go:315 component=virt-handler msg="Processing vmi testvmifr6tv, existing: false\n" level=info timestamp=2018-08-02T12:01:47.706957Z pos=vm.go:331 component=virt-handler msg="Domain: existing: false\n" level=info timestamp=2018-08-02T12:01:47.708108Z pos=vm.go:415 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Processing local ephemeral data cleanup for shutdown domain." level=info timestamp=2018-08-02T12:01:47.708690Z pos=vm.go:442 component=virt-handler namespace=kubevirt-test-default name=testvmifr6tv kind=VirtualMachineInstance uid= msg="Synchronization loop succeeded." Pod name: virt-launcher-testvmi5mhgd-shzhc Pod phase: Running level=info timestamp=2018-08-02T12:05:13.479527Z pos=manager.go:69 component=virt-launcher msg="Collected all requested hook sidecar sockets" level=info timestamp=2018-08-02T12:05:13.479751Z pos=manager.go:72 component=virt-launcher msg="Sorted all collected sidecar sockets per hook point based on their priority and name: map[]" level=info timestamp=2018-08-02T12:05:13.481609Z pos=libvirt.go:261 component=virt-launcher msg="Connecting to libvirt daemon: qemu:///system" level=info timestamp=2018-08-02T12:05:24.239762Z pos=libvirt.go:276 component=virt-launcher msg="Connected to libvirt daemon" level=info timestamp=2018-08-02T12:05:24.301129Z pos=virt-launcher.go:143 component=virt-launcher msg="Watchdog file created at /var/run/kubevirt/watchdog-files/kubevirt-test-default_testvmi5mhgd" level=info timestamp=2018-08-02T12:05:24.303612Z pos=client.go:152 component=virt-launcher msg="Registered libvirt event notify callback" level=info timestamp=2018-08-02T12:05:24.304081Z pos=virt-launcher.go:60 component=virt-launcher msg="Marked as ready" panic: test timed out after 1h30m0s goroutine 15616 [running]: testing.(*M).startAlarm.func1() /gimme/.gimme/versions/go1.10.linux.amd64/src/testing/testing.go:1240 +0xfc created by time.goFunc /gimme/.gimme/versions/go1.10.linux.amd64/src/time/sleep.go:172 +0x44 goroutine 1 [chan receive, 90 minutes]: testing.(*T).Run(0xc4204d5e00, 0x139e775, 0x9, 0x1430cc8, 0x4801e6) /gimme/.gimme/versions/go1.10.linux.amd64/src/testing/testing.go:825 +0x301 testing.runTests.func1(0xc4204d5d10) /gimme/.gimme/versions/go1.10.linux.amd64/src/testing/testing.go:1063 +0x64 testing.tRunner(0xc4204d5d10, 0xc4208eddf8) /gimme/.gimme/versions/go1.10.linux.amd64/src/testing/testing.go:777 +0xd0 testing.runTests(0xc420547680, 0x1d32a50, 0x1, 0x1, 0x412009) /gimme/.gimme/versions/go1.10.linux.amd64/src/testing/testing.go:1061 +0x2c4 testing.(*M).Run(0xc420a06580, 0x0) /gimme/.gimme/versions/go1.10.linux.amd64/src/testing/testing.go:978 +0x171 main.main() _testmain.go:44 +0x151 goroutine 5 [chan receive]: kubevirt.io/kubevirt/vendor/github.com/golang/glog.(*loggingT).flushDaemon(0x1d5e280) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/golang/glog/glog.go:879 +0x8b created by kubevirt.io/kubevirt/vendor/github.com/golang/glog.init.0 /root/go/src/kubevirt.io/kubevirt/vendor/github.com/golang/glog/glog.go:410 +0x203 goroutine 6 [syscall, 90 minutes]: os/signal.signal_recv(0x0) /gimme/.gimme/versions/go1.10.linux.amd64/src/runtime/sigqueue.go:139 +0xa6 os/signal.loop() /gimme/.gimme/versions/go1.10.linux.amd64/src/os/signal/signal_unix.go:22 +0x22 created by os/signal.init.0 /gimme/.gimme/versions/go1.10.linux.amd64/src/os/signal/signal_unix.go:28 +0x41 goroutine 10 [sleep]: time.Sleep(0xa900a9c) /gimme/.gimme/versions/go1.10.linux.amd64/src/runtime/time.go:102 +0x166 kubevirt.io/kubevirt/vendor/k8s.io/client-go/util/flowcontrol.realClock.Sleep(0xa900a9c) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/client-go/util/flowcontrol/throttle.go:66 +0x2b kubevirt.io/kubevirt/vendor/k8s.io/client-go/util/flowcontrol.(*tokenBucketRateLimiter).Accept(0xc420811800) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/client-go/util/flowcontrol/throttle.go:91 +0xbd kubevirt.io/kubevirt/vendor/k8s.io/client-go/rest.(*Request).tryThrottle(0xc420e6b980) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/client-go/rest/request.go:478 +0x1fd kubevirt.io/kubevirt/vendor/k8s.io/client-go/rest.(*Request).Do(0xc420e6b980, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/client-go/rest/request.go:733 +0x62 kubevirt.io/kubevirt/pkg/kubecli.(*vmis).Get(0xc420919f80, 0xc42047c250, 0xc, 0xc4209c2900, 0xc420919f80, 0xc420680800, 0x8) /root/go/src/kubevirt.io/kubevirt/pkg/kubecli/vmi.go:369 +0x125 kubevirt.io/kubevirt/tests.waitForVMIStart.func1(0x0) /root/go/src/kubevirt.io/kubevirt/tests/utils.go:1055 +0xc2 reflect.Value.call(0x118b3e0, 0xc4205a6a80, 0x13, 0x1398830, 0x4, 0xc4210ccd10, 0x0, 0x0, 0x118b3e0, 0x118b3e0, ...) /gimme/.gimme/versions/go1.10.linux.amd64/src/reflect/value.go:447 +0x969 reflect.Value.Call(0x118b3e0, 0xc4205a6a80, 0x13, 0xc4210ccd10, 0x0, 0x0, 0x44b21b, 0xc4208d0b98, 0xc4210ccd48) /gimme/.gimme/versions/go1.10.linux.amd64/src/reflect/value.go:308 +0xa4 kubevirt.io/kubevirt/vendor/github.com/onsi/gomega/internal/asyncassertion.(*AsyncAssertion).pollActual(0xc4209f4640, 0x0, 0x0, 0x0, 0x0) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion.go:71 +0x9f kubevirt.io/kubevirt/vendor/github.com/onsi/gomega/internal/asyncassertion.(*AsyncAssertion).match(0xc4209f4640, 0x14c4b20, 0xc4207346d0, 0x412801, 0xc4207346e0, 0x1, 0x1, 0xc4207346e0) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion.go:141 +0x305 kubevirt.io/kubevirt/vendor/github.com/onsi/gomega/internal/asyncassertion.(*AsyncAssertion).Should(0xc4209f4640, 0x14c4b20, 0xc4207346d0, 0xc4207346e0, 0x1, 0x1, 0x14bbac0) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/gomega/internal/asyncassertion/async_assertion.go:48 +0x62 kubevirt.io/kubevirt/tests.waitForVMIStart(0x14ba840, 0xc420708780, 0x5a, 0x0, 0x0, 0x1d7c901) /root/go/src/kubevirt.io/kubevirt/tests/utils.go:1065 +0x703 kubevirt.io/kubevirt/tests.WaitForSuccessfulVMIStart(0x14ba840, 0xc420708780, 0x1d7c938, 0x0) /root/go/src/kubevirt.io/kubevirt/tests/utils.go:1088 +0x43 kubevirt.io/kubevirt/tests_test.glob..func23.1.1() /root/go/src/kubevirt.io/kubevirt/tests/vnc_test.go:59 +0x20b kubevirt.io/kubevirt/tests.BeforeAll.func1() /root/go/src/kubevirt.io/kubevirt/tests/utils.go:1375 +0x3f kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/leafnodes.(*runner).runSync(0xc4209b1b00, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/leafnodes/runner.go:113 +0x9c kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/leafnodes.(*runner).run(0xc4209b1b00, 0xc4206d7ae0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/leafnodes/runner.go:64 +0x13e kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/leafnodes.(*SetupNode).Run(0xc42000e128, 0x14b6ce0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, ...) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/leafnodes/setup_nodes.go:15 +0x7f kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/spec.(*Spec).runSample(0xc42076c690, 0x0, 0x14b6ce0, 0xc4200c3500) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/spec/spec.go:181 +0x1f1 kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/spec.(*Spec).Run(0xc42076c690, 0x14b6ce0, 0xc4200c3500) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/spec/spec.go:138 +0xff kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/specrunner.(*SpecRunner).runSpec(0xc420351040, 0xc42076c690, 0x0) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/specrunner/spec_runner.go:200 +0x10d kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/specrunner.(*SpecRunner).runSpecs(0xc420351040, 0x1) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/specrunner/spec_runner.go:170 +0x329 kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/specrunner.(*SpecRunner).Run(0xc420351040, 0xb) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/specrunner/spec_runner.go:66 +0x11b kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/suite.(*Suite).Run(0xc4200eaaf0, 0x7fc190234280, 0xc4204d5e00, 0x13a0d58, 0xb, 0xc4205476e0, 0x2, 0x2, 0x14d35e0, 0xc4200c3500, ...) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/suite/suite.go:62 +0x27c kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo.RunSpecsWithCustomReporters(0x14b7d40, 0xc4204d5e00, 0x13a0d58, 0xb, 0xc4205476a0, 0x2, 0x2, 0x2) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/ginkgo_dsl.go:221 +0x258 kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo.RunSpecsWithDefaultAndCustomReporters(0x14b7d40, 0xc4204d5e00, 0x13a0d58, 0xb, 0xc4202811d0, 0x1, 0x1, 0x1) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/ginkgo_dsl.go:209 +0xab kubevirt.io/kubevirt/tests_test.TestTests(0xc4204d5e00) /root/go/src/kubevirt.io/kubevirt/tests/tests_suite_test.go:43 +0xaa testing.tRunner(0xc4204d5e00, 0x1430cc8) /gimme/.gimme/versions/go1.10.linux.amd64/src/testing/testing.go:777 +0xd0 created by testing.(*T).Run /gimme/.gimme/versions/go1.10.linux.amd64/src/testing/testing.go:824 +0x2e0 goroutine 11 [chan receive, 90 minutes]: kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/specrunner.(*SpecRunner).registerForInterrupts(0xc420351040, 0xc420a01980) /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/specrunner/spec_runner.go:223 +0xd1 created by kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/specrunner.(*SpecRunner).Run /root/go/src/kubevirt.io/kubevirt/vendor/github.com/onsi/ginkgo/internal/specrunner/spec_runner.go:60 +0x88 goroutine 12 [select, 90 minutes, locked to thread]: runtime.gopark(0x1432ea0, 0x0, 0x139b297, 0x6, 0x18, 0x1) /gimme/.gimme/versions/go1.10.linux.amd64/src/runtime/proc.go:291 +0x11a runtime.selectgo(0xc42048af50, 0xc420a01a40) /gimme/.gimme/versions/go1.10.linux.amd64/src/runtime/select.go:392 +0xe50 runtime.ensureSigM.func1() /gimme/.gimme/versions/go1.10.linux.amd64/src/runtime/signal_unix.go:549 +0x1f4 runtime.goexit() /gimme/.gimme/versions/go1.10.linux.amd64/src/runtime/asm_amd64.s:2361 +0x1 goroutine 47 [IO wait]: internal/poll.runtime_pollWait(0x7fc190216f00, 0x72, 0xc421097850) /gimme/.gimme/versions/go1.10.linux.amd64/src/runtime/netpoll.go:173 +0x57 internal/poll.(*pollDesc).wait(0xc4208be718, 0x72, 0xffffffffffffff00, 0x14b8f00, 0x1c497d0) /gimme/.gimme/versions/go1.10.linux.amd64/src/internal/poll/fd_poll_runtime.go:85 +0x9b internal/poll.(*pollDesc).waitRead(0xc4208be718, 0xc420b7e000, 0x8000, 0x8000) /gimme/.gimme/versions/go1.10.linux.amd64/src/internal/poll/fd_poll_runtime.go:90 +0x3d internal/poll.(*FD).Read(0xc4208be700, 0xc420b7e000, 0x8000, 0x8000, 0x0, 0x0, 0x0) /gimme/.gimme/versions/go1.10.linux.amd64/src/internal/poll/fd_unix.go:157 +0x17d net.(*netFD).Read(0xc4208be700, 0xc420b7e000, 0x8000, 0x8000, 0x0, 0x8, 0x7ffb) /gimme/.gimme/versions/go1.10.linux.amd64/src/net/fd_unix.go:202 +0x4f net.(*conn).Read(0xc420540460, 0xc420b7e000, 0x8000, 0x8000, 0x0, 0x0, 0x0) /gimme/.gimme/versions/go1.10.linux.amd64/src/net/net.go:176 +0x6a crypto/tls.(*block).readFromUntil(0xc420871da0, 0x7fc18c0620b0, 0xc420540460, 0x5, 0xc420540460, 0x0) /gimme/.gimme/versions/go1.10.linux.amd64/src/crypto/tls/conn.go:493 +0x96 crypto/tls.(*Conn).readRecord(0xc420834380, 0x1432f17, 0xc4208344a0, 0x20) /gimme/.gimme/versions/go1.10.linux.amd64/src/crypto/tls/conn.go:595 +0xe0 crypto/tls.(*Conn).Read(0xc420834380, 0xc4207df000, 0x1000, 0x1000, 0x0, 0x0, 0x0) /gimme/.gimme/versions/go1.10.linux.amd64/src/crypto/tls/conn.go:1156 +0x100 bufio.(*Reader).Read(0xc4208730e0, 0xc4204f22d8, 0x9, 0x9, 0xc4208f3c18, 0xc420728ac0, 0xc421097d10) /gimme/.gimme/versions/go1.10.linux.amd64/src/bufio/bufio.go:216 +0x238 io.ReadAtLeast(0x14b5ae0, 0xc4208730e0, 0xc4204f22d8, 0x9, 0x9, 0x9, 0xc421097ce0, 0xc421097ce0, 0x406614) /gimme/.gimme/versions/go1.10.linux.amd64/src/io/io.go:309 +0x86 io.ReadFull(0x14b5ae0, 0xc4208730e0, 0xc4204f22d8, 0x9, 0x9, 0xc4208f3bc0, 0xc421097d10, 0xc400007501) /gimme/.gimme/versions/go1.10.linux.amd64/src/io/io.go:327 +0x58 kubevirt.io/kubevirt/vendor/golang.org/x/net/http2.readFrameHeader(0xc4204f22d8, 0x9, 0x9, 0x14b5ae0, 0xc4208730e0, 0x0, 0xc400000000, 0x7ef9ad, 0xc421097fb0) /root/go/src/kubevirt.io/kubevirt/vendor/golang.org/x/net/http2/frame.go:237 +0x7b kubevirt.io/kubevirt/vendor/golang.org/x/net/http2.(*Framer).ReadFrame(0xc4204f22a0, 0xc420730de0, 0x0, 0x0, 0x0) /root/go/src/kubevirt.io/kubevirt/vendor/golang.org/x/net/http2/frame.go:492 +0xa4 kubevirt.io/kubevirt/vendor/golang.org/x/net/http2.(*clientConnReadLoop).run(0xc421097fb0, 0x1431c20, 0xc420485fb0) /root/go/src/kubevirt.io/kubevirt/vendor/golang.org/x/net/http2/transport.go:1428 +0x8e kubevirt.io/kubevirt/vendor/golang.org/x/net/http2.(*ClientConn).readLoop(0xc4206f8820) /root/go/src/kubevirt.io/kubevirt/vendor/golang.org/x/net/http2/transport.go:1354 +0x76 created by kubevirt.io/kubevirt/vendor/golang.org/x/net/http2.(*Transport).newClientConn /root/go/src/kubevirt.io/kubevirt/vendor/golang.org/x/net/http2/transport.go:579 +0x651 goroutine 6240 [chan send, 53 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc42088aea0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 163 [chan send, 89 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc420abc0f0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 234 [chan send, 86 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc42080ecc0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 1218 [chan send, 83 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4205a1800) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 1748 [chan send, 80 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc420726060) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 2267 [chan send, 77 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4208f8c60) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 7701 [chan send, 46 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4208e5800) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 8789 [chan send, 40 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4209aade0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 3911 [chan send, 68 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc420a2aff0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 2798 [chan send, 74 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4207cf740) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 4429 [chan send, 65 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc420871e60) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 3383 [chan send, 71 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4207cfec0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 7211 [chan send, 50 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4209ccab0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 4972 [chan send, 62 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4208e5a40) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 6139 [chan send, 56 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4209e70e0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 9819 [chan send, 34 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4207316b0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 15587 [chan send]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4208e5d70) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 5621 [chan send, 59 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc420941230) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 9319 [chan send, 37 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4208f9b60) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 12987 [chan send, 16 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4208e5440) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 8233 [chan send, 44 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc420a2a270) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 11426 [chan send, 25 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4208fd6e0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 10318 [chan send, 31 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4209e6db0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 10898 [chan send, 28 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4208f8cc0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 12461 [chan send, 19 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc420731710) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 11942 [chan send, 22 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc420a2a4b0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 13517 [chan send, 13 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc420620c00) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 14044 [chan send, 10 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc4209cc360) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 14554 [chan send, 7 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc42040dec0) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 goroutine 15057 [chan send, 4 minutes]: kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.(*StreamWatcher).receive(0xc420979440) /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:114 +0x114 created by kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch.NewStreamWatcher /root/go/src/kubevirt.io/kubevirt/vendor/k8s.io/apimachinery/pkg/watch/streamwatcher.go:60 +0xa8 make: *** [functest] Error 2 + make cluster-down ./cluster/down.sh