+ export WORKSPACE=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev + WORKSPACE=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev + [[ k8s-1.10.3-dev =~ openshift-.* ]] + [[ k8s-1.10.3-dev =~ .*-1.9.3-.* ]] + export KUBEVIRT_PROVIDER=k8s-1.10.3 + KUBEVIRT_PROVIDER=k8s-1.10.3 + 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 ....... Downloading ....... 2018/07/02 19:05:40 Waiting for host: 192.168.66.101:22 2018/07/02 19:05:43 Problem with dial: dial tcp 192.168.66.101:22: getsockopt: no route to host. Sleeping 5s 2018/07/02 19:05:51 Problem with dial: dial tcp 192.168.66.101:22: getsockopt: no route to host. Sleeping 5s 2018/07/02 19:05:56 Problem with dial: dial tcp 192.168.66.101:22: getsockopt: connection refused. Sleeping 5s 2018/07/02 19:06:01 Connected to tcp://192.168.66.101:22 + kubeadm init --config /etc/kubernetes/kubeadm.conf [init] Using Kubernetes version: v1.10.3 [init] Using Authorization modes: [Node RBAC] [preflight] Running pre-flight checks. [WARNING FileExisting-crictl]: crictl not found in system path Suggestion: go get github.com/kubernetes-incubator/cri-tools/cmd/crictl Flag --admission-control has been deprecated, Use --enable-admission-plugins or --disable-admission-plugins instead. Will be removed in a future version. [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 etcd/ca certificate and key. [certificates] Generated etcd/server certificate and key. [certificates] etcd/server serving cert is signed for DNS names [localhost] and IPs [127.0.0.1] [certificates] Generated etcd/peer certificate and key. [certificates] etcd/peer serving cert is signed for DNS names [node01] and IPs [192.168.66.101] [certificates] Generated etcd/healthcheck-client certificate and key. [certificates] Generated apiserver-etcd-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] 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 25.007637 seconds [uploadconfig] Storing the configuration used in ConfigMap "kubeadm-config" in the "kube-system" Namespace [markmaster] Will mark node node01 as master by adding a label and a taint [markmaster] Master node01 tainted and labelled with key/value: node-role.kubernetes.io/master="" [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: kube-dns [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:a60180ef64a1856f51632c00264c926ab32e5f3e92f3c1f54350dc727b15ad3b + 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 2018/07/02 19:06:43 Waiting for host: 192.168.66.102:22 2018/07/02 19:06:46 Problem with dial: dial tcp 192.168.66.102:22: getsockopt: no route to host. Sleeping 5s 2018/07/02 19:06:54 Problem with dial: dial tcp 192.168.66.102:22: getsockopt: no route to host. Sleeping 5s 2018/07/02 19:06:59 Connected to tcp://192.168.66.102:22 + 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 FileExisting-crictl]: crictl not found in system path Suggestion: go get github.com/kubernetes-incubator/cri-tools/cmd/crictl [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" 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 39588992 kubectl Sending file modes: C0600 5450 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 48s v1.10.3 node02 Ready 16s v1.10.3 + 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 49s v1.10.3 node02 Ready 17s v1.10.3 + make cluster-sync ./cluster/build.sh Building ... sha256:1a8677bde5dd0f9c4628cb5ff09d6a527c7670e086415a4d8a52aab2ad846937 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.10.3-dev/go/src/kubevirt.io/kubevirt' hack/dockerized "./hack/check.sh && KUBEVIRT_VERSION= ./hack/build-go.sh install " && ./hack/build-copy-artifacts.sh sha256:1a8677bde5dd0f9c4628cb5ff09d6a527c7670e086415a4d8a52aab2ad846937 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 38.37 MB Step 1/8 : FROM fedora:27 ---> 9110ae7f579f Step 2/8 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> b730b4ed65df Step 3/8 : RUN useradd -u 1001 --create-home -s /bin/bash virt-controller ---> Using cache ---> 9f795041856b Step 4/8 : WORKDIR /home/virt-controller ---> Using cache ---> d0ce5fa56fcc Step 5/8 : USER 1001 ---> Using cache ---> bf13501cba5c Step 6/8 : COPY virt-controller /usr/bin/virt-controller ---> add609f5a744 Removing intermediate container 3f33d251adf9 Step 7/8 : ENTRYPOINT /usr/bin/virt-controller ---> Running in e89b45771591 ---> 78437d78836a Removing intermediate container e89b45771591 Step 8/8 : LABEL "kubevirt-functional-tests-k8s-1.10.3-dev0" '' "virt-controller" '' ---> Running in e693aac8708a ---> 426860834af6 Removing intermediate container e693aac8708a Successfully built 426860834af6 Sending build context to Docker daemon 39.09 MB Step 1/10 : FROM kubevirt/libvirt:3.7.0 ---> c4e262d2dc3c Step 2/10 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> 11c19af44f99 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 ---> 736e39e6f88b Step 4/10 : COPY virt-launcher /usr/bin/virt-launcher ---> 3068b4dd5572 Removing intermediate container dabc1b870c70 Step 5/10 : COPY kubevirt-sudo /etc/sudoers.d/kubevirt ---> 498a51c921cf Removing intermediate container 558dda687b08 Step 6/10 : RUN setcap CAP_NET_BIND_SERVICE=+eip /usr/bin/qemu-system-x86_64 ---> Running in ac3ee643db72  ---> f77fb5a6cbaf Removing intermediate container ac3ee643db72 Step 7/10 : RUN mkdir -p /usr/share/kubevirt/virt-launcher ---> Running in bf9911c5c74f  ---> e59e7b87086a Removing intermediate container bf9911c5c74f Step 8/10 : COPY entrypoint.sh libvirtd.sh sh.sh sock-connector /usr/share/kubevirt/virt-launcher/ ---> 5a5ea7d693f8 Removing intermediate container 1f989a282d8d Step 9/10 : ENTRYPOINT /usr/share/kubevirt/virt-launcher/entrypoint.sh ---> Running in 4c3ee4ea16db ---> 151799e23324 Removing intermediate container 4c3ee4ea16db Step 10/10 : LABEL "kubevirt-functional-tests-k8s-1.10.3-dev0" '' "virt-launcher" '' ---> Running in d03a616a9c28 ---> 9d0a799a0f1e Removing intermediate container d03a616a9c28 Successfully built 9d0a799a0f1e Sending build context to Docker daemon 40.64 MB Step 1/5 : FROM fedora:27 ---> 9110ae7f579f Step 2/5 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> b730b4ed65df Step 3/5 : COPY virt-handler /usr/bin/virt-handler ---> b4a8fddc2ffc Removing intermediate container 09b3a49314e8 Step 4/5 : ENTRYPOINT /usr/bin/virt-handler ---> Running in b80eed9ddcae ---> deb6ad06750d Removing intermediate container b80eed9ddcae Step 5/5 : LABEL "kubevirt-functional-tests-k8s-1.10.3-dev0" '' "virt-handler" '' ---> Running in c7ece0a1aaa2 ---> ab34a5b74ae5 Removing intermediate container c7ece0a1aaa2 Successfully built ab34a5b74ae5 Sending build context to Docker daemon 38.09 MB Step 1/8 : FROM fedora:27 ---> 9110ae7f579f Step 2/8 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> b730b4ed65df Step 3/8 : RUN useradd -u 1001 --create-home -s /bin/bash virt-api ---> Using cache ---> 5c02e471f3c3 Step 4/8 : WORKDIR /home/virt-api ---> Using cache ---> aee004e37b06 Step 5/8 : USER 1001 ---> Using cache ---> 503600570331 Step 6/8 : COPY virt-api /usr/bin/virt-api ---> a362f621b5e4 Removing intermediate container 4da703174737 Step 7/8 : ENTRYPOINT /usr/bin/virt-api ---> Running in e5a300e07af4 ---> e7c174abc1d9 Removing intermediate container e5a300e07af4 Step 8/8 : LABEL "kubevirt-functional-tests-k8s-1.10.3-dev0" '' "virt-api" '' ---> Running in 1c34541e6f54 ---> 445f9055fc5f Removing intermediate container 1c34541e6f54 Successfully built 445f9055fc5f Sending build context to Docker daemon 4.608 kB Step 1/7 : FROM fedora:27 ---> 9110ae7f579f Step 2/7 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> b730b4ed65df Step 3/7 : ENV container docker ---> Using cache ---> f899e4585fe3 Step 4/7 : RUN mkdir -p /images/custom /images/alpine /images/datavolume1 /images/datavolume2 /images/datavolume3 && 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 ---> ce42f11c6a4e Step 5/7 : ADD entrypoint.sh / ---> Using cache ---> 08543daae095 Step 6/7 : CMD /entrypoint.sh ---> Using cache ---> 9eea96d25d79 Step 7/7 : LABEL "disks-images-provider" '' "kubevirt-functional-tests-k8s-1.10.3-dev0" '' ---> Running in d78916d083a1 ---> 80d512abd524 Removing intermediate container d78916d083a1 Successfully built 80d512abd524 Sending build context to Docker daemon 2.56 kB Step 1/5 : FROM fedora:27 ---> 9110ae7f579f Step 2/5 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> b730b4ed65df Step 3/5 : ENV container docker ---> Using cache ---> f899e4585fe3 Step 4/5 : RUN dnf -y install procps-ng nmap-ncat && dnf -y clean all ---> Using cache ---> 98d448efbabd Step 5/5 : LABEL "kubevirt-functional-tests-k8s-1.10.3-dev0" '' "vm-killer" '' ---> Running in 1c8891c1a401 ---> 9a81f0b05d92 Removing intermediate container 1c8891c1a401 Successfully built 9a81f0b05d92 Sending build context to Docker daemon 5.12 kB Step 1/7 : FROM debian:sid ---> 496290160351 Step 2/7 : MAINTAINER "David Vossel" \ ---> Using cache ---> 3b36b527fef8 Step 3/7 : ENV container docker ---> Using cache ---> b3ada414d649 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 ---> 337be6171fcb Step 5/7 : ADD entry-point.sh / ---> Using cache ---> a98a961fa5a1 Step 6/7 : CMD /entry-point.sh ---> Using cache ---> 19baf5d1aab8 Step 7/7 : LABEL "kubevirt-functional-tests-k8s-1.10.3-dev0" '' "registry-disk-v1alpha" '' ---> Running in 97a4ecc98755 ---> ecf356d0f33b Removing intermediate container 97a4ecc98755 Successfully built ecf356d0f33b Sending build context to Docker daemon 2.56 kB Step 1/4 : FROM localhost:33042/kubevirt/registry-disk-v1alpha:devel ---> ecf356d0f33b Step 2/4 : MAINTAINER "David Vossel" \ ---> Running in 382efca35e6e ---> 63166f7758ee Removing intermediate container 382efca35e6e Step 3/4 : RUN curl https://download.cirros-cloud.net/0.4.0/cirros-0.4.0-x86_64-disk.img > /disk/cirros.img ---> Running in 4310dd94bbd2  % Total % Received % Xferd Average Speed Time Time Time Current     Dload Upload Total Spent  Left Speed  0 0 0  0 0  0 0 0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 3 12.1M 3 416k 0 0 321k 0 0:00:38 0:00:01 0:00:37 321k 9 12.1M 9 1232k 0 0 528k 0 0:00:23 0:00:02 0:00:21 528k 20 12.1M 20 2528k 0 0 764k 0 0:00:16 0:00:03 0:00:13 764k 36 12.1M 36 4560k  0 0 1063k 0 0:00:11 0:00:04 0:00:07 1063k 63 12.1M 63 7920k 0 0 1500k  0 0:00:08 0:00:05 0:00:03 1615k 100 12.1M 100 12.1M 0 0 2014k  0 0:00:06 0:00:06 --:--:-- 2463k  ---> df11b8ef660c Removing intermediate container 4310dd94bbd2 Step 4/4 : LABEL "cirros-registry-disk-demo" '' "kubevirt-functional-tests-k8s-1.10.3-dev0" '' ---> Running in d50a7c0ea057 ---> 134ef1a53613 Removing intermediate container d50a7c0ea057 Successfully built 134ef1a53613 Sending build context to Docker daemon 2.56 kB Step 1/4 : FROM localhost:33042/kubevirt/registry-disk-v1alpha:devel ---> ecf356d0f33b Step 2/4 : MAINTAINER "The KubeVirt Project" ---> Running in 5fdaa6c7c1e7 ---> b7c865149bc4 Removing intermediate container 5fdaa6c7c1e7 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 ---> Running in 397092970fff   % Total % Received % Xferd Average Speed Time Time Time Current    Dload  Upload Total Spent  Left Speed 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:--  0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0  0 221M 0 80431 0 0 78545 0 0:49:17 0:00:01 0:49:16 78545 0 221M 0 376k 0 0 186k 0 0:20:13 0:00:02 0:20:11 301k 0 221M 0 670k 0 0 223k 0 0:16:56 0:00:03 0:16:53 298k 0 221M 0 1025k 0 0 250k 0 0:15:07 0:00:04 0:15:03 307k 0 221M 0 1274k 0 0 250k 0 0:15:06 0:00:05 0:15:01 293k 0 221M 0 1520k 0 0 249k 0 0:15:07 0:00:06 0:15:01 285k 0 221M 0 1755k 0 0 248k 0 0:15:13 0:00:07 0:15:06 272k 0 221M 0 1995k 0 0 247k 0 0:15:16 0:00:08 0:15:08 262k 1 221M 1 2289k 0 0 253k 0 0:14:56 0:00:09 0:14:47 255k 1 221M 1 2511k 0 0 250k 0 0:15:06 0:00:10 0:14:56 250k 1 221M 1 2693k 0 0 244k 0 0:15:29 0:00:11 0:15:18 237k 1 221M 1 2853k 0 0 237k 0 0:15:55 0:00:12 0:15:43  221k 1 221M 1 3027k 0 0 232k 0 0:16:14 0:00:13 0:16:01 208k 1 221M 1 3214k 0 0 229k 0 0:16:28 0:00:13 0:16:15 186k 1 221M 1 3427k 0 0 227k 0 0:16:39 0:00:15 0:16:24 181k 1 221M 1 3636k 0 0 226k 0 0:16:43 0:00:16 0:16:27 186k 1 221M 1 3903k 0 0 228k 0 0:16:32 0:00:17 0:16:15 207k  1 221M 1 4178k 0 0 231k  0 0:16:21 0:00:18 0:16:03 227k 2 221M 2 4563k 0 0 239k 0 0:15:47 0:00:19 0:15:28 266k 2 221M 2 5161k 0 0 257k  0  0:14:41 0:00:20 0:14:21 350k 2 221M 2 6078k 0 0 288k 0 0:13:05 0:00:21 0:12:44 493k 3 221M 3 7112k 0 0 322k 0 0:11:42  0:00:22  0:11:20 648k 3 221M 3 8266k 0 0 359k   0 0:10:31 0:00:23 0:10:08 826k 4 221M 4 9260k 0 0 385k 0 0:09:48 0:00:24 0:09:24 949k 4 221M 4 10.0M 0 0 411k 0 0:09:11 0:00:24 0:08:47 1035k 4 221M 4 10.8M 0 0 426k 0 0:08:51 0:00:26 0:08:25 1008k 5 221M 5 11.5M 0 0 436k 0 0:08:39 0:00:27 0:08:12 939k 5 221M 5 12.2M 0  0 446k 0 0:08:28 0:00:28 0:08:00 849k 5 221M 5 12.9M 0 0 455k 0 0:08:17 0:00:29 0:07:48 790k 6 221M 6 13.6M 0 0 464k 0 0:08:07 0:00:30 0:07:37 730k 6 221M 6 14.3M 0 0 473k 0 0:07:59 0:00:31 0:07:28 717k 6 221M 6 15.0M 0 0 483k 0 0:07:49 0:00:32 0:07:17 734k 7 221M 7 15.8M 0 0 490k 0 0:07:42 0:00:33 0:07:09 733k 7 221M 7 16.5M 0 0 497k 0  0:07:35 0:00:34 0:07:01 743k 7 221M 7 17.3M 0 0 508k 0 0:07:26 0:00:34 0:06:52 768k 8 221M  8 18.2M 0  0 517k 0 0:07:18 0:00:36 0:06:42 792k 8 221M 8 19.0M 0 0 526k  0 0:07:10 0:00:37 0:06:33 805k 8 221M 8 19.7M 0 0 533k  0 0:07:05 0:00:38 0:06:27 818k 9 221M 9 20.3M 0 0 533k 0 0:07:05 0:00:39 0:06:26 773k 9 221M 9 20.7M 0 0 531k 0 0:07:07  0:00:40 0:06:27 692k 9 221M 9 21.2M 0   0 529k 0 0:07:08 0:00:41 0:06:27 614k 9 221M 9 21.7M 0 0 529k 0 0:07:08 0:00:42 0:06:26 546k 9 221M 9 22.0M 0 0 524k 0 0:07:12 0:00:43 0:06:29 461k 10 221M 10 22.3M 0 0 520k 0 0:07:15 0:00:44 0:06:31 419k 10 221M 10 22.6M 0 0 516k 0 0:07:19 0:00:44 0:06:35 396k 10 221M 10 23.0M 0 0 512k 0 0:07:22 0:00:46 0:06:36 372k 10 221M 10 23.3M 0 0 509k 0 0:07:25 0:00:47 0:06:38 343k 10 221M 10 23.7M 0 0 506k 0 0:07:28 0:00:48 0:06:40 345k 10 221M 10 24.1M 0 0 503k 0 0:07:30 0:00:48 0:06:42 357k 11 221M 11 24.5M 0 0 502k 0 0:07:31 0:00:50 0:06:41 374k 11 221M 11 24.9M 0 0 500k  0 0:07:32 0:00:51 0:06:41 392k 11 221M 11 25.3M 0 0 498k 0 0:07:34 0:00:52 0:06:42 401k 11 221M 11 25.7M 0 0 496k 0 0:07:36 0:00:53 0:06:43 406k 11 221M 11 26.1M 0 0  495k  0 0:07:38 0:00:54 0:06:44 410k 11 221M 11 26.5M 0 0 494k  0 0:07:38 0:00:55 0:06:43 416k 12 221M 12 26.9M 0 0 493k 0 0:07:39 0:00:56 0:06:43 416k 12 221M 12 27.4M 0 0 492k  0 0:07:40 0:00:57 0:06:43 426k 12 221M 12 27.9M 0 0 493k 0 0:07:40 0:00:58 0:06:42 455k 12 221M 12 28.6M 0 0 496k 0 0:07:36 0:00:58 0:06:38 509k 13 221M 13 29.5M 0 0 504k 0 0:07:29 0:01:00 0:06:29  616k 13 221M 13 30.8M 0 0 518k 0 0:07:17 0:01:01 0:06:16 801k 14 221M 14 32.7M 0 0 541k 0 0:06:59 0:01:02 0:05:57 1096k 15 221M 15 34.9M 0 0 567k  0 0:06:39 0:01:03 0:05:36 1432k 16 221M 16 37.0M 0 0 593k 0 0:06:22 0:01:04 0:05:18 1730k 17 221M 17 38.9M  0 0 614k 0  0:06:09 0:01:05 0:05:04 1935k 18 221M 18 40.2M 0 0 624k 0 0:06:03  0:01:06 0:04:57 1918k 18 221M 18 41.6M 0 0 636k 0 0:05:56 0:01:07 0:04:49 1819k 19 221M 19 43.0M 0 0 647k 0 0:05:50 0:01:08 0:04:42 1640k 19 221M 19 44.1M 0 0 655k 0 0:05:46 0:01:08 0:04:38 1453k 20 221M 20 45.4M 0 0 664k 0 0:05:41 0:01:10 0:04:31 1311k 20 221M 20 46.4M 0 0 669k 0 0:05:39 0:01:11 0:04:28 1256k 21 221M 21 47.5M 0 0 675k 0 0:05:35  0:01:12 0:04:23 1201k 21 221M 21 48.6M 0 0 681k 0 0:05:32  0:01:13 0:04:19 1154k 22 221M 22 49.7M 0 0 688k 0 0:05:29 0:01:14 0:04:15 1139k 22 221M 22 50.8M 0 0 694k 0 0:05:26 0:01:15 0:04:11 1115k 23 221M 23 52.0M 0  0 700k  0 0:05:23 0:01:16 0:04:07 1145k 24 221M 24 53.3M  0 0 708k 0 0:05:20 0:01:17 0:04:03 1182k 24 221M 24 54.4M 0 0 715k  0 0:05:17 0:01:18 0:03:59 1204k 25 221M 25 55.7M 0 0 722k  0 0:05:14 0:01:18 0:03:56 1229k 25 221M 25 57.1M 0 0 731k  0  0:05:10 0:01:20 0:03:50 1283k 26 221M 26 58.4M 0 0 738k  0  0:05:07 0:01:21 0:03:46 1311k 26 221M 26 59.5M 0 0 743k 0  0:05:04 0:01:22 0:03:42 1286k 27 221M 27 60.9M 0 0 751k 0 0:05:01 0:01:23 0:03:38 1322k 28 221M 28 62.3M 0 0 760k 0 0:04:58 0:01:24 0:03:34 1359k 28 221M 28 63.8M 0 0 768k 0 0:04:55 0:01:25  0:03:30 1370k 29 221M 29 65.2M 0 0 776k 0 0:04:52 0:01:26 0:03:26 1402k 30 221M 30 66.7M 0 0 785k  0 0:04:49 0:01:27 0:03:22 1456k 30 221M 30 68.1M 0 0 793k 0 0:04:46 0:01:28 0:03:18 1478k 31 221M 31 69.7M  0 0 802k  0 0:04:42 0:01:28  0:03:14 1520k 32 221M 32 71.6M 0 0 815k 0 0:04:38 0:01:30 0:03:08 1600k 32 221M 32 73.0M 0 0 821k 0 0:04:36 0:01:31  0:03:05 1589k 33 221M 33 74.1M 0 0 825k 0 0:04:34  0:01:32 0:03:02 1533k 34 221M 34 75.4M 0 0 831k 0 0:04:33 0:01:33 0:03:00 1495k 34 221M 34 76.8M 0 0 836k 0 0:04:31 0:01:34 0:02:57 1433k 35 221M 35 78.1M 0 0 842k  0 0:04:29 0:01:35 0:02:54 1328k 35 221M 35 79.5M 0 0 847k 0 0:04:27 0:01:36 0:02:51 1326k 36 221M 36 80.5M 0 0 850k 0 0:04:26 0:01:37 0:02:49 1299k 36 221M 36 81.7M 0 0 853k   0 0:04:25 0:01:38 0:02:47 1277k 37 221M 37 83.0M 0 0 858k 0 0:04:24  0:01:38 0:02:46 1273k 38 221M 38 84.4M 0 0 864k  0 0:04:22 0:01:40 0:02:42 1284k 38 221M 38 85.7M 0 0 869k 0 0:04:20 0:01:41 0:02:39 1286k 39 221M 39 87.0M 0 0 874k 0 0:04:19 0:01:42 0:02:37 1345k 39 221M 39 88.4M 0 0 879k 0 0:04:18 0:01:43 0:02:35 1379k 40 221M 40 89.9M 0 0 885k 0 0:04:16 0:01:44 0:02:32 1409k 41 221M 41 91.5M 0 0 892k  0 0:04:14 0:01:45 0:02:29 1455k 42 221M 42 93.3M 0 0 901k 0 0:04:11 0:01:46 0:02:25 1557k 43 221M 43 95.6M 0 0 914k 0 0:04:07 0:01:47 0:02:20 1741k 44 221M 44 98.0M 0 0 929k 0 0:04:04 0:01:48 0:02:16 1963k 45 221M 45 100M 0 0 942k   0 0:04:00 0:01:48 0:02:12 2145k 46 221M 46 102M 0 0 954k  0 0:03:57 0:01:50 0:02:07 2251k 47 221M 47 104M 0 0 963k 0 0:03:55 0:01:51 0:02:04 2270k 47 221M 47 105M 0 0 968k 0 0:03:54 0:01:52 0:02:02 2127k 48 221M 48 107M 0 0 975k 0 0:03:52  0:01:52 0:02:00 1968k 49 221M 49 109M 0 0 982k 0 0:03:50 0:01:54 0:01:56 1841k 50 221M 50 111M 0 0 989k 0 0:03:49 0:01:55 0:01:54 1755k 50 221M 50 112M 0 0 995k 0 0:03:47 0:01:56 0:01:51 1716k 51 221M 51 114M 0  0 1002k 0 0:03:46 0:01:57  0:01:49 1751k 52 221M 52 116M 0 0 1009k   0 0:03:44 0:01:58 0:01:46 1786k 53 221M 53 118M 0 0 1017k 0  0:03:42 0:01:59 0:01:43 1833k 54 221M 54 120M 0 0 1029k 0 0:03:40 0:02:00 0:01:40 1949k 55 221M 55 123M 0 0 1042k   0 0:03:37 0:02:01 0:01:36 2126k 56 221M 56 125M 0 0 1051k 0 0:03:35 0:02:02 0:01:33 2207k 57 221M 57 126M 0 0 1057k 0  0:03:34 0:02:03 0:01:31 2182k 58 221M 58 128M 0 0 1063k  0 0:03:33 0:02:04 0:01:29 2144k 58 221M 58 130M 0 0 1069k 0 0:03:32 0:02:05 0:01:27 2045k 59 221M 59 132M 0 0 1072k 0 0:03:31 0:02:06 0:01:25 1807k 60 221M 60 133M 0 0 1077k 0 0:03:30 0:02:07 0:01:23 1715k 61 221M 61 135M  0 0 1083k 0 0:03:29 0:02:08 0:01:21 1728k 61 221M 61 136M 0 0 1086k  0 0:03:28 0:02:09 0:01:19 1659k 62 221M 62 138M 0 0 1088k  0 0:03:28 0:02:10 0:01:18 1564k 63 221M 63 139M 0 0 1091k 0 0:03:27 0:02:11 0:01:16 1556k 63 221M 63 140M 0 0 1093k  0 0:03:27 0:02:12 0:01:15 1491k 64 221M 64 142M 0 0 1095k 0  0:03:27 0:02:13 0:01:14 1411k 64 221M 64 143M 0 0 1098k 0 0:03:26 0:02:14  0:01:12 1401k 65 221M 65 145M 0 0 1101k 0 0:03:26 0:02:15 0:01:11 1422k 66  221M 66 146M 0 0 1104k 0 0:03:25 0:02:16 0:01:09 1447k 66 221M 66 147M 0 0 1105k  0 0:03:25 0:02:17  0:01:08 1431k 67 221M 67 149M 0 0 1109k 0 0:03:24 0:02:18 0:01:06 1457k 68 221M 68 150M 0 0 1111k 0 0:03:24 0:02:19 0:01:05 1466k 68 221M 68 151M 0 0 1109k 0 0:03:24 0:02:19 0:01:05 1344k 68 221M 68 152M 0 0 1107k 0  0:03:24 0:02:21 0:01:03 1177k 69 221M 69 153M 0 0 1104k  0 0:03:25  0:02:22 0:01:03 1067k 69 221M 69 153M 0 0 1102k 0 0:03:25 0:02:23 0:01:02 908k 69 221M 69 154M 0 0 1099k 0 0:03:26 0:02:24 0:01:02 768k 70 221M 70 155M 0 0 1097k  0 0:03:26 0:02:25 0:01:01 752k 70 221M 70 156M 0 0 1096k 0  0:03:26 0:02:25 0:01:01 786k 71 221M 71 157M 0 0 1095k 0 0:03:27  0:02:27 0:01:00 850k 71 221M 71 158M 0 0 1097k 0 0:03:26  0:02:28 0:00:58 978k 72 221M 72 160M 0 0 1102k 0 0:03:25 0:02:29 0:00:56 1186k 73 221M  73 162M 0 0 1112k 0 0:03:24 0:02:29 0:00:55 1535k 74 221M 74  165M 0 0 1121k  0  0:03:22 0:02:31 0:00:51 1863k 75 221M 75 167M 0 0 1129k 0 0:03:20 0:02:32 0:00:48 2115k 76 221M 76 169M 0 0 1135k 0 0:03:19 0:02:33 0:00:46 2239k 77 221M 77 171M 0 0 1139k 0  0:03:19 0:02:34 0:00:45 2239k 78 221M 78 173M 0 0 1142k 0 0:03:18 0:02:35 0:00:43 2064k 78 221M 78 174M 0 0 1144k 0 0:03:18 0:02:36 0:00:42 1823k 79 221M 79 175M 0 0 1145k 0 0:03:18 0:02:37 0:00:41 1641k 79 221M 79 177M 0 0 1147k 0 0:03:17 0:02:38 0:00:39 1539k 80 221M 80 178M 0 0 1150k 0 0:03:17 0:02:39 0:00:38 1483k 81 221M 81 180M 0 0 1152k 0 0:03:16 0:02:39 0:00:37 1455k 81 221M 81 181M 0 0 1154k 0 0:03:16 0:02:41 0:00:35 1492k 82 221M 82 183M 0 0 1157k 0  0:03:16  0:02:42 0:00:34 1525k 83 221M 83 184M 0 0 1161k 0 0:03:15 0:02:43 0:00:32 1581k 84 221M 84 186M 0 0 1166k 0 0:03:14 0:02:44 0:00:30 1677k 85 221M 85 189M 0 0 1174k 0 0:03:13 0:02:45 0:00:28 1858k 86 221M 86 192M 0 0  1184k  0 0:03:11 0:02:46 0:00:25 2141k 87 221M 87 194M 0 0 1190k 0 0:03:10 0:02:47 0:00:23 2260k 88 221M 88 195M 0 0 1192k 0 0:03:10 0:02:48 0:00:22 2206k 88 221M 88 196M 0 0 1191k 0 0:03:10 0:02:49 0:00:21 2029k 89 221M 89 197M 0 0 1192k 0 0:03:10 0:02:49 0:00:21 1788k 89 221M 89  199M 0 0 1192k  0  0:03:10 0:02:51 0:00:19 1447k 90 221M 90 200M 0 0 1191k 0 0:03:10 0:02:52 0:00:18 1239k 90 221M 90 201M 0 0 1191k 0 0:03:10 0:02:53 0:00:17 1145k 91 221M 91 202M 0 0 1190k 0 0:03:10 0:02:54 0:00:16 1152k 91 221M 91 203M 0 0 1189k 0 0:03:10 0:02:55 0:00:15 1093k 92 221M 92 204M 0 0 1188k 0 0:03:10 0:02:56 0:00:14 1048k 92 221M 92 205M 0 0 1187k 0 0:03:11 0:02:56 0:00:15 1025k 93 221M 93 206M 0 0 1186k 0 0:03:11 0:02:58 0:00:13 1021k 93 221M 93 207M 0 0 1185k 0 0:03:11 0:02:59 0:00:12  999k 93 221M 93 208M 0 0 1184k  0 0:03:11 0:02:59 0:00:12 1025k 94 221M 94 209M 0 0 1184k 0 0:03:11 0:03:01 0:00:10 1059k 95 221M  95 210M 0 0 1185k  0 0:03:11 0:03:02 0:00:09 1120k 95 221M 95 212M 0  0 1187k 0 0:03:11 0:03:03 0:00:08 1241k 96 221M 96 214M 0 0 1191k 0  0:03:10 0:03:04 0:00:06 1417k 97 221M 97 215M 0 0 1194k 0 0:03:09 0:03:05  0:00:04 1555k 98 221M 98 217M 0 0 1198k 0 0:03:09 0:03:06 0:00:03 1705k 98 221M 98 219M 0 0 1200k 0 0:03:09 0:03:07 0:00:02 1746k  99 221M 99 220M 0  0 1202k 0 0:03:08 0:03:08 --:--:-- 1739k 100 221M 100 221M 0 0 1202k 0 0:03:08 0:03:08 --:--:-- 1637k  ---> eb34114d74fc Removing intermediate container 397092970fff Step 4/4 : LABEL "fedora-cloud-registry-disk-demo" '' "kubevirt-functional-tests-k8s-1.10.3-dev0" '' ---> Running in b678582da77b ---> ee0d9c856869 Removing intermediate container b678582da77b Successfully built ee0d9c856869 Sending build context to Docker daemon 2.56 kB Step 1/4 : FROM localhost:33042/kubevirt/registry-disk-v1alpha:devel ---> ecf356d0f33b Step 2/4 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> b7c865149bc4 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 ---> Running in 300be7ad971f  % Total % Received % Xferd Average Speed Time Time Time Current  Dload Upload Total  Spent Left Speed  0 0 0 0 0 0 0  0 --:--:-- --:--:-- --:--:-- 0 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 13 37.0M 13 5190k 0 0 3528k 0  0:00:10 0:00:01 0:00:09 3525k 32 37.0M 32 11.8M 0 0 4930k 0 0:00:07 0:00:02  0:00:05 4928k 50 37.0M 50 18.7M 0 0 5533k  0 0:00:06 0:00:03 0:00:03 5531k 70 37.0M 70 25.9M 0 0 5943k 0 0:00:06 0:00:04 0:00:02 5943k 90 37.0M 90 33.4M 0 0 6255k  0 0:00:06 0:00:05 0:00:01 6899k 100 37.0M 100 37.0M 0 0 6384k 0 0:00:05 0:00:05 --:--:-- 7328k  ---> eb9b2fd15846 Removing intermediate container 300be7ad971f Step 4/4 : LABEL "alpine-registry-disk-demo" '' "kubevirt-functional-tests-k8s-1.10.3-dev0" '' ---> Running in 549bd3a51e49 ---> 54032b17b4e2 Removing intermediate container 549bd3a51e49 Successfully built 54032b17b4e2 Sending build context to Docker daemon 34.91 MB Step 1/8 : FROM fedora:27 ---> 9110ae7f579f Step 2/8 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> b730b4ed65df Step 3/8 : RUN useradd -u 1001 --create-home -s /bin/bash virtctl ---> Using cache ---> 4f94005a8ef0 Step 4/8 : WORKDIR /home/virtctl ---> Using cache ---> 78481d3ffb57 Step 5/8 : USER 1001 ---> Using cache ---> 05fee420f2cf Step 6/8 : COPY subresource-access-test /subresource-access-test ---> d6d626494305 Removing intermediate container 28d1dca26db4 Step 7/8 : ENTRYPOINT /subresource-access-test ---> Running in 3cd621dc8a54 ---> 60b229e977df Removing intermediate container 3cd621dc8a54 Step 8/8 : LABEL "kubevirt-functional-tests-k8s-1.10.3-dev0" '' "subresource-access-test" '' ---> Running in a5906ea17189 ---> 497f5c69d1a2 Removing intermediate container a5906ea17189 Successfully built 497f5c69d1a2 Sending build context to Docker daemon 3.072 kB Step 1/9 : FROM fedora:27 ---> 9110ae7f579f Step 2/9 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> b730b4ed65df Step 3/9 : ENV container docker ---> Using cache ---> f899e4585fe3 Step 4/9 : RUN dnf -y install make git gcc && dnf -y clean all ---> Using cache ---> 8e4b2ebac4a7 Step 5/9 : ENV GIMME_GO_VERSION 1.9.2 ---> Using cache ---> 88f79aa9e9f7 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 ---> 87d2f8a07b0b Step 7/9 : ENV GOPATH "/go" GOBIN "/usr/bin" ---> Using cache ---> ed0543d85229 Step 8/9 : RUN mkdir -p /go && source /etc/profile.d/gimme.sh && go get github.com/masterzen/winrm-cli ---> Using cache ---> b34d756315a5 Step 9/9 : LABEL "kubevirt-functional-tests-k8s-1.10.3-dev0" '' "winrmcli" '' ---> Running in cd64003d4abd ---> ff0ae3fcc4d3 Removing intermediate container cd64003d4abd Successfully built ff0ae3fcc4d3 Sending build context to Docker daemon 4.096 kB Step 1/8 : FROM fedora:27 ---> 9110ae7f579f Step 2/8 : MAINTAINER "The KubeVirt Project" ---> Using cache ---> b730b4ed65df Step 3/8 : ENV container docker ---> Using cache ---> f899e4585fe3 Step 4/8 : RUN dnf install -y nginx && dnf -y clean all ---> Using cache ---> ee9344556d91 Step 5/8 : RUN mkdir -p /usr/share/nginx/html/images && curl http://dl-cdn.alpinelinux.org/alpine/v3.7/releases/x86_64/alpine-virt-3.7.0-x86_64.iso > /usr/share/nginx/html/images/alpine.iso && rm -f /etc/nginx/nginx.conf ---> Using cache ---> 95ba81a388d3 Step 6/8 : ADD nginx.conf /etc/nginx/ ---> Using cache ---> f6c6607b97aa Step 7/8 : EXPOSE 80 ---> Using cache ---> ba8a48328b29 Step 8/8 : LABEL "cdi-http-import-server" '' "kubevirt-functional-tests-k8s-1.10.3-dev0" '' ---> Running in 72482a3243b7 ---> 9f4ed03e47f4 Removing intermediate container 72482a3243b7 Successfully built 9f4ed03e47f4 hack/build-docker.sh push The push refers to a repository [localhost:33042/kubevirt/virt-controller] 6bf83edf79ac: Preparing 2f3c351af6e6: Preparing 39bae602f753: Preparing 2f3c351af6e6: Pushed 6bf83edf79ac: Pushed 39bae602f753: Pushed devel: digest: sha256:f963606d4cac31621c75cb1dcfa96aa71055e1448fcf8ce8d341d3eecbaaeb12 size: 949 The push refers to a repository [localhost:33042/kubevirt/virt-launcher] 5dc9c2956bcc: Preparing 9452eeb4c211: Preparing 0a1642d4a11b: Preparing 71a6275c9d49: Preparing 4d2b07a5ef75: Preparing 375f4f593077: Preparing 9e20b26113ea: Preparing a1a99db27cd1: Preparing ec5be2616f4d: Preparing ffcfbc9458ac: Preparing 375f4f593077: Waiting 9e20b26113ea: Waiting 68e0ce966da1: Preparing 39bae602f753: Preparing 68e0ce966da1: Waiting a1a99db27cd1: Waiting 39bae602f753: Waiting ec5be2616f4d: Waiting 5dc9c2956bcc: Pushed 9452eeb4c211: Pushed 71a6275c9d49: Pushed a1a99db27cd1: Pushed 9e20b26113ea: Pushed ec5be2616f4d: Pushed ffcfbc9458ac: Pushed 39bae602f753: Mounted from kubevirt/virt-controller 0a1642d4a11b: Pushed 375f4f593077: Pushed 4d2b07a5ef75: Pushed 68e0ce966da1: Pushed devel: digest: sha256:7ab74072540826660cdcaf5f6ff41690794c631cce096dc89029e8d7e01aa684 size: 2828 The push refers to a repository [localhost:33042/kubevirt/virt-handler] 30a7bca4d4d5: Preparing 39bae602f753: Preparing 39bae602f753: Mounted from kubevirt/virt-launcher 30a7bca4d4d5: Pushed devel: digest: sha256:f68c70ed0ef5fc7ff653e7a6a3d51fdba15d23515b1090c0ba4c10ae0772aa79 size: 741 The push refers to a repository [localhost:33042/kubevirt/virt-api] 22084e7695f7: Preparing cb5027ae4f61: Preparing 39bae602f753: Preparing 39bae602f753: Mounted from kubevirt/virt-handler cb5027ae4f61: Pushed 22084e7695f7: Pushed devel: digest: sha256:1d61eba4bb7d31fe994f2ce75279bb213b1e58482dacaaddc7b8a1abd3c5bed1 size: 948 The push refers to a repository [localhost:33042/kubevirt/disks-images-provider] 1b0ddb6b46a7: Preparing 829e9be2f5c2: Preparing 39bae602f753: Preparing 39bae602f753: Mounted from kubevirt/virt-api 1b0ddb6b46a7: Pushed 829e9be2f5c2: Pushed devel: digest: sha256:57d9202f41e2a497bc65ab635e4f18c96a0da51aa52f7767210f3b9d812b4897 size: 948 The push refers to a repository [localhost:33042/kubevirt/vm-killer] 9470a2bb70a6: Preparing 39bae602f753: Preparing 39bae602f753: Mounted from kubevirt/disks-images-provider 9470a2bb70a6: Pushed devel: digest: sha256:c81d99a7d6f742fee9b051ea47a8571567db0aabab384b503cd5f1043a967284 size: 740 The push refers to a repository [localhost:33042/kubevirt/registry-disk-v1alpha] bfd12fa374fa: Preparing 18ac8ad2aee9: Preparing 132d61a890c5: Preparing bfd12fa374fa: Pushed 18ac8ad2aee9: Pushed 132d61a890c5: Pushed devel: digest: sha256:fe9dcd647c749939d7751617bc491a8f6220a64d3a9ee3d17a073b8db192cae1 size: 948 The push refers to a repository [localhost:33042/kubevirt/cirros-registry-disk-demo] bffba5a5e965: Preparing bfd12fa374fa: Preparing 18ac8ad2aee9: Preparing 132d61a890c5: Preparing bfd12fa374fa: Mounted from kubevirt/registry-disk-v1alpha 132d61a890c5: Mounted from kubevirt/registry-disk-v1alpha 18ac8ad2aee9: Mounted from kubevirt/registry-disk-v1alpha bffba5a5e965: Pushed devel: digest: sha256:22a8ad16f4df2237ebf4b53666fd1be5220f82dcea1d2d2d39e81ab45124f472 size: 1160 The push refers to a repository [localhost:33042/kubevirt/fedora-cloud-registry-disk-demo] 8f9f927aee1c: Preparing bfd12fa374fa: Preparing 18ac8ad2aee9: Preparing 132d61a890c5: Preparing 18ac8ad2aee9: Mounted from kubevirt/cirros-registry-disk-demo 132d61a890c5: Mounted from kubevirt/cirros-registry-disk-demo bfd12fa374fa: Mounted from kubevirt/cirros-registry-disk-demo 8f9f927aee1c: Pushed devel: digest: sha256:a528053800155258cad12899431ce2eb90c57de8c7ccd75c6171186ea2c76241 size: 1161 The push refers to a repository [localhost:33042/kubevirt/alpine-registry-disk-demo] f791a6831838: Preparing bfd12fa374fa: Preparing 18ac8ad2aee9: Preparing 132d61a890c5: Preparing bfd12fa374fa: Mounted from kubevirt/fedora-cloud-registry-disk-demo 18ac8ad2aee9: Mounted from kubevirt/fedora-cloud-registry-disk-demo 132d61a890c5: Mounted from kubevirt/fedora-cloud-registry-disk-demo f791a6831838: Pushed devel: digest: sha256:92df5adf6d2b9a897002da5f1fa01c6fe6f96f5dcc99e50feefbbfbfea8d129b size: 1160 The push refers to a repository [localhost:33042/kubevirt/subresource-access-test] 9d5c2b27cebe: Preparing 00a62312fc63: Preparing 39bae602f753: Preparing 39bae602f753: Mounted from kubevirt/vm-killer 00a62312fc63: Pushed 9d5c2b27cebe: Pushed devel: digest: sha256:79a2e9fa9a5b21447e506c1e256d1d2e6460bf5593f0e3c7f8ec4f42ce1dc8ff size: 948 The push refers to a repository [localhost:33042/kubevirt/winrmcli] 594e0d4b7316: Preparing 4d98f841ba37: Preparing e8c601393c84: Preparing 39bae602f753: Preparing 39bae602f753: Mounted from kubevirt/subresource-access-test 594e0d4b7316: Pushed e8c601393c84: Pushed 4d98f841ba37: Pushed devel: digest: sha256:8142cff3236bd7aa875df0d2749847955217ace1a55f06c1b8868aa7a480c533 size: 1165 The push refers to a repository [localhost:33042/kubevirt/cdi-http-import-server] c2cdcb64120c: Preparing a24fe57d3826: Preparing b96216851d2b: Preparing 39bae602f753: Preparing 39bae602f753: Mounted from kubevirt/winrmcli c2cdcb64120c: Pushed b96216851d2b: Pushed a24fe57d3826: Pushed devel: digest: sha256:13599a52e5b598cfd6f0b89b2ca7cd8cb64a3660e23dec9617ceb71bd8f68ade size: 1160 make[1]: Leaving directory `/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/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.10.3-dev/go/src/kubevirt.io/kubevirt ++ OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out ++ VENDOR_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/vendor ++ CMD_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/cmd ++ TESTS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/tests ++ APIDOCS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/apidocs ++ MANIFESTS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/manifests ++ MANIFEST_TEMPLATES_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/templates/manifests ++ PYTHON_CLIENT_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/client-python ++ KUBEVIRT_PROVIDER=k8s-1.10.3 ++ KUBEVIRT_NUM_NODES=2 ++ '[' -z kubevirt-functional-tests-k8s-1.10.3-dev ']' ++ provider_prefix=kubevirt-functional-tests-k8s-1.10.3-dev0 ++ job_prefix=kubevirt-functional-tests-k8s-1.10.3-dev0 +++ kubevirt_version +++ '[' -n '' ']' +++ '[' -d /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/.git ']' ++++ git describe --always --tags +++ echo v0.7.0-alpha.5-34-gd1fa530 ++ KUBEVIRT_VERSION=v0.7.0-alpha.5-34-gd1fa530 + source cluster/k8s-1.10.3/provider.sh ++ set -e ++ image=k8s-1.10.3@sha256:d6290260e7e6b84419984f12719cf592ccbe327373b8df76aa0481f8ec01d357 ++ 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.10.3 ++ KUBEVIRT_PROVIDER=k8s-1.10.3 ++ source hack/config-default.sh source hack/config-k8s-1.10.3.sh +++ binaries='cmd/virt-controller cmd/virt-launcher cmd/virt-handler cmd/virtctl cmd/fake-qemu-process cmd/virt-api cmd/subresource-access-test' +++ 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 images/cdi-http-import-server' +++ 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.10.3.sh ++ source hack/config-provider-k8s-1.10.3.sh +++ master_ip=127.0.0.1 +++ docker_tag=devel +++ kubeconfig=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/cluster/k8s-1.10.3/.kubeconfig +++ kubectl=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/cluster/k8s-1.10.3/.kubectl +++ docker_prefix=localhost:33042/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 configmaps -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete configmaps -l kubevirt.io No resources found + _kubectl -n default delete apiservices -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete apiservices -l kubevirt.io No resources found + _kubectl -n default delete deployment -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete deployment -l kubevirt.io No resources found + _kubectl -n default delete rs -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete rs -l kubevirt.io No resources found + _kubectl -n default delete services -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete services -l kubevirt.io No resources found + _kubectl -n default delete apiservices -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete apiservices -l kubevirt.io No resources found + _kubectl -n default delete validatingwebhookconfiguration -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete validatingwebhookconfiguration -l kubevirt.io No resources found + _kubectl -n default delete secrets -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete secrets -l kubevirt.io No resources found + _kubectl -n default delete pv -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete pv -l kubevirt.io No resources found + _kubectl -n default delete pvc -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete pvc -l kubevirt.io No resources found + _kubectl -n default delete ds -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete ds -l kubevirt.io No resources found + _kubectl -n default delete customresourcedefinitions -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete customresourcedefinitions -l kubevirt.io No resources found + _kubectl -n default delete pods -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete pods -l kubevirt.io No resources found + _kubectl -n default delete clusterrolebinding -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete clusterrolebinding -l kubevirt.io No resources found + _kubectl -n default delete rolebinding -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete rolebinding -l kubevirt.io No resources found + _kubectl -n default delete roles -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete roles -l kubevirt.io No resources found + _kubectl -n default delete clusterroles -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete clusterroles -l kubevirt.io No resources found + _kubectl -n default delete serviceaccounts -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete serviceaccounts -l kubevirt.io No resources found ++ wc -l ++ _kubectl -n default get crd offlinevirtualmachines.kubevirt.io ++ export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig ++ KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig ++ cluster/k8s-1.10.3/.kubectl -n default get crd offlinevirtualmachines.kubevirt.io Error from server (NotFound): customresourcedefinitions.apiextensions.k8s.io "offlinevirtualmachines.kubevirt.io" not found + '[' 0 -gt 0 ']' + _kubectl -n default delete deployment -l cdi.kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete deployment -l cdi.kubevirt.io No resources found + _kubectl -n default delete serviceaccounts -l cdi.kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete serviceaccounts -l cdi.kubevirt.io No resources found + _kubectl -n default delete clusterroles -l cdi.kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete clusterroles -l cdi.kubevirt.io No resources found + _kubectl -n default delete clusterrolebinding -l cdi.kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete clusterrolebinding -l cdi.kubevirt.io No resources found + _kubectl -n default delete customresourcedefinitions -l cdi.kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n default delete customresourcedefinitions -l cdi.kubevirt.io No resources found + for i in '${namespaces[@]}' + _kubectl -n kube-system delete configmaps -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n kube-system delete configmaps -l kubevirt.io No resources found + _kubectl -n kube-system delete apiservices -l kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.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.10.3/.kubeconfig ++ KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig ++ cluster/k8s-1.10.3/.kubectl -n kube-system get crd offlinevirtualmachines.kubevirt.io Error from server (NotFound): customresourcedefinitions.apiextensions.k8s.io "offlinevirtualmachines.kubevirt.io" not found + '[' 0 -gt 0 ']' + _kubectl -n kube-system delete deployment -l cdi.kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n kube-system delete deployment -l cdi.kubevirt.io No resources found + _kubectl -n kube-system delete serviceaccounts -l cdi.kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n kube-system delete serviceaccounts -l cdi.kubevirt.io No resources found + _kubectl -n kube-system delete clusterroles -l cdi.kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n kube-system delete clusterroles -l cdi.kubevirt.io No resources found + _kubectl -n kube-system delete clusterrolebinding -l cdi.kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n kube-system delete clusterrolebinding -l cdi.kubevirt.io No resources found + _kubectl -n kube-system delete customresourcedefinitions -l cdi.kubevirt.io + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl -n kube-system delete customresourcedefinitions -l cdi.kubevirt.io No resources found + 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.10.3-dev/go/src/kubevirt.io/kubevirt ++ OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out ++ VENDOR_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/vendor ++ CMD_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/cmd ++ TESTS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/tests ++ APIDOCS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/apidocs ++ MANIFESTS_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/manifests ++ MANIFEST_TEMPLATES_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/templates/manifests ++ PYTHON_CLIENT_OUT_DIR=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/client-python ++ KUBEVIRT_PROVIDER=k8s-1.10.3 ++ KUBEVIRT_NUM_NODES=2 ++ '[' -z kubevirt-functional-tests-k8s-1.10.3-dev ']' ++ provider_prefix=kubevirt-functional-tests-k8s-1.10.3-dev0 ++ job_prefix=kubevirt-functional-tests-k8s-1.10.3-dev0 +++ kubevirt_version +++ '[' -n '' ']' +++ '[' -d /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/.git ']' ++++ git describe --always --tags +++ echo v0.7.0-alpha.5-34-gd1fa530 ++ KUBEVIRT_VERSION=v0.7.0-alpha.5-34-gd1fa530 + source cluster/k8s-1.10.3/provider.sh ++ set -e ++ image=k8s-1.10.3@sha256:d6290260e7e6b84419984f12719cf592ccbe327373b8df76aa0481f8ec01d357 ++ 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.10.3 ++ KUBEVIRT_PROVIDER=k8s-1.10.3 ++ source hack/config-default.sh source hack/config-k8s-1.10.3.sh +++ binaries='cmd/virt-controller cmd/virt-launcher cmd/virt-handler cmd/virtctl cmd/fake-qemu-process cmd/virt-api cmd/subresource-access-test' +++ 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 images/cdi-http-import-server' +++ 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.10.3.sh ++ source hack/config-provider-k8s-1.10.3.sh +++ master_ip=127.0.0.1 +++ docker_tag=devel +++ kubeconfig=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/cluster/k8s-1.10.3/.kubeconfig +++ kubectl=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/cluster/k8s-1.10.3/.kubectl +++ docker_prefix=localhost:33042/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.10.3-dev ]] + [[ k8s-1.10.3-dev =~ .*-dev ]] + cat + _kubectl create -f - + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl create -f - configmap "kubevirt-config" created + _kubectl create -f /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/manifests/dev -R + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl create -f /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/manifests/dev -R 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:admin" created clusterrole.rbac.authorization.k8s.io "kubevirt.io:edit" created clusterrole.rbac.authorization.k8s.io "kubevirt.io:view" created clusterrole.rbac.authorization.k8s.io "kubevirt.io:default" created clusterrolebinding.rbac.authorization.k8s.io "kubevirt.io:default" created customresourcedefinition.apiextensions.k8s.io "virtualmachineinstancereplicasets.kubevirt.io" created service "virt-api" created deployment.extensions "virt-api" created service "virt-controller" created deployment.extensions "virt-controller" created daemonset.extensions "virt-handler" created customresourcedefinition.apiextensions.k8s.io "virtualmachines.kubevirt.io" created customresourcedefinition.apiextensions.k8s.io "virtualmachineinstances.kubevirt.io" created customresourcedefinition.apiextensions.k8s.io "virtualmachineinstancepresets.kubevirt.io" created + _kubectl create -f /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/manifests/optional/cdi-controller-deployment.yaml -R + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl create -f /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/manifests/optional/cdi-controller-deployment.yaml -R serviceaccount "cdi-sa" created clusterrole.rbac.authorization.k8s.io "cdi" created clusterrolebinding.rbac.authorization.k8s.io "cdi-sa" created deployment.apps "cdi-deployment" created customresourcedefinition.apiextensions.k8s.io "datavolumes.cdi.kubevirt.io" created + _kubectl create -f /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/go/src/kubevirt.io/kubevirt/_out/manifests/testing -R + export KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + KUBECONFIG=cluster/k8s-1.10.3/.kubeconfig + cluster/k8s-1.10.3/.kubectl create -f /var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/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 persistentvolume "host-path-disk-datavolume1" created persistentvolume "host-path-disk-datavolume2" created persistentvolume "host-path-disk-datavolume3" created service "cdi-http-import-server" created deployment.extensions "cdi-http-import-server" created daemonset.extensions "disks-images-provider" created serviceaccount "kubevirt-testing" created clusterrolebinding.rbac.authorization.k8s.io "kubevirt-testing-cluster-admin" created + [[ k8s-1.10.3 =~ 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 'cdi-deployment-7bbd755c5d-pzsdt 0/1 ContainerCreating 0 4s cdi-http-import-server-7dbffbcb77-fwbqh 0/1 ContainerCreating 0 1s virt-api-7586947775-z26t9 0/1 ContainerCreating 0 7s virt-handler-847jr 0/1 ContainerCreating 0 6s virt-handler-qw64q 0/1 ContainerCreating 0 6s' ']' + 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 cdi-deployment-7bbd755c5d-pzsdt 0/1 ContainerCreating 0 5s cdi-http-import-server-7dbffbcb77-fwbqh 0/1 ContainerCreating 0 2s disks-images-provider-h97ll 0/1 ContainerCreating 0 1s disks-images-provider-rz4r9 0/1 ContainerCreating 0 1s virt-api-7586947775-z26t9 0/1 ContainerCreating 0 8s virt-handler-847jr 0/1 ContainerCreating 0 7s virt-handler-qw64q 0/1 ContainerCreating 0 7s + 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 ++ 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 cdi-deployment-7bbd755c5d-pzsdt 1/1 Running 0 1m cdi-http-import-server-7dbffbcb77-fwbqh 1/1 Running 0 1m disks-images-provider-h97ll 1/1 Running 0 1m disks-images-provider-rz4r9 1/1 Running 0 1m etcd-node01 1/1 Running 0 17m kube-apiserver-node01 1/1 Running 0 18m kube-controller-manager-node01 1/1 Running 0 17m kube-dns-86f4d74b45-cvzbc 3/3 Running 0 18m kube-flannel-ds-bhqkv 1/1 Running 1 18m kube-flannel-ds-pjq26 1/1 Running 0 18m kube-proxy-hz58h 1/1 Running 0 18m kube-proxy-sw28p 1/1 Running 0 18m kube-scheduler-node01 1/1 Running 0 17m virt-api-7586947775-z26t9 1/1 Running 0 1m virt-controller-69864c4f74-r97kx 1/1 Running 0 1m virt-controller-69864c4f74-w7v2q 1/1 Running 0 1m virt-handler-847jr 1/1 Running 0 1m virt-handler-qw64q 1/1 Running 0 1m + for i in '${namespaces[@]}' + current_time=0 ++ kubectl get pods -n default --no-headers ++ grep -v Running ++ cluster/kubectl.sh get pods -n default --no-headers No resources found. + '[' -n '' ']' + current_time=0 ++ kubectl get pods -n default '-ocustom-columns=status:status.containerStatuses[*].ready' --no-headers ++ grep false ++ cluster/kubectl.sh get pods -n default '-ocustom-columns=status:status.containerStatuses[*].ready' --no-headers + '[' -n '' ']' + kubectl get pods -n default + cluster/kubectl.sh get pods -n default No resources found. + kubectl version + cluster/kubectl.sh version Client Version: version.Info{Major:"1", Minor:"10", GitVersion:"v1.10.3", GitCommit:"2bba0127d85d5a46ab4b778548be28623b32d0b0", GitTreeState:"clean", BuildDate:"2018-05-21T09:17:39Z", GoVersion:"go1.9.3", Compiler:"gc", Platform:"linux/amd64"} Server Version: version.Info{Major:"1", Minor:"10", GitVersion:"v1.10.3", GitCommit:"2bba0127d85d5a46ab4b778548be28623b32d0b0", GitTreeState:"clean", BuildDate:"2018-05-21T09:05:37Z", GoVersion:"go1.9.3", Compiler:"gc", Platform:"linux/amd64"} + ginko_params='--ginkgo.noColor --junit-output=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/junit.xml' + [[ -d /home/nfs/images/windows2016 ]] + [[ k8s-1.10.3-dev =~ windows.* ]] + FUNC_TEST_ARGS='--ginkgo.noColor --junit-output=/var/lib/swarm/workspace/kubevirt-functional-tests-k8s-1.10.3-dev/junit.xml' + make functest hack/dockerized "hack/build-func-tests.sh" sha256:1a8677bde5dd0f9c4628cb5ff09d6a527c7670e086415a4d8a52aab2ad846937 go version go1.10 linux/amd64 go version go1.10 linux/amd64 Compiling tests... compiled tests.test hack/functests.sh hack/functests.sh: line 33: _kubectl: command not found make: *** [functest] Error 127 + make cluster-down ./cluster/down.sh