From bfe922079a96d04402b8d7722cd53f1b1ac091c1 Mon Sep 17 00:00:00 2001 From: Kirsten Schumy Date: Fri, 4 Nov 2022 11:05:12 -0700 Subject: [PATCH] Conformance results for v1.24/eks-d (#2252) Signed-off-by: Kirsten Schumy Signed-off-by: Kirsten Schumy --- v1.24/eks-d/PRODUCT.yaml | 9 + v1.24/eks-d/README.md | 323 + v1.24/eks-d/e2e.log | 15966 +++++++++++++++++++++++++++++ v1.24/eks-d/junit_01.xml | 20210 +++++++++++++++++++++++++++++++++++++ 4 files changed, 36508 insertions(+) create mode 100644 v1.24/eks-d/PRODUCT.yaml create mode 100644 v1.24/eks-d/README.md create mode 100644 v1.24/eks-d/e2e.log create mode 100644 v1.24/eks-d/junit_01.xml diff --git a/v1.24/eks-d/PRODUCT.yaml b/v1.24/eks-d/PRODUCT.yaml new file mode 100644 index 0000000000..4ac4e0602a --- /dev/null +++ b/v1.24/eks-d/PRODUCT.yaml @@ -0,0 +1,9 @@ +vendor: Amazon Web Services +name: Amazon Elastic Kubernetes Service Distro (Amazon EKS-D) +version: v1.24.6 +website_url: https://aws.amazon.com/eks/eks-distro +repo_url: https://github.com/aws/eks-distro +documentation_url: https://distro.eks.amazonaws.com/ +product_logo_url: https://raw.githubusercontent.com/aws/eks-anywhere/main/docs/static/AWS_logo_RGB.svg +type: distribution +description: Amazon Elastic Kubernetes Service Distro (Amazon EKS-D) is a Kubernetes distribution based on and used by Amazon Elastic Kubernetes Service (EKS) to create reliable and secure Kubernetes clusters. diff --git a/v1.24/eks-d/README.md b/v1.24/eks-d/README.md new file mode 100644 index 0000000000..bd3db6ff11 --- /dev/null +++ b/v1.24/eks-d/README.md @@ -0,0 +1,323 @@ +# Conformance testing Amazon EKS-D + +## Setup EKS-D Cluster + +Setup EKS-D cluster according to the [EKS-D documentation](https://distro.eks.amazonaws.com/). + +By following these steps, you may reproduce the EKS-D Conformance e2e results using +[kops](https://github.com/kubernetes/kops). + +## Requirements +There are several packages you will need to install and configure. + +### Kubectl + +Install and configure the Kubernetes command-line tool +[kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/). + +### AWS CLI + +Install and configure the [AWS CLI](https://aws.amazon.com/cli/). + +### Sonobuoy + +Download a binary release of [sonobuoy](https://github.com/vmware-tanzu/sonobuoy/releases/). + +If you are on a Mac, you may need to open the Security & Privacy and approve sonobuoy for +execution. + +```shell +sonobuoy_version="0.56.2" +if [[ "$(uname)" == "Darwin" ]] +then + SONOBUOY=https://github.com/vmware-tanzu/sonobuoy/releases/download/v${sonobuoy_version}/sonobuoy_${sonobuoy_version}_darwin_amd64.tar.gz +else + SONOBUOY=https://github.com/vmware-tanzu/sonobuoy/releases/download/v${sonobuoy_version}/sonobuoy_${sonobuoy_version}_linux_386.tar.gz +fi +wget -qO- ${SONOBUOY} |tar -xz sonobuoy +chmod 755 sonobuoy +``` + +### kops + +Install kops: + +```shell +# os_arch="linux-amd64" +os_arch="darwin-amd64" +kops_version="v1.24.1" +wget -qO ./kops "https://github.com/kubernetes/kops/releases/download/${kops_version}/kops-${os_arch}" +chmod +x ./kops +``` + +Validate `kops` is working correctly: + +```shell +./kops version +``` + +Some macOS systems may prevent the unsigned binary from running. Open macOS Security & +Privacy settings and approve kops for execution. + +## Create kops Cluster + +Use this shell script to create a cluster: + +```shell +#!/usr/bin/env bash + +CLUSTER_NAME="${CLUSTER_NAME:-${1?First required argument is cluster name. Cluster name must be an FQDN}}" + +RELEASE_BRANCH=1-24 +RELEASE=2 +KUBERNETES_VERSION=v1.24.6 +CNI_VERSION=v1.1.1 +METRICS_SERVER_VERSION=v0.6.1 +AWS_AUTH_VERSION=v0.5.9 +COREDNS_VERSION=v1.8.7 + +export AWS_DEFAULT_REGION=${AWS_DEFAULT_REGION:-us-west-2} +S3_BUCKET="kops-state-store-${RELEASE_BRANCH}-${RELEASE}" +export KOPS_STATE_STORE=s3://${S3_BUCKET} +export CNI_VERSION_URL=https://distro.eks.amazonaws.com/kubernetes-${RELEASE_BRANCH}/releases/${RELEASE}/artifacts/plugins/${CNI_VERSION}/cni-plugins-linux-amd64-${CNI_VERSION}.tar.gz +export CNI_ASSET_HASH_STRING=sha256:303c518bba9a79fd7fe401f6bbcd4fbc853044634a774c89121aa585f80639d2 + +echo "Create bucket if it does not exist..." +aws s3api create-bucket --bucket $S3_BUCKET --create-bucket-configuration LocationConstraint=$AWS_DEFAULT_REGION + +cat << EOF > ./values.yaml +kubernetesVersion: https://distro.eks.amazonaws.com/kubernetes-${RELEASE_BRANCH}/releases/${RELEASE}/artifacts/kubernetes/${KUBERNETES_VERSION} +clusterName: $CLUSTER_NAME +configBase: $KOPS_STATE_STORE/$CLUSTER_NAME +awsRegion: $AWS_DEFAULT_REGION +pause: + repository: public.ecr.aws/eks-distro/kubernetes/pause + tag: ${KUBERNETES_VERSION}-eks-${RELEASE_BRANCH}-${RELEASE} +kube_apiserver: + repository: public.ecr.aws/eks-distro/kubernetes/kube-apiserver + tag: ${KUBERNETES_VERSION}-eks-${RELEASE_BRANCH}-${RELEASE} +kube_controller_manager: + repository: public.ecr.aws/eks-distro/kubernetes/kube-controller-manager + tag: ${KUBERNETES_VERSION}-eks-${RELEASE_BRANCH}-${RELEASE} +kube_scheduler: + repository: public.ecr.aws/eks-distro/kubernetes/kube-scheduler + tag: ${KUBERNETES_VERSION}-eks-${RELEASE_BRANCH}-${RELEASE} +kube_proxy: + repository: public.ecr.aws/eks-distro/kubernetes/kube-proxy + tag: ${KUBERNETES_VERSION}-eks-${RELEASE_BRANCH}-${RELEASE} +metrics_server: + repository: public.ecr.aws/eks-distro/kubernetes-sigs/metrics-server + tag: ${METRICS_SERVER_VERSION}-eks-${RELEASE_BRANCH}-${RELEASE} +awsiamauth: + repository: public.ecr.aws/eks-distro/kubernetes-sigs/aws-iam-authenticator + tag: ${AWS_AUTH_VERSION}-eks-${RELEASE_BRANCH}-${RELEASE} +coredns: + repository: public.ecr.aws/eks-distro/coredns/coredns + tag: ${COREDNS_VERSION}-eks-${RELEASE_BRANCH}-${RELEASE} +EOF + +cat << EOF >./aws-iam-authenticator.yaml +apiVersion: v1 +kind: ConfigMap +metadata: + name: aws-iam-authenticator + namespace: kube-system + labels: + k8s-app: aws-iam-authenticator +data: + config.yaml: | + clusterID: $KOPS_CLUSTER_NAME +EOF + +cat << EOF >./eks-d.tpl +apiVersion: kops.k8s.io/v1alpha2 +kind: Cluster +metadata: + name: {{ .clusterName }} +spec: + api: + dns: {} + authorization: + rbac: {} + channel: stable + cloudProvider: aws + configBase: {{ .configBase }} + containerRuntime: docker + etcdClusters: + - cpuRequest: 200m + etcdMembers: + - instanceGroup: control-plane-{{.awsRegion}}a + name: a + memoryRequest: 100Mi + name: main + - cpuRequest: 100m + etcdMembers: + - instanceGroup: control-plane-{{.awsRegion}}a + name: a + memoryRequest: 100Mi + name: events + iam: + allowContainerRegistry: true + legacy: false + kubernetesApiAccess: + - 0.0.0.0/0 + kubernetesVersion: {{ .kubernetesVersion }} + masterPublicName: api.{{ .clusterName }} + networkCIDR: 172.20.0.0/16 + networking: + kubenet: {} + nonMasqueradeCIDR: 100.64.0.0/10 + sshAccess: + - 0.0.0.0/0 + subnets: + - cidr: 172.20.32.0/19 + name: {{.awsRegion}}a + type: Public + zone: {{.awsRegion}}a + - cidr: 172.20.64.0/19 + name: {{.awsRegion}}b + type: Public + zone: {{.awsRegion}}b + - cidr: 172.20.96.0/19 + name: {{.awsRegion}}c + type: Public + zone: {{.awsRegion}}c + topology: + dns: + type: Public + masters: public + nodes: public + kubeAPIServer: + image: {{ .kube_apiserver.repository }}:{{ .kube_apiserver.tag }} + kubeControllerManager: + image: {{ .kube_controller_manager.repository }}:{{ .kube_controller_manager.tag }} + kubeScheduler: + image: {{ .kube_scheduler.repository }}:{{ .kube_scheduler.tag }} + kubeProxy: + image: {{ .kube_proxy.repository }}:{{ .kube_proxy.tag }} + metricsServer: + enabled: true + insecure: true + image: {{ .metrics_server.repository }}:{{ .metrics_server.tag }} + authentication: + aws: + image: {{ .awsiamauth.repository }}:{{ .awsiamauth.tag }} + kubeDNS: + provider: CoreDNS + coreDNSImage: {{ .coredns.repository }}:{{ .coredns.tag }} + masterKubelet: + podInfraContainerImage: {{ .pause.repository }}:{{ .pause.tag }} + kubelet: + podInfraContainerImage: {{ .pause.repository }}:{{ .pause.tag }} + anonymousAuth: false + authorizationMode: Webhook + authenticationTokenWebhook: true + +--- + +apiVersion: kops.k8s.io/v1alpha2 +kind: InstanceGroup +metadata: + labels: + kops.k8s.io/cluster: {{.clusterName}} + name: control-plane-{{.awsRegion}}a +spec: + image: 099720109477/ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-20201026 + machineType: t3.medium + maxSize: 1 + minSize: 1 + nodeLabels: + kops.k8s.io/instancegroup: control-plane-{{.awsRegion}}a + role: Master + subnets: + - {{.awsRegion}}a + +--- + +apiVersion: kops.k8s.io/v1alpha2 +kind: InstanceGroup +metadata: + labels: + kops.k8s.io/cluster: {{.clusterName}} + name: nodes +spec: + image: 099720109477/ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-20201026 + machineType: t3.medium + maxSize: 3 + minSize: 3 + nodeLabels: + kops.k8s.io/instancegroup: nodes + role: Node + subnets: + - {{.awsRegion}}a + - {{.awsRegion}}b + - {{.awsRegion}}c +EOF + +./kops toolbox template --template ./eks-d.tpl --values ./values.yaml >${CLUSTER_NAME}.yaml +./kops create -f ./${CLUSTER_NAME}.yaml +./kops create secret --name ${CLUSTER_NAME} sshpublickey admin -i ~/.ssh/id_rsa.pub +./kops update cluster --admin --name ${CLUSTER_NAME} --yes + +export KOPS_FEATURE_FLAGS=SpecOverrideFlag +./kops set cluster "${KOPS_CLUSTER_NAME}" 'cluster.spec.nodePortAccess=0.0.0.0/0' +./kops update cluster --yes + +while ! kubectl --context $CLUSTER_NAME apply -f ./aws-iam-authenticator.yaml +do + sleep 5 + echo 'Waiting for cluster to come up...' +done + +cat << EOF >./core_dns_cluster_role.yaml +--- +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + labels: + kubernetes.io/bootstrapping: rbac-defaults + name: system:coredns +rules: + - apiGroups: + - "" + resources: + - endpoints + - services + - pods + - namespaces + verbs: + - list + - watch + - apiGroups: + - discovery.k8s.io + resources: + - endpointslices + verbs: + - list + - watch +EOF +while ! kubectl --context $KOPS_CLUSTER_NAME apply -f ./core_dns_cluster_role.yaml +do + sleep 5 + echo 'Waiting for coredns to come up...' +done + +./kops validate cluster --wait 15m +``` + +## Run Sonobuoy e2e +```shell +./sonobuoy run --mode=certified-conformance --wait --kube-conformance-image k8s.gcr.io/conformance:${KUBERNETES_VERSION} +results=$(./sonobuoy retrieve) +mkdir ./results +tar xzf $results -C ./results +./sonobuoy e2e ${results} +mv results/plugins/e2e/results/global/* . +``` + +## Cleanup +```shell +# Cleanup your cluster: +./kops delete cluster --name ${CLUSTER_NAME} --yes +rm -rf sonobuoy* kops *tar.gz aws-iam-authenticator.yaml core_dns_cluster_role.yaml eks-d.tpl results ${CLUSTER_NAME}.yaml values.yaml +``` diff --git a/v1.24/eks-d/e2e.log b/v1.24/eks-d/e2e.log new file mode 100644 index 0000000000..2ad4454b4f --- /dev/null +++ b/v1.24/eks-d/e2e.log @@ -0,0 +1,15966 @@ +I1026 04:28:42.962522 20 e2e.go:129] Starting e2e run "8772d784-ff79-45fc-9809-6c07931afd19" on Ginkgo node 1 +{"msg":"Test Suite starting","total":356,"completed":0,"skipped":0,"failed":0} +Running Suite: Kubernetes e2e suite +=================================== +Random Seed: 1666758522 - Will randomize all specs +Will run 356 of 6973 specs + +E1026 04:28:44.572684 20 progress.go:119] Failed to post progress update to http://localhost:8099/progress: Post "http://localhost:8099/progress": dial tcp [::1]:8099: connect: connection refused +Oct 26 04:28:44.572: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:28:44.574: INFO: Waiting up to 30m0s for all (but 0) nodes to be schedulable +Oct 26 04:28:44.596: INFO: Waiting up to 10m0s for all pods (need at least 0) in namespace 'kube-system' to be running and ready +Oct 26 04:28:44.630: INFO: 28 / 28 pods in namespace 'kube-system' are running and ready (0 seconds elapsed) +Oct 26 04:28:44.630: INFO: expected 8 pod replicas in namespace 'kube-system', 8 are Running and Ready. +Oct 26 04:28:44.630: INFO: Waiting up to 5m0s for all daemonsets in namespace 'kube-system' to start +Oct 26 04:28:44.638: INFO: 1 / 1 pods ready in namespace 'kube-system' in daemonset 'aws-cloud-controller-manager' (0 seconds elapsed) +Oct 26 04:28:44.638: INFO: 1 / 1 pods ready in namespace 'kube-system' in daemonset 'aws-iam-authenticator' (0 seconds elapsed) +Oct 26 04:28:44.638: INFO: 4 / 4 pods ready in namespace 'kube-system' in daemonset 'cilium' (0 seconds elapsed) +Oct 26 04:28:44.638: INFO: 4 / 4 pods ready in namespace 'kube-system' in daemonset 'ebs-csi-node' (0 seconds elapsed) +Oct 26 04:28:44.638: INFO: 1 / 1 pods ready in namespace 'kube-system' in daemonset 'kops-controller' (0 seconds elapsed) +Oct 26 04:28:44.638: INFO: e2e test version: v1.24.6 +Oct 26 04:28:44.639: INFO: kube-apiserver version: v1.24.6-eks-eceb288 +Oct 26 04:28:44.639: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:28:44.642: INFO: Cluster IP family: ipv4 +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] HostPort + validates that there is no conflict between pods with same hostPort but different hostIP and protocol [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] HostPort + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:28:44.643: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename hostport +Oct 26 04:28:44.666: INFO: No PodSecurityPolicies found; assuming PodSecurityPolicy is disabled. +STEP: Waiting for a default service account to be provisioned in namespace +W1026 04:28:44.666567 20 warnings.go:70] policy/v1beta1 PodSecurityPolicy is deprecated in v1.21+, unavailable in v1.25+ +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] HostPort + test/e2e/network/hostport.go:49 +[It] validates that there is no conflict between pods with same hostPort but different hostIP and protocol [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Trying to create a pod(pod1) with hostport 54323 and hostIP 127.0.0.1 and expect scheduled +Oct 26 04:28:44.681: INFO: The status of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:28:46.689: INFO: The status of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:28:48.688: INFO: The status of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:28:50.685: INFO: The status of Pod pod1 is Running (Ready = true) +STEP: Trying to create another pod(pod2) with hostport 54323 but hostIP 172.20.115.72 on the node which pod1 resides and expect scheduled +Oct 26 04:28:50.698: INFO: The status of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:28:52.702: INFO: The status of Pod pod2 is Running (Ready = true) +STEP: Trying to create a third pod(pod3) with hostport 54323, hostIP 172.20.115.72 but use UDP protocol on the node which pod2 resides +Oct 26 04:28:52.709: INFO: The status of Pod pod3 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:28:54.717: INFO: The status of Pod pod3 is Running (Ready = true) +Oct 26 04:28:54.724: INFO: The status of Pod e2e-host-exec is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:28:56.732: INFO: The status of Pod e2e-host-exec is Running (Ready = true) +STEP: checking connectivity from pod e2e-host-exec to serverIP: 127.0.0.1, port: 54323 +Oct 26 04:28:56.734: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g --connect-timeout 5 --interface 172.20.115.72 http://127.0.0.1:54323/hostname] Namespace:hostport-1772 PodName:e2e-host-exec ContainerName:e2e-host-exec Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:28:56.734: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:28:56.735: INFO: ExecWithOptions: Clientset creation +Oct 26 04:28:56.735: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/hostport-1772/pods/e2e-host-exec/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+--connect-timeout+5+--interface+172.20.115.72+http%3A%2F%2F127.0.0.1%3A54323%2Fhostname&container=e2e-host-exec&container=e2e-host-exec&stderr=true&stdout=true) +STEP: checking connectivity from pod e2e-host-exec to serverIP: 172.20.115.72, port: 54323 +Oct 26 04:28:56.815: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g --connect-timeout 5 http://172.20.115.72:54323/hostname] Namespace:hostport-1772 PodName:e2e-host-exec ContainerName:e2e-host-exec Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:28:56.815: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:28:56.816: INFO: ExecWithOptions: Clientset creation +Oct 26 04:28:56.816: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/hostport-1772/pods/e2e-host-exec/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+--connect-timeout+5+http%3A%2F%2F172.20.115.72%3A54323%2Fhostname&container=e2e-host-exec&container=e2e-host-exec&stderr=true&stdout=true) +STEP: checking connectivity from pod e2e-host-exec to serverIP: 172.20.115.72, port: 54323 UDP +Oct 26 04:28:56.886: INFO: ExecWithOptions {Command:[/bin/sh -c nc -vuz -w 5 172.20.115.72 54323] Namespace:hostport-1772 PodName:e2e-host-exec ContainerName:e2e-host-exec Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:28:56.886: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:28:56.887: INFO: ExecWithOptions: Clientset creation +Oct 26 04:28:56.887: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/hostport-1772/pods/e2e-host-exec/exec?command=%2Fbin%2Fsh&command=-c&command=nc+-vuz+-w+5+172.20.115.72+54323&container=e2e-host-exec&container=e2e-host-exec&stderr=true&stdout=true) +[AfterEach] [sig-network] HostPort + test/e2e/framework/framework.go:188 +Oct 26 04:29:01.971: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "hostport-1772" for this suite. + +• [SLOW TEST:17.339 seconds] +[sig-network] HostPort +test/e2e/network/common/framework.go:23 + validates that there is no conflict between pods with same hostPort but different hostIP and protocol [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] HostPort validates that there is no conflict between pods with same hostPort but different hostIP and protocol [LinuxOnly] [Conformance]","total":356,"completed":1,"skipped":23,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:29:01.983: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:43 +[It] should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 04:29:02.010: INFO: Waiting up to 5m0s for pod "downwardapi-volume-bebd3404-41de-4813-ba3d-e31e1a7d599e" in namespace "downward-api-4203" to be "Succeeded or Failed" +Oct 26 04:29:02.023: INFO: Pod "downwardapi-volume-bebd3404-41de-4813-ba3d-e31e1a7d599e": Phase="Pending", Reason="", readiness=false. Elapsed: 12.939242ms +Oct 26 04:29:04.030: INFO: Pod "downwardapi-volume-bebd3404-41de-4813-ba3d-e31e1a7d599e": Phase="Pending", Reason="", readiness=false. Elapsed: 2.019811842s +Oct 26 04:29:06.034: INFO: Pod "downwardapi-volume-bebd3404-41de-4813-ba3d-e31e1a7d599e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.024103465s +Oct 26 04:29:08.040: INFO: Pod "downwardapi-volume-bebd3404-41de-4813-ba3d-e31e1a7d599e": Phase="Pending", Reason="", readiness=false. Elapsed: 6.029720519s +Oct 26 04:29:10.044: INFO: Pod "downwardapi-volume-bebd3404-41de-4813-ba3d-e31e1a7d599e": Phase="Succeeded", Reason="", readiness=false. Elapsed: 8.033531221s +STEP: Saw pod success +Oct 26 04:29:10.044: INFO: Pod "downwardapi-volume-bebd3404-41de-4813-ba3d-e31e1a7d599e" satisfied condition "Succeeded or Failed" +Oct 26 04:29:10.050: INFO: Trying to get logs from node i-098fc8365626c8e13 pod downwardapi-volume-bebd3404-41de-4813-ba3d-e31e1a7d599e container client-container: +STEP: delete the pod +Oct 26 04:29:10.073: INFO: Waiting for pod downwardapi-volume-bebd3404-41de-4813-ba3d-e31e1a7d599e to disappear +Oct 26 04:29:10.076: INFO: Pod downwardapi-volume-bebd3404-41de-4813-ba3d-e31e1a7d599e no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:188 +Oct 26 04:29:10.077: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-4203" for this suite. + +• [SLOW TEST:8.102 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Downward API volume should provide container's cpu limit [NodeConformance] [Conformance]","total":356,"completed":2,"skipped":55,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Container Runtime blackbox test on terminated container + should report termination message if TerminationMessagePath is set as non-root user and at a non-default path [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Container Runtime + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:29:10.092: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-runtime +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should report termination message if TerminationMessagePath is set as non-root user and at a non-default path [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the container +STEP: wait for the container to reach Succeeded +STEP: get the container status +STEP: the container should be terminated +STEP: the termination message should be set +Oct 26 04:29:16.160: INFO: Expected: &{DONE} to match Container's Termination Message: DONE -- +STEP: delete the container +[AfterEach] [sig-node] Container Runtime + test/e2e/framework/framework.go:188 +Oct 26 04:29:16.171: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-runtime-8210" for this suite. + +• [SLOW TEST:6.085 seconds] +[sig-node] Container Runtime +test/e2e/common/node/framework.go:23 + blackbox test + test/e2e/common/node/runtime.go:43 + on terminated container + test/e2e/common/node/runtime.go:136 + should report termination message if TerminationMessagePath is set as non-root user and at a non-default path [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Container Runtime blackbox test on terminated container should report termination message if TerminationMessagePath is set as non-root user and at a non-default path [NodeConformance] [Conformance]","total":356,"completed":3,"skipped":91,"failed":0} +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for CRD preserving unknown fields at the schema root [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:29:16.179: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-publish-openapi +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] works for CRD preserving unknown fields at the schema root [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:29:16.195: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: kubectl validation (kubectl create and apply) allows request with any unknown properties +Oct 26 04:29:18.710: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-8387 --namespace=crd-publish-openapi-8387 create -f -' +Oct 26 04:29:19.494: INFO: stderr: "" +Oct 26 04:29:19.494: INFO: stdout: "e2e-test-crd-publish-openapi-3197-crd.crd-publish-openapi-test-unknown-at-root.example.com/test-cr created\n" +Oct 26 04:29:19.494: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-8387 --namespace=crd-publish-openapi-8387 delete e2e-test-crd-publish-openapi-3197-crds test-cr' +Oct 26 04:29:19.554: INFO: stderr: "" +Oct 26 04:29:19.554: INFO: stdout: "e2e-test-crd-publish-openapi-3197-crd.crd-publish-openapi-test-unknown-at-root.example.com \"test-cr\" deleted\n" +Oct 26 04:29:19.554: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-8387 --namespace=crd-publish-openapi-8387 apply -f -' +Oct 26 04:29:19.728: INFO: stderr: "" +Oct 26 04:29:19.728: INFO: stdout: "e2e-test-crd-publish-openapi-3197-crd.crd-publish-openapi-test-unknown-at-root.example.com/test-cr created\n" +Oct 26 04:29:19.728: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-8387 --namespace=crd-publish-openapi-8387 delete e2e-test-crd-publish-openapi-3197-crds test-cr' +Oct 26 04:29:19.792: INFO: stderr: "" +Oct 26 04:29:19.792: INFO: stdout: "e2e-test-crd-publish-openapi-3197-crd.crd-publish-openapi-test-unknown-at-root.example.com \"test-cr\" deleted\n" +STEP: kubectl explain works to explain CR +Oct 26 04:29:19.792: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-8387 explain e2e-test-crd-publish-openapi-3197-crds' +Oct 26 04:29:19.969: INFO: stderr: "" +Oct 26 04:29:19.969: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-3197-crd\nVERSION: crd-publish-openapi-test-unknown-at-root.example.com/v1\n\nDESCRIPTION:\n \n" +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 04:29:23.679: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-publish-openapi-8387" for this suite. + +• [SLOW TEST:7.510 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + works for CRD preserving unknown fields at the schema root [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD preserving unknown fields at the schema root [Conformance]","total":356,"completed":4,"skipped":108,"failed":0} +SSSSSSSSSS +------------------------------ +[sig-network] DNS + should provide DNS for the cluster [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] DNS + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:29:23.689: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename dns +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should provide DNS for the cluster [Conformance] + test/e2e/framework/framework.go:652 +STEP: Running these commands on wheezy: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search kubernetes.default.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_udp@kubernetes.default.svc.cluster.local;check="$$(dig +tcp +noall +answer +search kubernetes.default.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@kubernetes.default.svc.cluster.local;sleep 1; done + +STEP: Running these commands on jessie: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search kubernetes.default.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_udp@kubernetes.default.svc.cluster.local;check="$$(dig +tcp +noall +answer +search kubernetes.default.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_tcp@kubernetes.default.svc.cluster.local;sleep 1; done + +STEP: creating a pod to probe DNS +STEP: submitting the pod to kubernetes +STEP: retrieving the pod +STEP: looking for the results for each expected name from probers +Oct 26 04:29:31.739: INFO: DNS probes using dns-413/dns-test-898b7fce-c962-4d24-a8f0-135dec7e6d1e succeeded + +STEP: deleting the pod +[AfterEach] [sig-network] DNS + test/e2e/framework/framework.go:188 +Oct 26 04:29:31.755: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "dns-413" for this suite. + +• [SLOW TEST:8.096 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should provide DNS for the cluster [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] DNS should provide DNS for the cluster [Conformance]","total":356,"completed":5,"skipped":118,"failed":0} +SSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should verify that a failing subpath expansion can be modified during the lifecycle of a container [Slow] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:29:31.786: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename var-expansion +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should verify that a failing subpath expansion can be modified during the lifecycle of a container [Slow] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating the pod with failed condition +STEP: updating the pod +Oct 26 04:31:32.333: INFO: Successfully updated pod "var-expansion-b0c0e15d-5299-4bf5-a935-5e1ac69ffd8b" +STEP: waiting for pod running +STEP: deleting the pod gracefully +Oct 26 04:31:34.342: INFO: Deleting pod "var-expansion-b0c0e15d-5299-4bf5-a935-5e1ac69ffd8b" in namespace "var-expansion-5066" +Oct 26 04:31:34.347: INFO: Wait up to 5m0s for pod "var-expansion-b0c0e15d-5299-4bf5-a935-5e1ac69ffd8b" to be fully deleted +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:188 +Oct 26 04:32:06.356: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "var-expansion-5066" for this suite. + +• [SLOW TEST:154.576 seconds] +[sig-node] Variable Expansion +test/e2e/common/node/framework.go:23 + should verify that a failing subpath expansion can be modified during the lifecycle of a container [Slow] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Variable Expansion should verify that a failing subpath expansion can be modified during the lifecycle of a container [Slow] [Conformance]","total":356,"completed":6,"skipped":126,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] ConfigMap + should be consumable via environment variable [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:32:06.363: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable via environment variable [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap configmap-5859/configmap-test-363c45b4-527a-47b4-b10f-20fe283d656a +STEP: Creating a pod to test consume configMaps +Oct 26 04:32:06.388: INFO: Waiting up to 5m0s for pod "pod-configmaps-fe0a8f44-a367-470e-8f23-679a97b89ab3" in namespace "configmap-5859" to be "Succeeded or Failed" +Oct 26 04:32:06.390: INFO: Pod "pod-configmaps-fe0a8f44-a367-470e-8f23-679a97b89ab3": Phase="Pending", Reason="", readiness=false. Elapsed: 1.9273ms +Oct 26 04:32:08.395: INFO: Pod "pod-configmaps-fe0a8f44-a367-470e-8f23-679a97b89ab3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007331865s +Oct 26 04:32:10.400: INFO: Pod "pod-configmaps-fe0a8f44-a367-470e-8f23-679a97b89ab3": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012007879s +Oct 26 04:32:12.405: INFO: Pod "pod-configmaps-fe0a8f44-a367-470e-8f23-679a97b89ab3": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.017616985s +STEP: Saw pod success +Oct 26 04:32:12.405: INFO: Pod "pod-configmaps-fe0a8f44-a367-470e-8f23-679a97b89ab3" satisfied condition "Succeeded or Failed" +Oct 26 04:32:12.407: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-configmaps-fe0a8f44-a367-470e-8f23-679a97b89ab3 container env-test: +STEP: delete the pod +Oct 26 04:32:12.427: INFO: Waiting for pod pod-configmaps-fe0a8f44-a367-470e-8f23-679a97b89ab3 to disappear +Oct 26 04:32:12.429: INFO: Pod pod-configmaps-fe0a8f44-a367-470e-8f23-679a97b89ab3 no longer exists +[AfterEach] [sig-node] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 04:32:12.429: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-5859" for this suite. + +• [SLOW TEST:6.071 seconds] +[sig-node] ConfigMap +test/e2e/common/node/framework.go:23 + should be consumable via environment variable [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] ConfigMap should be consumable via environment variable [NodeConformance] [Conformance]","total":356,"completed":7,"skipped":157,"failed":0} +SSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should verify ResourceQuota with best effort scope. [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:32:12.434: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename resourcequota +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should verify ResourceQuota with best effort scope. [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a ResourceQuota with best effort scope +STEP: Ensuring ResourceQuota status is calculated +STEP: Creating a ResourceQuota with not best effort scope +STEP: Ensuring ResourceQuota status is calculated +STEP: Creating a best-effort pod +STEP: Ensuring resource quota with best effort scope captures the pod usage +STEP: Ensuring resource quota with not best effort ignored the pod usage +STEP: Deleting the pod +STEP: Ensuring resource quota status released the pod usage +STEP: Creating a not best-effort pod +STEP: Ensuring resource quota with not best effort scope captures the pod usage +STEP: Ensuring resource quota with best effort scope ignored the pod usage +STEP: Deleting the pod +STEP: Ensuring resource quota status released the pod usage +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:188 +Oct 26 04:32:28.561: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "resourcequota-9554" for this suite. + +• [SLOW TEST:16.139 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should verify ResourceQuota with best effort scope. [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] ResourceQuota should verify ResourceQuota with best effort scope. [Conformance]","total":356,"completed":8,"skipped":165,"failed":0} +SSSSS +------------------------------ +[sig-network] Networking Granular Checks: Pods + should function for node-pod communication: http [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Networking + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:32:28.574: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pod-network-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should function for node-pod communication: http [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Performing setup for networking test in namespace pod-network-test-5305 +STEP: creating a selector +STEP: Creating the service pods in kubernetes +Oct 26 04:32:28.594: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable +Oct 26 04:32:28.661: INFO: The status of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:32:30.665: INFO: The status of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:32:32.666: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:32:34.669: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:32:36.667: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:32:38.669: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:32:40.667: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:32:42.665: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:32:44.665: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:32:46.672: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:32:48.666: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:32:50.671: INFO: The status of Pod netserver-0 is Running (Ready = true) +Oct 26 04:32:50.677: INFO: The status of Pod netserver-1 is Running (Ready = true) +Oct 26 04:32:50.681: INFO: The status of Pod netserver-2 is Running (Ready = true) +STEP: Creating test pods +Oct 26 04:32:54.742: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 +Oct 26 04:32:54.742: INFO: Going to poll 100.96.2.245 on port 8083 at least 0 times, with a maximum of 39 tries before failing +Oct 26 04:32:54.746: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://100.96.2.245:8083/hostName | grep -v '^\s*$'] Namespace:pod-network-test-5305 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:32:54.746: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:32:54.747: INFO: ExecWithOptions: Clientset creation +Oct 26 04:32:54.747: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-5305/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+--max-time+15+--connect-timeout+1+http%3A%2F%2F100.96.2.245%3A8083%2FhostName+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Oct 26 04:32:54.897: INFO: Found all 1 expected endpoints: [netserver-0] +Oct 26 04:32:54.898: INFO: Going to poll 100.96.1.58 on port 8083 at least 0 times, with a maximum of 39 tries before failing +Oct 26 04:32:54.900: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://100.96.1.58:8083/hostName | grep -v '^\s*$'] Namespace:pod-network-test-5305 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:32:54.900: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:32:54.901: INFO: ExecWithOptions: Clientset creation +Oct 26 04:32:54.901: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-5305/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+--max-time+15+--connect-timeout+1+http%3A%2F%2F100.96.1.58%3A8083%2FhostName+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Oct 26 04:32:54.999: INFO: Found all 1 expected endpoints: [netserver-1] +Oct 26 04:32:54.999: INFO: Going to poll 100.96.3.191 on port 8083 at least 0 times, with a maximum of 39 tries before failing +Oct 26 04:32:55.011: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s --max-time 15 --connect-timeout 1 http://100.96.3.191:8083/hostName | grep -v '^\s*$'] Namespace:pod-network-test-5305 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:32:55.011: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:32:55.012: INFO: ExecWithOptions: Clientset creation +Oct 26 04:32:55.012: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-5305/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+--max-time+15+--connect-timeout+1+http%3A%2F%2F100.96.3.191%3A8083%2FhostName+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Oct 26 04:32:55.081: INFO: Found all 1 expected endpoints: [netserver-2] +[AfterEach] [sig-network] Networking + test/e2e/framework/framework.go:188 +Oct 26 04:32:55.081: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pod-network-test-5305" for this suite. + +• [SLOW TEST:26.515 seconds] +[sig-network] Networking +test/e2e/common/network/framework.go:23 + Granular Checks: Pods + test/e2e/common/network/networking.go:32 + should function for node-pod communication: http [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Networking Granular Checks: Pods should function for node-pod communication: http [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":9,"skipped":170,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected secret + should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:32:55.090: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating secret with name projected-secret-test-4238d0bf-49ad-42b6-9a66-3a44afec7419 +STEP: Creating a pod to test consume secrets +Oct 26 04:32:55.122: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-1f775e5a-fa80-4ec6-b8d1-f7b57a6b394c" in namespace "projected-7331" to be "Succeeded or Failed" +Oct 26 04:32:55.132: INFO: Pod "pod-projected-secrets-1f775e5a-fa80-4ec6-b8d1-f7b57a6b394c": Phase="Pending", Reason="", readiness=false. Elapsed: 10.140093ms +Oct 26 04:32:57.139: INFO: Pod "pod-projected-secrets-1f775e5a-fa80-4ec6-b8d1-f7b57a6b394c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.016951978s +Oct 26 04:32:59.145: INFO: Pod "pod-projected-secrets-1f775e5a-fa80-4ec6-b8d1-f7b57a6b394c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.022771207s +STEP: Saw pod success +Oct 26 04:32:59.145: INFO: Pod "pod-projected-secrets-1f775e5a-fa80-4ec6-b8d1-f7b57a6b394c" satisfied condition "Succeeded or Failed" +Oct 26 04:32:59.147: INFO: Trying to get logs from node i-098fc8365626c8e13 pod pod-projected-secrets-1f775e5a-fa80-4ec6-b8d1-f7b57a6b394c container secret-volume-test: +STEP: delete the pod +Oct 26 04:32:59.177: INFO: Waiting for pod pod-projected-secrets-1f775e5a-fa80-4ec6-b8d1-f7b57a6b394c to disappear +Oct 26 04:32:59.179: INFO: Pod pod-projected-secrets-1f775e5a-fa80-4ec6-b8d1-f7b57a6b394c no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:188 +Oct 26 04:32:59.179: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-7331" for this suite. +•{"msg":"PASSED [sig-storage] Projected secret should be consumable in multiple volumes in a pod [NodeConformance] [Conformance]","total":356,"completed":10,"skipped":197,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Pods + should be updated [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Pods + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:32:59.190: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pods +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:191 +[It] should be updated [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating the pod +STEP: submitting the pod to kubernetes +Oct 26 04:32:59.217: INFO: The status of Pod pod-update-1bbe0ff4-1ca5-43a7-870a-a8b9a7c902a5 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:33:01.221: INFO: The status of Pod pod-update-1bbe0ff4-1ca5-43a7-870a-a8b9a7c902a5 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:33:03.223: INFO: The status of Pod pod-update-1bbe0ff4-1ca5-43a7-870a-a8b9a7c902a5 is Running (Ready = true) +STEP: verifying the pod is in kubernetes +STEP: updating the pod +Oct 26 04:33:03.741: INFO: Successfully updated pod "pod-update-1bbe0ff4-1ca5-43a7-870a-a8b9a7c902a5" +STEP: verifying the updated pod is in kubernetes +Oct 26 04:33:03.761: INFO: Pod update OK +[AfterEach] [sig-node] Pods + test/e2e/framework/framework.go:188 +Oct 26 04:33:03.762: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pods-9000" for this suite. +•{"msg":"PASSED [sig-node] Pods should be updated [NodeConformance] [Conformance]","total":356,"completed":11,"skipped":233,"failed":0} +SSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + should validate Statefulset Status endpoints [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:33:03.770: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename statefulset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:96 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:111 +STEP: Creating service test in namespace statefulset-9027 +[It] should validate Statefulset Status endpoints [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating statefulset ss in namespace statefulset-9027 +Oct 26 04:33:03.807: INFO: Found 0 stateful pods, waiting for 1 +Oct 26 04:33:13.814: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true +STEP: Patch Statefulset to include a label +STEP: Getting /status +Oct 26 04:33:13.836: INFO: StatefulSet ss has Conditions: []v1.StatefulSetCondition(nil) +STEP: updating the StatefulSet Status +Oct 26 04:33:13.842: INFO: updatedStatus.Conditions: []v1.StatefulSetCondition{v1.StatefulSetCondition{Type:"StatusUpdate", Status:"True", LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"E2E", Message:"Set from e2e test"}} +STEP: watching for the statefulset status to be updated +Oct 26 04:33:13.845: INFO: Observed &StatefulSet event: ADDED +Oct 26 04:33:13.845: INFO: Found Statefulset ss in namespace statefulset-9027 with labels: map[e2e:testing] annotations: map[] & Conditions: {StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test} +Oct 26 04:33:13.845: INFO: Statefulset ss has an updated status +STEP: patching the Statefulset Status +Oct 26 04:33:13.846: INFO: Patch payload: {"status":{"conditions":[{"type":"StatusPatched","status":"True"}]}} +Oct 26 04:33:13.851: INFO: Patched status conditions: []v1.StatefulSetCondition{v1.StatefulSetCondition{Type:"StatusPatched", Status:"True", LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"", Message:""}} +STEP: watching for the Statefulset status to be patched +Oct 26 04:33:13.854: INFO: Observed &StatefulSet event: ADDED +Oct 26 04:33:13.854: INFO: Observed Statefulset ss in namespace statefulset-9027 with annotations: map[] & Conditions: {StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test} +Oct 26 04:33:13.854: INFO: Observed &StatefulSet event: MODIFIED +Oct 26 04:33:13.854: INFO: Found Statefulset ss in namespace statefulset-9027 with labels: map[e2e:testing] annotations: map[] & Conditions: {StatusPatched True 0001-01-01 00:00:00 +0000 UTC } +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:122 +Oct 26 04:33:13.854: INFO: Deleting all statefulset in ns statefulset-9027 +Oct 26 04:33:13.856: INFO: Scaling statefulset ss to 0 +Oct 26 04:33:23.872: INFO: Waiting for statefulset status.replicas updated to 0 +Oct 26 04:33:23.878: INFO: Deleting statefulset ss +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:188 +Oct 26 04:33:23.890: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "statefulset-9027" for this suite. + +• [SLOW TEST:20.139 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:101 + should validate Statefulset Status endpoints [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should validate Statefulset Status endpoints [Conformance]","total":356,"completed":12,"skipped":237,"failed":0} +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Pods + should run through the lifecycle of Pods and PodStatus [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Pods + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:33:23.914: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pods +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:191 +[It] should run through the lifecycle of Pods and PodStatus [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a Pod with a static label +STEP: watching for Pod to be ready +Oct 26 04:33:23.956: INFO: observed Pod pod-test in namespace pods-8872 in phase Pending with labels: map[test-pod-static:true] & conditions [] +Oct 26 04:33:23.957: INFO: observed Pod pod-test in namespace pods-8872 in phase Pending with labels: map[test-pod-static:true] & conditions [{PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 04:33:23 +0000 UTC }] +Oct 26 04:33:23.970: INFO: observed Pod pod-test in namespace pods-8872 in phase Pending with labels: map[test-pod-static:true] & conditions [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 04:33:23 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 04:33:23 +0000 UTC ContainersNotReady containers with unready status: [pod-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 04:33:23 +0000 UTC ContainersNotReady containers with unready status: [pod-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 04:33:23 +0000 UTC }] +Oct 26 04:33:26.114: INFO: Found Pod pod-test in namespace pods-8872 in phase Running with labels: map[test-pod-static:true] & conditions [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 04:33:23 +0000 UTC } {Ready True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 04:33:26 +0000 UTC } {ContainersReady True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 04:33:26 +0000 UTC } {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 04:33:23 +0000 UTC }] +STEP: patching the Pod with a new Label and updated data +STEP: getting the Pod and ensuring that it's patched +STEP: replacing the Pod's status Ready condition to False +STEP: check the Pod again to ensure its Ready conditions are False +STEP: deleting the Pod via a Collection with a LabelSelector +STEP: watching for the Pod to be deleted +Oct 26 04:33:26.175: INFO: observed event type MODIFIED +Oct 26 04:33:26.852: INFO: observed event type MODIFIED +Oct 26 04:33:29.131: INFO: observed event type MODIFIED +Oct 26 04:33:29.141: INFO: observed event type MODIFIED +[AfterEach] [sig-node] Pods + test/e2e/framework/framework.go:188 +Oct 26 04:33:29.159: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pods-8872" for this suite. + +• [SLOW TEST:5.253 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should run through the lifecycle of Pods and PodStatus [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Pods should run through the lifecycle of Pods and PodStatus [Conformance]","total":356,"completed":13,"skipped":255,"failed":0} +SSSS +------------------------------ +[sig-node] Probing container + should be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:33:29.167: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-probe +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:61 +[It] should be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating pod busybox-d7bae2f8-8b96-406b-a710-bcbe500ccc0a in namespace container-probe-1123 +Oct 26 04:33:31.204: INFO: Started pod busybox-d7bae2f8-8b96-406b-a710-bcbe500ccc0a in namespace container-probe-1123 +STEP: checking the pod's current state and verifying that restartCount is present +Oct 26 04:33:31.206: INFO: Initial restart count of pod busybox-d7bae2f8-8b96-406b-a710-bcbe500ccc0a is 0 +Oct 26 04:34:21.390: INFO: Restart count of pod container-probe-1123/busybox-d7bae2f8-8b96-406b-a710-bcbe500ccc0a is now 1 (50.183576083s elapsed) +STEP: deleting the pod +[AfterEach] [sig-node] Probing container + test/e2e/framework/framework.go:188 +Oct 26 04:34:21.399: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-probe-1123" for this suite. + +• [SLOW TEST:52.256 seconds] +[sig-node] Probing container +test/e2e/common/node/framework.go:23 + should be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Probing container should be restarted with a exec \"cat /tmp/health\" liveness probe [NodeConformance] [Conformance]","total":356,"completed":14,"skipped":259,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Deployment + should run the lifecycle of a Deployment [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:34:21.425: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename deployment +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] should run the lifecycle of a Deployment [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a Deployment +STEP: waiting for Deployment to be created +STEP: waiting for all Replicas to be Ready +Oct 26 04:34:21.460: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Oct 26 04:34:21.460: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Oct 26 04:34:21.465: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Oct 26 04:34:21.465: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Oct 26 04:34:21.486: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Oct 26 04:34:21.486: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Oct 26 04:34:21.512: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Oct 26 04:34:21.512: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 and labels map[test-deployment-static:true] +Oct 26 04:34:23.265: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 and labels map[test-deployment-static:true] +Oct 26 04:34:23.265: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 and labels map[test-deployment-static:true] +Oct 26 04:34:24.171: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 and labels map[test-deployment-static:true] +STEP: patching the Deployment +Oct 26 04:34:24.186: INFO: observed event type ADDED +STEP: waiting for Replicas to scale +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 0 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:24.190: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:24.196: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:24.196: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:24.212: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:24.213: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:24.227: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +Oct 26 04:34:24.227: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +Oct 26 04:34:24.244: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +Oct 26 04:34:24.244: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +Oct 26 04:34:27.291: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:27.291: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:27.311: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +STEP: listing Deployments +Oct 26 04:34:27.321: INFO: Found test-deployment with labels: map[test-deployment:patched test-deployment-static:true] +STEP: updating the Deployment +Oct 26 04:34:27.330: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +STEP: fetching the DeploymentStatus +Oct 26 04:34:27.335: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] +Oct 26 04:34:27.349: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] +Oct 26 04:34:27.384: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] +Oct 26 04:34:27.402: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 and labels map[test-deployment:updated test-deployment-static:true] +Oct 26 04:34:29.294: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 and labels map[test-deployment:updated test-deployment-static:true] +Oct 26 04:34:29.331: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 and labels map[test-deployment:updated test-deployment-static:true] +Oct 26 04:34:29.350: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 and labels map[test-deployment:updated test-deployment-static:true] +Oct 26 04:34:34.208: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 3 and labels map[test-deployment:updated test-deployment-static:true] +STEP: patching the DeploymentStatus +STEP: fetching the DeploymentStatus +Oct 26 04:34:34.259: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +Oct 26 04:34:34.260: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +Oct 26 04:34:34.260: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +Oct 26 04:34:34.260: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 1 +Oct 26 04:34:34.260: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:34.260: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:34.260: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 2 +Oct 26 04:34:34.260: INFO: observed Deployment test-deployment in namespace deployment-1195 with ReadyReplicas 3 +STEP: deleting the Deployment +Oct 26 04:34:34.266: INFO: observed event type MODIFIED +Oct 26 04:34:34.267: INFO: observed event type MODIFIED +Oct 26 04:34:34.267: INFO: observed event type MODIFIED +Oct 26 04:34:34.267: INFO: observed event type MODIFIED +Oct 26 04:34:34.267: INFO: observed event type MODIFIED +Oct 26 04:34:34.267: INFO: observed event type MODIFIED +Oct 26 04:34:34.267: INFO: observed event type MODIFIED +Oct 26 04:34:34.267: INFO: observed event type MODIFIED +Oct 26 04:34:34.267: INFO: observed event type MODIFIED +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Oct 26 04:34:34.270: INFO: Log out all the ReplicaSets if there is no deployment created +Oct 26 04:34:34.276: INFO: ReplicaSet "test-deployment-6b48c869b6": +&ReplicaSet{ObjectMeta:{test-deployment-6b48c869b6 deployment-1195 49887c2a-0e5c-4b41-a9fe-893bfeb053c5 3520 3 2022-10-26 04:34:21 +0000 UTC map[pod-template-hash:6b48c869b6 test-deployment-static:true] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-deployment b77001ec-3037-493c-a1eb-1519c91b3595 0xc0035623b7 0xc0035623b8}] [] [{kube-controller-manager Update apps/v1 2022-10-26 04:34:21 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"b77001ec-3037-493c-a1eb-1519c91b3595\"}":{}}},"f:spec":{"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"test-deployment\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 04:34:27 +0000 UTC FieldsV1 {"f:status":{"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*0,Selector:&v1.LabelSelector{MatchLabels:map[string]string{pod-template-hash: 6b48c869b6,test-deployment-static: true,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[pod-template-hash:6b48c869b6 test-deployment-static:true] map[] [] [] []} {[] [] [{test-deployment k8s.gcr.io/e2e-test-images/agnhost:2.39 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0035624a0 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:0,FullyLabeledReplicas:0,ObservedGeneration:3,ReadyReplicas:0,AvailableReplicas:0,Conditions:[]ReplicaSetCondition{},},} + +Oct 26 04:34:34.283: INFO: ReplicaSet "test-deployment-74c6dd549b": +&ReplicaSet{ObjectMeta:{test-deployment-74c6dd549b deployment-1195 9be6d895-8bf4-4a8d-8594-e780698475f2 3590 2 2022-10-26 04:34:27 +0000 UTC map[pod-template-hash:74c6dd549b test-deployment-static:true] map[deployment.kubernetes.io/desired-replicas:2 deployment.kubernetes.io/max-replicas:3 deployment.kubernetes.io/revision:3] [{apps/v1 Deployment test-deployment b77001ec-3037-493c-a1eb-1519c91b3595 0xc003562507 0xc003562508}] [] [{kube-controller-manager Update apps/v1 2022-10-26 04:34:27 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"b77001ec-3037-493c-a1eb-1519c91b3595\"}":{}}},"f:spec":{"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"test-deployment\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 04:34:29 +0000 UTC FieldsV1 {"f:status":{"f:availableReplicas":{},"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*2,Selector:&v1.LabelSelector{MatchLabels:map[string]string{pod-template-hash: 74c6dd549b,test-deployment-static: true,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[pod-template-hash:74c6dd549b test-deployment-static:true] map[] [] [] []} {[] [] [{test-deployment k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0035626c0 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:2,FullyLabeledReplicas:2,ObservedGeneration:2,ReadyReplicas:2,AvailableReplicas:2,Conditions:[]ReplicaSetCondition{},},} + +Oct 26 04:34:34.285: INFO: pod: "test-deployment-74c6dd549b-dqrns": +&Pod{ObjectMeta:{test-deployment-74c6dd549b-dqrns test-deployment-74c6dd549b- deployment-1195 7280a27f-6e79-4c1b-8155-928ddfd0c7ef 3552 0 2022-10-26 04:34:27 +0000 UTC map[pod-template-hash:74c6dd549b test-deployment-static:true] map[] [{apps/v1 ReplicaSet test-deployment-74c6dd549b 9be6d895-8bf4-4a8d-8594-e780698475f2 0xc003562ea7 0xc003562ea8}] [] [{kube-controller-manager Update v1 2022-10-26 04:34:27 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"9be6d895-8bf4-4a8d-8594-e780698475f2\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"test-deployment\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 04:34:29 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.2.235\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-lzh7x,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:test-deployment,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-lzh7x,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*1,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:27 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:29 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:29 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:27 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:100.96.2.235,StartTime:2022-10-26 04:34:27 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:test-deployment,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 04:34:28 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://54445292794ef2a39cbee5f5b2b1e28cbce93c7ac071a00d045a81145aa15c72,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.2.235,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + +Oct 26 04:34:34.285: INFO: pod: "test-deployment-74c6dd549b-g5r5x": +&Pod{ObjectMeta:{test-deployment-74c6dd549b-g5r5x test-deployment-74c6dd549b- deployment-1195 12b8d671-6612-4ced-a7c3-72a4713133a6 3589 0 2022-10-26 04:34:29 +0000 UTC map[pod-template-hash:74c6dd549b test-deployment-static:true] map[] [{apps/v1 ReplicaSet test-deployment-74c6dd549b 9be6d895-8bf4-4a8d-8594-e780698475f2 0xc003563097 0xc003563098}] [] [{kube-controller-manager Update v1 2022-10-26 04:34:29 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"9be6d895-8bf4-4a8d-8594-e780698475f2\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"test-deployment\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 04:34:34 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.1.141\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-j4qns,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:test-deployment,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-j4qns,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*1,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:29 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:29 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:100.96.1.141,StartTime:2022-10-26 04:34:29 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:test-deployment,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 04:34:33 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://e4851431bbd5a699dfd24d7ebead07ba49bba2b3ba7529018156dd4ab9e43b01,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.1.141,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + +Oct 26 04:34:34.286: INFO: ReplicaSet "test-deployment-84b949bdfc": +&ReplicaSet{ObjectMeta:{test-deployment-84b949bdfc deployment-1195 32aea34c-10dd-454c-95a4-f245829ea427 3595 4 2022-10-26 04:34:24 +0000 UTC map[pod-template-hash:84b949bdfc test-deployment-static:true] map[deployment.kubernetes.io/desired-replicas:2 deployment.kubernetes.io/max-replicas:3 deployment.kubernetes.io/revision:2] [{apps/v1 Deployment test-deployment b77001ec-3037-493c-a1eb-1519c91b3595 0xc003562897 0xc003562898}] [] [{kube-controller-manager Update apps/v1 2022-10-26 04:34:24 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"b77001ec-3037-493c-a1eb-1519c91b3595\"}":{}}},"f:spec":{"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"test-deployment\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 04:34:34 +0000 UTC FieldsV1 {"f:status":{"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*0,Selector:&v1.LabelSelector{MatchLabels:map[string]string{pod-template-hash: 84b949bdfc,test-deployment-static: true,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[pod-template-hash:84b949bdfc test-deployment-static:true] map[] [] [] []} {[] [] [{test-deployment k8s.gcr.io/pause:3.7 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc003562920 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:0,FullyLabeledReplicas:0,ObservedGeneration:4,ReadyReplicas:0,AvailableReplicas:0,Conditions:[]ReplicaSetCondition{},},} + +Oct 26 04:34:34.288: INFO: pod: "test-deployment-84b949bdfc-9tn2r": +&Pod{ObjectMeta:{test-deployment-84b949bdfc-9tn2r test-deployment-84b949bdfc- deployment-1195 5a02f641-e6c4-4d2b-9967-79f92093bc29 3593 0 2022-10-26 04:34:24 +0000 UTC 2022-10-26 04:34:35 +0000 UTC 0xc0034a0470 map[pod-template-hash:84b949bdfc test-deployment-static:true] map[] [{apps/v1 ReplicaSet test-deployment-84b949bdfc 32aea34c-10dd-454c-95a4-f245829ea427 0xc0034a04a7 0xc0034a04a8}] [] [{kube-controller-manager Update v1 2022-10-26 04:34:24 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:pod-template-hash":{},"f:test-deployment-static":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"32aea34c-10dd-454c-95a4-f245829ea427\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"test-deployment\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 04:34:27 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.2.194\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-4mm2p,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:test-deployment,Image:k8s.gcr.io/pause:3.7,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-4mm2p,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*1,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:27 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:27 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:34:24 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:100.96.2.194,StartTime:2022-10-26 04:34:24 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:test-deployment,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 04:34:26 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/pause:3.7,ImageID:k8s.gcr.io/pause@sha256:bb6ed397957e9ca7c65ada0db5c5d1c707c9c8afc80a94acbe69f3ae76988f0c,ContainerID:containerd://7f2351ddb4c8f8b25a4aa514b01bd7aae1644cad2f0f1ba8794f18e1f76618b8,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.2.194,},},EphemeralContainerStatuses:[]ContainerStatus{},},} + +[AfterEach] [sig-apps] Deployment + test/e2e/framework/framework.go:188 +Oct 26 04:34:34.288: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "deployment-1195" for this suite. + +• [SLOW TEST:12.875 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + should run the lifecycle of a Deployment [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Deployment should run the lifecycle of a Deployment [Conformance]","total":356,"completed":15,"skipped":287,"failed":0} +[sig-storage] EmptyDir volumes + should support (non-root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:34:34.302: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (non-root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0777 on tmpfs +Oct 26 04:34:34.329: INFO: Waiting up to 5m0s for pod "pod-463e0a70-f585-4de5-ac0a-06871884773b" in namespace "emptydir-6869" to be "Succeeded or Failed" +Oct 26 04:34:34.331: INFO: Pod "pod-463e0a70-f585-4de5-ac0a-06871884773b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.156766ms +Oct 26 04:34:36.339: INFO: Pod "pod-463e0a70-f585-4de5-ac0a-06871884773b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009676516s +Oct 26 04:34:38.344: INFO: Pod "pod-463e0a70-f585-4de5-ac0a-06871884773b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.014705135s +STEP: Saw pod success +Oct 26 04:34:38.344: INFO: Pod "pod-463e0a70-f585-4de5-ac0a-06871884773b" satisfied condition "Succeeded or Failed" +Oct 26 04:34:38.346: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-463e0a70-f585-4de5-ac0a-06871884773b container test-container: +STEP: delete the pod +Oct 26 04:34:38.364: INFO: Waiting for pod pod-463e0a70-f585-4de5-ac0a-06871884773b to disappear +Oct 26 04:34:38.366: INFO: Pod pod-463e0a70-f585-4de5-ac0a-06871884773b no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 04:34:38.367: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-6869" for this suite. +•{"msg":"PASSED [sig-storage] EmptyDir volumes should support (non-root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":16,"skipped":287,"failed":0} + +------------------------------ +[sig-node] PodTemplates + should run the lifecycle of PodTemplates [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] PodTemplates + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:34:38.375: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename podtemplate +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should run the lifecycle of PodTemplates [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-node] PodTemplates + test/e2e/framework/framework.go:188 +Oct 26 04:34:38.410: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "podtemplate-3452" for this suite. +•{"msg":"PASSED [sig-node] PodTemplates should run the lifecycle of PodTemplates [Conformance]","total":356,"completed":17,"skipped":287,"failed":0} +SSSSSS +------------------------------ +[sig-node] Lease + lease API should be available [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Lease + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:34:38.418: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename lease-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] lease API should be available [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-node] Lease + test/e2e/framework/framework.go:188 +Oct 26 04:34:38.462: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "lease-test-2868" for this suite. +•{"msg":"PASSED [sig-node] Lease lease API should be available [Conformance]","total":356,"completed":18,"skipped":293,"failed":0} +SSS +------------------------------ +[sig-auth] ServiceAccounts + should mount projected service account token [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:34:38.469: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename svcaccounts +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should mount projected service account token [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test service account token: +Oct 26 04:34:38.495: INFO: Waiting up to 5m0s for pod "test-pod-d3e8657a-2859-4fcb-bec1-b9eb340f4223" in namespace "svcaccounts-5996" to be "Succeeded or Failed" +Oct 26 04:34:38.498: INFO: Pod "test-pod-d3e8657a-2859-4fcb-bec1-b9eb340f4223": Phase="Pending", Reason="", readiness=false. Elapsed: 3.490931ms +Oct 26 04:34:40.503: INFO: Pod "test-pod-d3e8657a-2859-4fcb-bec1-b9eb340f4223": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007825054s +Oct 26 04:34:42.507: INFO: Pod "test-pod-d3e8657a-2859-4fcb-bec1-b9eb340f4223": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.012116245s +STEP: Saw pod success +Oct 26 04:34:42.507: INFO: Pod "test-pod-d3e8657a-2859-4fcb-bec1-b9eb340f4223" satisfied condition "Succeeded or Failed" +Oct 26 04:34:42.509: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod test-pod-d3e8657a-2859-4fcb-bec1-b9eb340f4223 container agnhost-container: +STEP: delete the pod +Oct 26 04:34:42.526: INFO: Waiting for pod test-pod-d3e8657a-2859-4fcb-bec1-b9eb340f4223 to disappear +Oct 26 04:34:42.530: INFO: Pod test-pod-d3e8657a-2859-4fcb-bec1-b9eb340f4223 no longer exists +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:188 +Oct 26 04:34:42.530: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "svcaccounts-5996" for this suite. +•{"msg":"PASSED [sig-auth] ServiceAccounts should mount projected service account token [Conformance]","total":356,"completed":19,"skipped":296,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-scheduling] SchedulerPredicates [Serial] + validates that NodeSelector is respected if not matching [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:34:42.543: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sched-pred +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:92 +Oct 26 04:34:42.564: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready +Oct 26 04:34:42.570: INFO: Waiting for terminating namespaces to be deleted... +Oct 26 04:34:42.572: INFO: +Logging pods the apiserver thinks is on node i-066ef2cf0d4227da4 before test +Oct 26 04:34:42.579: INFO: etcd0 from default started at 2022-10-26 04:28:19 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.579: INFO: Container etcd0 ready: true, restart count 0 +Oct 26 04:34:42.579: INFO: cilium-79mzk from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.579: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 04:34:42.579: INFO: coredns-d8fb97fd8-fwb5g from kube-system started at 2022-10-26 04:26:26 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.579: INFO: Container coredns ready: true, restart count 0 +Oct 26 04:34:42.579: INFO: ebs-csi-node-sm5hp from kube-system started at 2022-10-26 04:25:47 +0000 UTC (3 container statuses recorded) +Oct 26 04:34:42.579: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 04:34:42.580: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 04:34:42.580: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 04:34:42.580: INFO: kube-proxy-i-066ef2cf0d4227da4 from kube-system started at 2022-10-26 04:25:36 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.580: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 04:34:42.580: INFO: sonobuoy from sonobuoy started at 2022-10-26 04:28:25 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.580: INFO: Container kube-sonobuoy ready: true, restart count 0 +Oct 26 04:34:42.580: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-nmk9j from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 04:34:42.580: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 04:34:42.580: INFO: Container systemd-logs ready: true, restart count 0 +Oct 26 04:34:42.580: INFO: +Logging pods the apiserver thinks is on node i-098fc8365626c8e13 before test +Oct 26 04:34:42.585: INFO: etcd1 from default started at 2022-10-26 04:28:19 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.586: INFO: Container etcd1 ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: cilium-tbpd2 from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.586: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: coredns-autoscaler-676759bcc8-dkw76 from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.586: INFO: Container autoscaler ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: coredns-d8fb97fd8-wnwxh from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.586: INFO: Container coredns ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: ebs-csi-node-dj7n5 from kube-system started at 2022-10-26 04:25:44 +0000 UTC (3 container statuses recorded) +Oct 26 04:34:42.586: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: kube-proxy-i-098fc8365626c8e13 from kube-system started at 2022-10-26 04:25:33 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.586: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: metrics-server-574d756598-j2vpt from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.586: INFO: Container metrics-server ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: sonobuoy-e2e-job-1c1e2e71fcc04437 from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 04:34:42.586: INFO: Container e2e ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-kx8s5 from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 04:34:42.586: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: Container systemd-logs ready: true, restart count 0 +Oct 26 04:34:42.586: INFO: +Logging pods the apiserver thinks is on node i-0ac1bb196421f13a1 before test +Oct 26 04:34:42.593: INFO: csi-mockplugin-6dd69fdb8b-kpvbh from default started at 2022-10-26 04:27:51 +0000 UTC (7 container statuses recorded) +Oct 26 04:34:42.593: INFO: Container csi-attacher ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: Container csi-provisioner ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: Container csi-resizer ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: Container csi-snapshotter ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: Container mock-driver ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: etcd2 from default started at 2022-10-26 04:28:19 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.593: INFO: Container etcd2 ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: web-server from default started at 2022-10-26 04:28:03 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.593: INFO: Container web-server ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: cilium-cckk4 from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.593: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: ebs-csi-node-wdz24 from kube-system started at 2022-10-26 04:25:49 +0000 UTC (3 container statuses recorded) +Oct 26 04:34:42.593: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: kube-proxy-i-0ac1bb196421f13a1 from kube-system started at 2022-10-26 04:25:39 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.593: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: metrics-server-574d756598-dj6zd from kube-system started at 2022-10-26 04:26:10 +0000 UTC (1 container statuses recorded) +Oct 26 04:34:42.593: INFO: Container metrics-server ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-qx8md from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 04:34:42.593: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 04:34:42.593: INFO: Container systemd-logs ready: true, restart count 0 +[It] validates that NodeSelector is respected if not matching [Conformance] + test/e2e/framework/framework.go:652 +STEP: Trying to schedule Pod with nonempty NodeSelector. +STEP: Considering event: +Type = [Warning], Name = [restricted-pod.1721845f741d1bfc], Reason = [FailedScheduling], Message = [0/4 nodes are available: 1 node(s) had untolerated taint {node-role.kubernetes.io/control-plane: }, 4 node(s) didn't match Pod's node affinity/selector. preemption: 0/4 nodes are available: 4 Preemption is not helpful for scheduling.] +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/framework.go:188 +Oct 26 04:34:43.620: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sched-pred-2174" for this suite. +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:83 +•{"msg":"PASSED [sig-scheduling] SchedulerPredicates [Serial] validates that NodeSelector is respected if not matching [Conformance]","total":356,"completed":20,"skipped":340,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] ReplicaSet + should validate Replicaset Status endpoints [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:34:43.636: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename replicaset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should validate Replicaset Status endpoints [Conformance] + test/e2e/framework/framework.go:652 +STEP: Create a Replicaset +STEP: Verify that the required pods have come up. +Oct 26 04:34:43.673: INFO: Pod name sample-pod: Found 0 pods out of 1 +Oct 26 04:34:48.680: INFO: Pod name sample-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running +STEP: Getting /status +Oct 26 04:34:48.682: INFO: Replicaset test-rs has Conditions: [] +STEP: updating the Replicaset Status +Oct 26 04:34:48.688: INFO: updatedStatus.Conditions: []v1.ReplicaSetCondition{v1.ReplicaSetCondition{Type:"StatusUpdate", Status:"True", LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"E2E", Message:"Set from e2e test"}} +STEP: watching for the ReplicaSet status to be updated +Oct 26 04:34:48.690: INFO: Observed &ReplicaSet event: ADDED +Oct 26 04:34:48.690: INFO: Observed &ReplicaSet event: MODIFIED +Oct 26 04:34:48.690: INFO: Observed &ReplicaSet event: MODIFIED +Oct 26 04:34:48.691: INFO: Observed &ReplicaSet event: MODIFIED +Oct 26 04:34:48.691: INFO: Found replicaset test-rs in namespace replicaset-5524 with labels: map[name:sample-pod pod:httpd] annotations: map[] & Conditions: [{StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test}] +Oct 26 04:34:48.691: INFO: Replicaset test-rs has an updated status +STEP: patching the Replicaset Status +Oct 26 04:34:48.691: INFO: Patch payload: {"status":{"conditions":[{"type":"StatusPatched","status":"True"}]}} +Oct 26 04:34:48.696: INFO: Patched status conditions: []v1.ReplicaSetCondition{v1.ReplicaSetCondition{Type:"StatusPatched", Status:"True", LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"", Message:""}} +STEP: watching for the Replicaset status to be patched +Oct 26 04:34:48.697: INFO: Observed &ReplicaSet event: ADDED +Oct 26 04:34:48.697: INFO: Observed &ReplicaSet event: MODIFIED +Oct 26 04:34:48.698: INFO: Observed &ReplicaSet event: MODIFIED +Oct 26 04:34:48.698: INFO: Observed &ReplicaSet event: MODIFIED +Oct 26 04:34:48.698: INFO: Observed replicaset test-rs in namespace replicaset-5524 with annotations: map[] & Conditions: {StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test} +Oct 26 04:34:48.698: INFO: Observed &ReplicaSet event: MODIFIED +Oct 26 04:34:48.698: INFO: Found replicaset test-rs in namespace replicaset-5524 with labels: map[name:sample-pod pod:httpd] annotations: map[] & Conditions: {StatusPatched True 0001-01-01 00:00:00 +0000 UTC } +Oct 26 04:34:48.698: INFO: Replicaset test-rs has a patched status +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:188 +Oct 26 04:34:48.698: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "replicaset-5524" for this suite. + +• [SLOW TEST:5.072 seconds] +[sig-apps] ReplicaSet +test/e2e/apps/framework.go:23 + should validate Replicaset Status endpoints [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] ReplicaSet should validate Replicaset Status endpoints [Conformance]","total":356,"completed":21,"skipped":364,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl patch + should add annotations for pods in rc [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:34:48.709: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[It] should add annotations for pods in rc [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating Agnhost RC +Oct 26 04:34:48.725: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8397 create -f -' +Oct 26 04:34:49.445: INFO: stderr: "" +Oct 26 04:34:49.445: INFO: stdout: "replicationcontroller/agnhost-primary created\n" +STEP: Waiting for Agnhost primary to start. +Oct 26 04:34:50.449: INFO: Selector matched 1 pods for map[app:agnhost] +Oct 26 04:34:50.449: INFO: Found 0 / 1 +Oct 26 04:34:51.450: INFO: Selector matched 1 pods for map[app:agnhost] +Oct 26 04:34:51.450: INFO: Found 1 / 1 +Oct 26 04:34:51.450: INFO: WaitFor completed with timeout 5m0s. Pods found = 1 out of 1 +STEP: patching all pods +Oct 26 04:34:51.452: INFO: Selector matched 1 pods for map[app:agnhost] +Oct 26 04:34:51.452: INFO: ForEach: Found 1 pods from the filter. Now looping through them. +Oct 26 04:34:51.452: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8397 patch pod agnhost-primary-kln9r -p {"metadata":{"annotations":{"x":"y"}}}' +Oct 26 04:34:51.558: INFO: stderr: "" +Oct 26 04:34:51.558: INFO: stdout: "pod/agnhost-primary-kln9r patched\n" +STEP: checking annotations +Oct 26 04:34:51.560: INFO: Selector matched 1 pods for map[app:agnhost] +Oct 26 04:34:51.560: INFO: ForEach: Found 1 pods from the filter. Now looping through them. +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 04:34:51.560: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-8397" for this suite. +•{"msg":"PASSED [sig-cli] Kubectl client Kubectl patch should add annotations for pods in rc [Conformance]","total":356,"completed":22,"skipped":421,"failed":0} +SSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for CRD with validation schema [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:34:51.582: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-publish-openapi +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] works for CRD with validation schema [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:34:51.620: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: kubectl validation (kubectl create and apply) allows request with known and required properties +Oct 26 04:34:54.968: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 --namespace=crd-publish-openapi-6487 create -f -' +Oct 26 04:34:55.718: INFO: stderr: "" +Oct 26 04:34:55.718: INFO: stdout: "e2e-test-crd-publish-openapi-6743-crd.crd-publish-openapi-test-foo.example.com/test-foo created\n" +Oct 26 04:34:55.718: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 --namespace=crd-publish-openapi-6487 delete e2e-test-crd-publish-openapi-6743-crds test-foo' +Oct 26 04:34:55.776: INFO: stderr: "" +Oct 26 04:34:55.776: INFO: stdout: "e2e-test-crd-publish-openapi-6743-crd.crd-publish-openapi-test-foo.example.com \"test-foo\" deleted\n" +Oct 26 04:34:55.776: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 --namespace=crd-publish-openapi-6487 apply -f -' +Oct 26 04:34:55.954: INFO: stderr: "" +Oct 26 04:34:55.954: INFO: stdout: "e2e-test-crd-publish-openapi-6743-crd.crd-publish-openapi-test-foo.example.com/test-foo created\n" +Oct 26 04:34:55.955: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 --namespace=crd-publish-openapi-6487 delete e2e-test-crd-publish-openapi-6743-crds test-foo' +Oct 26 04:34:56.013: INFO: stderr: "" +Oct 26 04:34:56.013: INFO: stdout: "e2e-test-crd-publish-openapi-6743-crd.crd-publish-openapi-test-foo.example.com \"test-foo\" deleted\n" +STEP: kubectl validation (kubectl create and apply) rejects request with value outside defined enum values +Oct 26 04:34:56.013: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 --namespace=crd-publish-openapi-6487 create -f -' +Oct 26 04:34:56.175: INFO: rc: 1 +STEP: kubectl validation (kubectl create and apply) rejects request with unknown properties when disallowed by the schema +Oct 26 04:34:56.175: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 --namespace=crd-publish-openapi-6487 create -f -' +Oct 26 04:34:56.349: INFO: rc: 1 +Oct 26 04:34:56.349: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 --namespace=crd-publish-openapi-6487 apply -f -' +Oct 26 04:34:56.521: INFO: rc: 1 +STEP: kubectl validation (kubectl create and apply) rejects request without required properties +Oct 26 04:34:56.521: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 --namespace=crd-publish-openapi-6487 create -f -' +Oct 26 04:34:56.694: INFO: rc: 1 +Oct 26 04:34:56.694: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 --namespace=crd-publish-openapi-6487 apply -f -' +Oct 26 04:34:56.868: INFO: rc: 1 +STEP: kubectl explain works to explain CR properties +Oct 26 04:34:56.868: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 explain e2e-test-crd-publish-openapi-6743-crds' +Oct 26 04:34:57.029: INFO: stderr: "" +Oct 26 04:34:57.029: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6743-crd\nVERSION: crd-publish-openapi-test-foo.example.com/v1\n\nDESCRIPTION:\n Foo CRD for Testing\n\nFIELDS:\n apiVersion\t\n APIVersion defines the versioned schema of this representation of an\n object. Servers should convert recognized schemas to the latest internal\n value, and may reject unrecognized values. More info:\n https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\n\n kind\t\n Kind is a string value representing the REST resource this object\n represents. Servers may infer this from the endpoint the client submits\n requests to. Cannot be updated. In CamelCase. More info:\n https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\n\n metadata\t\n Standard object's metadata. More info:\n https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\n\n spec\t\n Specification of Foo\n\n status\t\n Status of Foo\n\n" +STEP: kubectl explain works to explain CR properties recursively +Oct 26 04:34:57.030: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 explain e2e-test-crd-publish-openapi-6743-crds.metadata' +Oct 26 04:34:57.226: INFO: stderr: "" +Oct 26 04:34:57.226: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6743-crd\nVERSION: crd-publish-openapi-test-foo.example.com/v1\n\nRESOURCE: metadata \n\nDESCRIPTION:\n Standard object's metadata. More info:\n https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\n\n ObjectMeta is metadata that all persisted resources must have, which\n includes all objects users must create.\n\nFIELDS:\n annotations\t\n Annotations is an unstructured key value map stored with a resource that\n may be set by external tools to store and retrieve arbitrary metadata. They\n are not queryable and should be preserved when modifying objects. More\n info: http://kubernetes.io/docs/user-guide/annotations\n\n clusterName\t\n Deprecated: ClusterName is a legacy field that was always cleared by the\n system and never used; it will be removed completely in 1.25.\n\n The name in the go struct is changed to help clients detect accidental use.\n\n creationTimestamp\t\n CreationTimestamp is a timestamp representing the server time when this\n object was created. It is not guaranteed to be set in happens-before order\n across separate operations. Clients may not set this value. It is\n represented in RFC3339 form and is in UTC.\n\n Populated by the system. Read-only. Null for lists. More info:\n https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\n\n deletionGracePeriodSeconds\t\n Number of seconds allowed for this object to gracefully terminate before it\n will be removed from the system. Only set when deletionTimestamp is also\n set. May only be shortened. Read-only.\n\n deletionTimestamp\t\n DeletionTimestamp is RFC 3339 date and time at which this resource will be\n deleted. This field is set by the server when a graceful deletion is\n requested by the user, and is not directly settable by a client. The\n resource is expected to be deleted (no longer visible from resource lists,\n and not reachable by name) after the time in this field, once the\n finalizers list is empty. As long as the finalizers list contains items,\n deletion is blocked. Once the deletionTimestamp is set, this value may not\n be unset or be set further into the future, although it may be shortened or\n the resource may be deleted prior to this time. For example, a user may\n request that a pod is deleted in 30 seconds. The Kubelet will react by\n sending a graceful termination signal to the containers in the pod. After\n that 30 seconds, the Kubelet will send a hard termination signal (SIGKILL)\n to the container and after cleanup, remove the pod from the API. In the\n presence of network partitions, this object may still exist after this\n timestamp, until an administrator or automated process can determine the\n resource is fully terminated. If not set, graceful deletion of the object\n has not been requested.\n\n Populated by the system when a graceful deletion is requested. Read-only.\n More info:\n https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\n\n finalizers\t<[]string>\n Must be empty before the object is deleted from the registry. Each entry is\n an identifier for the responsible component that will remove the entry from\n the list. If the deletionTimestamp of the object is non-nil, entries in\n this list can only be removed. Finalizers may be processed and removed in\n any order. Order is NOT enforced because it introduces significant risk of\n stuck finalizers. finalizers is a shared field, any actor with permission\n can reorder it. If the finalizer list is processed in order, then this can\n lead to a situation in which the component responsible for the first\n finalizer in the list is waiting for a signal (field value, external\n system, or other) produced by a component responsible for a finalizer later\n in the list, resulting in a deadlock. Without enforced ordering finalizers\n are free to order amongst themselves and are not vulnerable to ordering\n changes in the list.\n\n generateName\t\n GenerateName is an optional prefix, used by the server, to generate a\n unique name ONLY IF the Name field has not been provided. If this field is\n used, the name returned to the client will be different than the name\n passed. This value will also be combined with a unique suffix. The provided\n value has the same validation rules as the Name field, and may be truncated\n by the length of the suffix required to make the value unique on the\n server.\n\n If this field is specified and the generated name exists, the server will\n return a 409.\n\n Applied only if Name is not specified. More info:\n https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#idempotency\n\n generation\t\n A sequence number representing a specific generation of the desired state.\n Populated by the system. Read-only.\n\n labels\t\n Map of string keys and values that can be used to organize and categorize\n (scope and select) objects. May match selectors of replication controllers\n and services. More info: http://kubernetes.io/docs/user-guide/labels\n\n managedFields\t<[]Object>\n ManagedFields maps workflow-id and version to the set of fields that are\n managed by that workflow. This is mostly for internal housekeeping, and\n users typically shouldn't need to set or understand this field. A workflow\n can be the user's name, a controller's name, or the name of a specific\n apply path like \"ci-cd\". The set of fields is always in the version that\n the workflow used when modifying the object.\n\n name\t\n Name must be unique within a namespace. Is required when creating\n resources, although some resources may allow a client to request the\n generation of an appropriate name automatically. Name is primarily intended\n for creation idempotence and configuration definition. Cannot be updated.\n More info: http://kubernetes.io/docs/user-guide/identifiers#names\n\n namespace\t\n Namespace defines the space within which each name must be unique. An empty\n namespace is equivalent to the \"default\" namespace, but \"default\" is the\n canonical representation. Not all objects are required to be scoped to a\n namespace - the value of this field for those objects will be empty.\n\n Must be a DNS_LABEL. Cannot be updated. More info:\n http://kubernetes.io/docs/user-guide/namespaces\n\n ownerReferences\t<[]Object>\n List of objects depended by this object. If ALL objects in the list have\n been deleted, this object will be garbage collected. If this object is\n managed by a controller, then an entry in this list will point to this\n controller, with the controller field set to true. There cannot be more\n than one managing controller.\n\n resourceVersion\t\n An opaque value that represents the internal version of this object that\n can be used by clients to determine when objects have changed. May be used\n for optimistic concurrency, change detection, and the watch operation on a\n resource or set of resources. Clients must treat these values as opaque and\n passed unmodified back to the server. They may only be valid for a\n particular resource or set of resources.\n\n Populated by the system. Read-only. Value must be treated as opaque by\n clients and . More info:\n https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency\n\n selfLink\t\n Deprecated: selfLink is a legacy read-only field that is no longer\n populated by the system.\n\n uid\t\n UID is the unique in time and space value for this object. It is typically\n generated by the server on successful creation of a resource and is not\n allowed to change on PUT operations.\n\n Populated by the system. Read-only. More info:\n http://kubernetes.io/docs/user-guide/identifiers#uids\n\n" +Oct 26 04:34:57.227: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 explain e2e-test-crd-publish-openapi-6743-crds.spec' +Oct 26 04:34:57.405: INFO: stderr: "" +Oct 26 04:34:57.405: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6743-crd\nVERSION: crd-publish-openapi-test-foo.example.com/v1\n\nRESOURCE: spec \n\nDESCRIPTION:\n Specification of Foo\n\nFIELDS:\n bars\t<[]Object>\n List of Bars and their specs.\n\n" +Oct 26 04:34:57.405: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 explain e2e-test-crd-publish-openapi-6743-crds.spec.bars' +Oct 26 04:34:57.573: INFO: stderr: "" +Oct 26 04:34:57.573: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-6743-crd\nVERSION: crd-publish-openapi-test-foo.example.com/v1\n\nRESOURCE: bars <[]Object>\n\nDESCRIPTION:\n List of Bars and their specs.\n\nFIELDS:\n age\t\n Age of Bar.\n\n bazs\t<[]string>\n List of Bazs.\n\n feeling\t\n Whether Bar is feeling great.\n\n name\t -required-\n Name of Bar.\n\n" +STEP: kubectl explain works to return error when explain is called on property that doesn't exist +Oct 26 04:34:57.573: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-6487 explain e2e-test-crd-publish-openapi-6743-crds.spec.bars2' +Oct 26 04:34:57.745: INFO: rc: 1 +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 04:35:00.381: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-publish-openapi-6487" for this suite. + +• [SLOW TEST:8.811 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + works for CRD with validation schema [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD with validation schema [Conformance]","total":356,"completed":23,"skipped":437,"failed":0} +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] CronJob + should schedule multiple jobs concurrently [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] CronJob + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:35:00.394: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename cronjob +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should schedule multiple jobs concurrently [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a cronjob +STEP: Ensuring more than one job is running at a time +STEP: Ensuring at least two running jobs exists by listing jobs explicitly +STEP: Removing cronjob +[AfterEach] [sig-apps] CronJob + test/e2e/framework/framework.go:188 +Oct 26 04:37:00.447: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "cronjob-1669" for this suite. + +• [SLOW TEST:120.073 seconds] +[sig-apps] CronJob +test/e2e/apps/framework.go:23 + should schedule multiple jobs concurrently [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] CronJob should schedule multiple jobs concurrently [Conformance]","total":356,"completed":24,"skipped":455,"failed":0} +SSSSSS +------------------------------ +[sig-node] Secrets + should fail to create secret due to empty secret key [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:37:00.468: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should fail to create secret due to empty secret key [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating projection with secret that has name secret-emptykey-test-d4a0a572-9468-4e0d-ba0c-778097695a84 +[AfterEach] [sig-node] Secrets + test/e2e/framework/framework.go:188 +Oct 26 04:37:00.519: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-2843" for this suite. +•{"msg":"PASSED [sig-node] Secrets should fail to create secret due to empty secret key [Conformance]","total":356,"completed":25,"skipped":461,"failed":0} +SSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + volume on tmpfs should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:37:00.526: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] volume on tmpfs should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir volume type on tmpfs +Oct 26 04:37:00.546: INFO: Waiting up to 5m0s for pod "pod-35166de1-23db-486e-810e-7334e27cc6a7" in namespace "emptydir-5217" to be "Succeeded or Failed" +Oct 26 04:37:00.551: INFO: Pod "pod-35166de1-23db-486e-810e-7334e27cc6a7": Phase="Pending", Reason="", readiness=false. Elapsed: 4.70907ms +Oct 26 04:37:02.554: INFO: Pod "pod-35166de1-23db-486e-810e-7334e27cc6a7": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007830764s +Oct 26 04:37:04.561: INFO: Pod "pod-35166de1-23db-486e-810e-7334e27cc6a7": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.015509834s +STEP: Saw pod success +Oct 26 04:37:04.561: INFO: Pod "pod-35166de1-23db-486e-810e-7334e27cc6a7" satisfied condition "Succeeded or Failed" +Oct 26 04:37:04.564: INFO: Trying to get logs from node i-098fc8365626c8e13 pod pod-35166de1-23db-486e-810e-7334e27cc6a7 container test-container: +STEP: delete the pod +Oct 26 04:37:04.583: INFO: Waiting for pod pod-35166de1-23db-486e-810e-7334e27cc6a7 to disappear +Oct 26 04:37:04.588: INFO: Pod pod-35166de1-23db-486e-810e-7334e27cc6a7 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 04:37:04.589: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-5217" for this suite. +•{"msg":"PASSED [sig-storage] EmptyDir volumes volume on tmpfs should have the correct mode [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":26,"skipped":473,"failed":0} +S +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should deny crd creation [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:37:04.601: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 04:37:05.003: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 04:37:08.025: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should deny crd creation [Conformance] + test/e2e/framework/framework.go:652 +STEP: Registering the crd webhook via the AdmissionRegistration API +STEP: Creating a custom resource definition that should be denied by the webhook +Oct 26 04:37:08.041: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 04:37:08.054: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-1528" for this suite. +STEP: Destroying namespace "webhook-1528-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 +•{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should deny crd creation [Conformance]","total":356,"completed":27,"skipped":474,"failed":0} +SSSSSSS +------------------------------ +[sig-apps] Job + should apply changes to a job status [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Job + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:37:08.140: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename job +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should apply changes to a job status [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a job +STEP: Ensure pods equal to paralellism count is attached to the job +STEP: patching /status +STEP: updating /status +STEP: get /status +[AfterEach] [sig-apps] Job + test/e2e/framework/framework.go:188 +Oct 26 04:37:12.205: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "job-5141" for this suite. +•{"msg":"PASSED [sig-apps] Job should apply changes to a job status [Conformance]","total":356,"completed":28,"skipped":481,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and capture the life of a replication controller. [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:37:12.216: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename resourcequota +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should create a ResourceQuota and capture the life of a replication controller. [Conformance] + test/e2e/framework/framework.go:652 +STEP: Counting existing ResourceQuota +STEP: Creating a ResourceQuota +STEP: Ensuring resource quota status is calculated +STEP: Creating a ReplicationController +STEP: Ensuring resource quota status captures replication controller creation +STEP: Deleting a ReplicationController +STEP: Ensuring resource quota status released usage +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:188 +Oct 26 04:37:23.301: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "resourcequota-2735" for this suite. + +• [SLOW TEST:11.091 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should create a ResourceQuota and capture the life of a replication controller. [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a replication controller. [Conformance]","total":356,"completed":29,"skipped":492,"failed":0} +SSSSS +------------------------------ +[sig-api-machinery] Namespaces [Serial] + should ensure that all services are removed when a namespace is deleted [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:37:23.308: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename namespaces +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should ensure that all services are removed when a namespace is deleted [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a test namespace +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Creating a service in the namespace +STEP: Deleting the namespace +STEP: Waiting for the namespace to be removed. +STEP: Recreating the namespace +STEP: Verifying there is no service in the namespace +[AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/framework.go:188 +Oct 26 04:37:29.407: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "namespaces-2982" for this suite. +STEP: Destroying namespace "nsdeletetest-2104" for this suite. +Oct 26 04:37:29.414: INFO: Namespace nsdeletetest-2104 was already deleted +STEP: Destroying namespace "nsdeletetest-7952" for this suite. + +• [SLOW TEST:6.110 seconds] +[sig-api-machinery] Namespaces [Serial] +test/e2e/apimachinery/framework.go:23 + should ensure that all services are removed when a namespace is deleted [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] Namespaces [Serial] should ensure that all services are removed when a namespace is deleted [Conformance]","total":356,"completed":30,"skipped":497,"failed":0} +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected secret + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:37:29.420: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating projection with secret that has name projected-secret-test-map-bbf3b119-1cb8-4892-8b6d-f677d094db01 +STEP: Creating a pod to test consume secrets +Oct 26 04:37:29.441: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-649f6c05-459f-44b3-b8df-cbd348d685ba" in namespace "projected-4730" to be "Succeeded or Failed" +Oct 26 04:37:29.445: INFO: Pod "pod-projected-secrets-649f6c05-459f-44b3-b8df-cbd348d685ba": Phase="Pending", Reason="", readiness=false. Elapsed: 3.984285ms +Oct 26 04:37:31.452: INFO: Pod "pod-projected-secrets-649f6c05-459f-44b3-b8df-cbd348d685ba": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010447928s +Oct 26 04:37:33.454: INFO: Pod "pod-projected-secrets-649f6c05-459f-44b3-b8df-cbd348d685ba": Phase="Pending", Reason="", readiness=false. Elapsed: 4.012902581s +Oct 26 04:37:35.460: INFO: Pod "pod-projected-secrets-649f6c05-459f-44b3-b8df-cbd348d685ba": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.018704473s +STEP: Saw pod success +Oct 26 04:37:35.460: INFO: Pod "pod-projected-secrets-649f6c05-459f-44b3-b8df-cbd348d685ba" satisfied condition "Succeeded or Failed" +Oct 26 04:37:35.462: INFO: Trying to get logs from node i-098fc8365626c8e13 pod pod-projected-secrets-649f6c05-459f-44b3-b8df-cbd348d685ba container projected-secret-volume-test: +STEP: delete the pod +Oct 26 04:37:35.472: INFO: Waiting for pod pod-projected-secrets-649f6c05-459f-44b3-b8df-cbd348d685ba to disappear +Oct 26 04:37:35.475: INFO: Pod pod-projected-secrets-649f6c05-459f-44b3-b8df-cbd348d685ba no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:188 +Oct 26 04:37:35.475: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-4730" for this suite. + +• [SLOW TEST:6.064 seconds] +[sig-storage] Projected secret +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected secret should be consumable from pods in volume with mappings [NodeConformance] [Conformance]","total":356,"completed":31,"skipped":515,"failed":0} +SSSSSSS +------------------------------ +[sig-apps] ReplicaSet + should list and delete a collection of ReplicaSets [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:37:35.484: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename replicaset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should list and delete a collection of ReplicaSets [Conformance] + test/e2e/framework/framework.go:652 +STEP: Create a ReplicaSet +STEP: Verify that the required pods have come up +Oct 26 04:37:35.530: INFO: Pod name sample-pod: Found 1 pods out of 3 +Oct 26 04:37:40.536: INFO: Pod name sample-pod: Found 3 pods out of 3 +STEP: ensuring each pod is running +Oct 26 04:37:42.545: INFO: Replica Status: {Replicas:3 FullyLabeledReplicas:3 ReadyReplicas:3 AvailableReplicas:3 ObservedGeneration:1 Conditions:[]} +STEP: Listing all ReplicaSets +STEP: DeleteCollection of the ReplicaSets +STEP: After DeleteCollection verify that ReplicaSets have been deleted +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:188 +Oct 26 04:37:42.560: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "replicaset-4247" for this suite. + +• [SLOW TEST:7.096 seconds] +[sig-apps] ReplicaSet +test/e2e/apps/framework.go:23 + should list and delete a collection of ReplicaSets [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] ReplicaSet should list and delete a collection of ReplicaSets [Conformance]","total":356,"completed":32,"skipped":522,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-apps] ReplicationController + should surface a failure condition on a common issue like exceeded quota [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:37:42.582: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename replication-controller +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:56 +[It] should surface a failure condition on a common issue like exceeded quota [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:37:42.620: INFO: Creating quota "condition-test" that allows only two pods to run in the current namespace +STEP: Creating rc "condition-test" that asks for more than the allowed pod quota +STEP: Checking rc "condition-test" has the desired failure condition set +STEP: Scaling down rc "condition-test" to satisfy pod quota +Oct 26 04:37:44.674: INFO: Updating replication controller "condition-test" +STEP: Checking rc "condition-test" has no failure condition set +[AfterEach] [sig-apps] ReplicationController + test/e2e/framework/framework.go:188 +Oct 26 04:37:44.678: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "replication-controller-4573" for this suite. +•{"msg":"PASSED [sig-apps] ReplicationController should surface a failure condition on a common issue like exceeded quota [Conformance]","total":356,"completed":33,"skipped":533,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] ReplicaSet + Replicaset should have a working scale subresource [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:37:44.691: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename replicaset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] Replicaset should have a working scale subresource [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating replica set "test-rs" that asks for more than the allowed pod quota +Oct 26 04:37:44.718: INFO: Pod name sample-pod: Found 0 pods out of 1 +Oct 26 04:37:49.721: INFO: Pod name sample-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running +STEP: getting scale subresource +STEP: updating a scale subresource +STEP: verifying the replicaset Spec.Replicas was modified +STEP: Patch a scale subresource +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:188 +Oct 26 04:37:49.768: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "replicaset-7341" for this suite. + +• [SLOW TEST:5.088 seconds] +[sig-apps] ReplicaSet +test/e2e/apps/framework.go:23 + Replicaset should have a working scale subresource [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] ReplicaSet Replicaset should have a working scale subresource [Conformance]","total":356,"completed":34,"skipped":558,"failed":0} +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-scheduling] SchedulerPreemption [Serial] + validates lower priority pod preemption by critical pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:37:49.781: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sched-preemption +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:92 +Oct 26 04:37:49.809: INFO: Waiting up to 1m0s for all nodes to be ready +Oct 26 04:38:49.849: INFO: Waiting for terminating namespaces to be deleted... +[It] validates lower priority pod preemption by critical pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: Create pods that use 4/5 of node resources. +Oct 26 04:38:49.873: INFO: Created pod: pod0-0-sched-preemption-low-priority +Oct 26 04:38:49.884: INFO: Created pod: pod0-1-sched-preemption-medium-priority +Oct 26 04:38:49.909: INFO: Created pod: pod1-0-sched-preemption-medium-priority +Oct 26 04:38:49.914: INFO: Created pod: pod1-1-sched-preemption-medium-priority +Oct 26 04:38:49.945: INFO: Created pod: pod2-0-sched-preemption-medium-priority +Oct 26 04:38:49.964: INFO: Created pod: pod2-1-sched-preemption-medium-priority +STEP: Wait for pods to be scheduled. +STEP: Run a critical pod that use same resources as that of a lower priority pod +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/framework.go:188 +Oct 26 04:39:04.093: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sched-preemption-7001" for this suite. +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:80 + +• [SLOW TEST:74.394 seconds] +[sig-scheduling] SchedulerPreemption [Serial] +test/e2e/scheduling/framework.go:40 + validates lower priority pod preemption by critical pod [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-scheduling] SchedulerPreemption [Serial] validates lower priority pod preemption by critical pod [Conformance]","total":356,"completed":35,"skipped":578,"failed":0} +S +------------------------------ +[sig-storage] Projected downwardAPI + should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:04.175: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:43 +[It] should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 04:39:04.195: INFO: Waiting up to 5m0s for pod "downwardapi-volume-6b560854-5afa-44db-82d3-dd9b57f7534c" in namespace "projected-6857" to be "Succeeded or Failed" +Oct 26 04:39:04.205: INFO: Pod "downwardapi-volume-6b560854-5afa-44db-82d3-dd9b57f7534c": Phase="Pending", Reason="", readiness=false. Elapsed: 10.094794ms +Oct 26 04:39:06.213: INFO: Pod "downwardapi-volume-6b560854-5afa-44db-82d3-dd9b57f7534c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.018292321s +Oct 26 04:39:08.219: INFO: Pod "downwardapi-volume-6b560854-5afa-44db-82d3-dd9b57f7534c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.023921137s +STEP: Saw pod success +Oct 26 04:39:08.219: INFO: Pod "downwardapi-volume-6b560854-5afa-44db-82d3-dd9b57f7534c" satisfied condition "Succeeded or Failed" +Oct 26 04:39:08.221: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-6b560854-5afa-44db-82d3-dd9b57f7534c container client-container: +STEP: delete the pod +Oct 26 04:39:08.259: INFO: Waiting for pod downwardapi-volume-6b560854-5afa-44db-82d3-dd9b57f7534c to disappear +Oct 26 04:39:08.265: INFO: Pod downwardapi-volume-6b560854-5afa-44db-82d3-dd9b57f7534c no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:188 +Oct 26 04:39:08.265: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-6857" for this suite. +•{"msg":"PASSED [sig-storage] Projected downwardAPI should provide container's memory limit [NodeConformance] [Conformance]","total":356,"completed":36,"skipped":579,"failed":0} +SS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for CRD without validation schema [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:08.274: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-publish-openapi +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] works for CRD without validation schema [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:39:08.299: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: kubectl validation (kubectl create and apply) allows request with any unknown properties +Oct 26 04:39:10.822: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-2743 --namespace=crd-publish-openapi-2743 create -f -' +Oct 26 04:39:11.710: INFO: stderr: "" +Oct 26 04:39:11.710: INFO: stdout: "e2e-test-crd-publish-openapi-4016-crd.crd-publish-openapi-test-empty.example.com/test-cr created\n" +Oct 26 04:39:11.710: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-2743 --namespace=crd-publish-openapi-2743 delete e2e-test-crd-publish-openapi-4016-crds test-cr' +Oct 26 04:39:11.771: INFO: stderr: "" +Oct 26 04:39:11.771: INFO: stdout: "e2e-test-crd-publish-openapi-4016-crd.crd-publish-openapi-test-empty.example.com \"test-cr\" deleted\n" +Oct 26 04:39:11.771: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-2743 --namespace=crd-publish-openapi-2743 apply -f -' +Oct 26 04:39:11.946: INFO: stderr: "" +Oct 26 04:39:11.946: INFO: stdout: "e2e-test-crd-publish-openapi-4016-crd.crd-publish-openapi-test-empty.example.com/test-cr created\n" +Oct 26 04:39:11.946: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-2743 --namespace=crd-publish-openapi-2743 delete e2e-test-crd-publish-openapi-4016-crds test-cr' +Oct 26 04:39:12.008: INFO: stderr: "" +Oct 26 04:39:12.008: INFO: stdout: "e2e-test-crd-publish-openapi-4016-crd.crd-publish-openapi-test-empty.example.com \"test-cr\" deleted\n" +STEP: kubectl explain works to explain CR without validation schema +Oct 26 04:39:12.008: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-2743 explain e2e-test-crd-publish-openapi-4016-crds' +Oct 26 04:39:12.180: INFO: stderr: "" +Oct 26 04:39:12.180: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-4016-crd\nVERSION: crd-publish-openapi-test-empty.example.com/v1\n\nDESCRIPTION:\n \n" +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 04:39:14.652: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-publish-openapi-2743" for this suite. + +• [SLOW TEST:6.388 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + works for CRD without validation schema [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD without validation schema [Conformance]","total":356,"completed":37,"skipped":581,"failed":0} +SS +------------------------------ +[sig-storage] EmptyDir volumes + volume on default medium should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:14.663: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] volume on default medium should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir volume type on node default medium +Oct 26 04:39:14.682: INFO: Waiting up to 5m0s for pod "pod-df0f9f90-9584-457d-a122-c06cfdb42f68" in namespace "emptydir-7475" to be "Succeeded or Failed" +Oct 26 04:39:14.688: INFO: Pod "pod-df0f9f90-9584-457d-a122-c06cfdb42f68": Phase="Pending", Reason="", readiness=false. Elapsed: 6.03332ms +Oct 26 04:39:16.700: INFO: Pod "pod-df0f9f90-9584-457d-a122-c06cfdb42f68": Phase="Pending", Reason="", readiness=false. Elapsed: 2.017756836s +Oct 26 04:39:18.706: INFO: Pod "pod-df0f9f90-9584-457d-a122-c06cfdb42f68": Phase="Pending", Reason="", readiness=false. Elapsed: 4.023570071s +Oct 26 04:39:20.710: INFO: Pod "pod-df0f9f90-9584-457d-a122-c06cfdb42f68": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.02793515s +STEP: Saw pod success +Oct 26 04:39:20.710: INFO: Pod "pod-df0f9f90-9584-457d-a122-c06cfdb42f68" satisfied condition "Succeeded or Failed" +Oct 26 04:39:20.713: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-df0f9f90-9584-457d-a122-c06cfdb42f68 container test-container: +STEP: delete the pod +Oct 26 04:39:20.725: INFO: Waiting for pod pod-df0f9f90-9584-457d-a122-c06cfdb42f68 to disappear +Oct 26 04:39:20.727: INFO: Pod pod-df0f9f90-9584-457d-a122-c06cfdb42f68 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 04:39:20.727: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-7475" for this suite. + +• [SLOW TEST:6.071 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + volume on default medium should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] EmptyDir volumes volume on default medium should have the correct mode [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":38,"skipped":583,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:20.734: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:43 +[It] should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 04:39:20.764: INFO: Waiting up to 5m0s for pod "downwardapi-volume-382d64df-1afe-46b7-acd7-1d7cd511ee27" in namespace "downward-api-3762" to be "Succeeded or Failed" +Oct 26 04:39:20.770: INFO: Pod "downwardapi-volume-382d64df-1afe-46b7-acd7-1d7cd511ee27": Phase="Pending", Reason="", readiness=false. Elapsed: 6.103058ms +Oct 26 04:39:22.775: INFO: Pod "downwardapi-volume-382d64df-1afe-46b7-acd7-1d7cd511ee27": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010801291s +Oct 26 04:39:24.781: INFO: Pod "downwardapi-volume-382d64df-1afe-46b7-acd7-1d7cd511ee27": Phase="Pending", Reason="", readiness=false. Elapsed: 4.017413642s +Oct 26 04:39:26.789: INFO: Pod "downwardapi-volume-382d64df-1afe-46b7-acd7-1d7cd511ee27": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.02528017s +STEP: Saw pod success +Oct 26 04:39:26.789: INFO: Pod "downwardapi-volume-382d64df-1afe-46b7-acd7-1d7cd511ee27" satisfied condition "Succeeded or Failed" +Oct 26 04:39:26.791: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-382d64df-1afe-46b7-acd7-1d7cd511ee27 container client-container: +STEP: delete the pod +Oct 26 04:39:26.803: INFO: Waiting for pod downwardapi-volume-382d64df-1afe-46b7-acd7-1d7cd511ee27 to disappear +Oct 26 04:39:26.806: INFO: Pod downwardapi-volume-382d64df-1afe-46b7-acd7-1d7cd511ee27 no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:188 +Oct 26 04:39:26.806: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-3762" for this suite. + +• [SLOW TEST:6.081 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Downward API volume should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance]","total":356,"completed":39,"skipped":627,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Kubelet when scheduling a busybox command that always fails in a pod + should have an terminated reason [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Kubelet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:26.817: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubelet-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:40 +[BeforeEach] when scheduling a busybox command that always fails in a pod + test/e2e/common/node/kubelet.go:84 +[It] should have an terminated reason [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-node] Kubelet + test/e2e/framework/framework.go:188 +Oct 26 04:39:30.843: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubelet-test-3472" for this suite. +•{"msg":"PASSED [sig-node] Kubelet when scheduling a busybox command that always fails in a pod should have an terminated reason [NodeConformance] [Conformance]","total":356,"completed":40,"skipped":660,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-auth] ServiceAccounts + should guarantee kube-root-ca.crt exist in any namespace [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:30.857: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename svcaccounts +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should guarantee kube-root-ca.crt exist in any namespace [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:39:30.875: INFO: Got root ca configmap in namespace "svcaccounts-7558" +Oct 26 04:39:30.878: INFO: Deleted root ca configmap in namespace "svcaccounts-7558" +STEP: waiting for a new root ca configmap created +Oct 26 04:39:31.382: INFO: Recreated root ca configmap in namespace "svcaccounts-7558" +Oct 26 04:39:31.386: INFO: Updated root ca configmap in namespace "svcaccounts-7558" +STEP: waiting for the root ca configmap reconciled +Oct 26 04:39:31.889: INFO: Reconciled root ca configmap in namespace "svcaccounts-7558" +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:188 +Oct 26 04:39:31.890: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "svcaccounts-7558" for this suite. +•{"msg":"PASSED [sig-auth] ServiceAccounts should guarantee kube-root-ca.crt exist in any namespace [Conformance]","total":356,"completed":41,"skipped":685,"failed":0} +SSSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should allow substituting values in a container's args [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:31.915: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename var-expansion +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should allow substituting values in a container's args [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test substitution in container's args +Oct 26 04:39:31.976: INFO: Waiting up to 5m0s for pod "var-expansion-9bc72eb2-e41e-4f17-aee5-3e781b35ae9a" in namespace "var-expansion-6937" to be "Succeeded or Failed" +Oct 26 04:39:31.981: INFO: Pod "var-expansion-9bc72eb2-e41e-4f17-aee5-3e781b35ae9a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.121258ms +Oct 26 04:39:33.985: INFO: Pod "var-expansion-9bc72eb2-e41e-4f17-aee5-3e781b35ae9a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008719919s +Oct 26 04:39:35.993: INFO: Pod "var-expansion-9bc72eb2-e41e-4f17-aee5-3e781b35ae9a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.016991733s +Oct 26 04:39:37.999: INFO: Pod "var-expansion-9bc72eb2-e41e-4f17-aee5-3e781b35ae9a": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.022932205s +STEP: Saw pod success +Oct 26 04:39:37.999: INFO: Pod "var-expansion-9bc72eb2-e41e-4f17-aee5-3e781b35ae9a" satisfied condition "Succeeded or Failed" +Oct 26 04:39:38.001: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod var-expansion-9bc72eb2-e41e-4f17-aee5-3e781b35ae9a container dapi-container: +STEP: delete the pod +Oct 26 04:39:38.013: INFO: Waiting for pod var-expansion-9bc72eb2-e41e-4f17-aee5-3e781b35ae9a to disappear +Oct 26 04:39:38.015: INFO: Pod var-expansion-9bc72eb2-e41e-4f17-aee5-3e781b35ae9a no longer exists +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:188 +Oct 26 04:39:38.015: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "var-expansion-6937" for this suite. + +• [SLOW TEST:6.106 seconds] +[sig-node] Variable Expansion +test/e2e/common/node/framework.go:23 + should allow substituting values in a container's args [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Variable Expansion should allow substituting values in a container's args [NodeConformance] [Conformance]","total":356,"completed":42,"skipped":694,"failed":0} +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl api-versions + should check if v1 is in available api versions [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:38.021: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[It] should check if v1 is in available api versions [Conformance] + test/e2e/framework/framework.go:652 +STEP: validating api versions +Oct 26 04:39:38.038: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6624 api-versions' +Oct 26 04:39:38.116: INFO: stderr: "" +Oct 26 04:39:38.116: INFO: stdout: "admissionregistration.k8s.io/v1\napiextensions.k8s.io/v1\napiregistration.k8s.io/v1\napps/v1\nauthentication.k8s.io/v1\nauthorization.k8s.io/v1\nautoscaling/v1\nautoscaling/v2\nautoscaling/v2beta1\nautoscaling/v2beta2\nbatch/v1\nbatch/v1beta1\ncertificates.k8s.io/v1\ncilium.io/v2\ncoordination.k8s.io/v1\ndiscovery.k8s.io/v1\ndiscovery.k8s.io/v1beta1\nevents.k8s.io/v1\nevents.k8s.io/v1beta1\nflowcontrol.apiserver.k8s.io/v1beta1\nflowcontrol.apiserver.k8s.io/v1beta2\niamauthenticator.k8s.aws/v1alpha1\nmetrics.k8s.io/v1beta1\nnetworking.k8s.io/v1\nnode.k8s.io/v1\nnode.k8s.io/v1beta1\npolicy/v1\npolicy/v1beta1\nrbac.authorization.k8s.io/v1\nscheduling.k8s.io/v1\nstorage.k8s.io/v1\nstorage.k8s.io/v1beta1\nv1\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 04:39:38.116: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-6624" for this suite. +•{"msg":"PASSED [sig-cli] Kubectl client Kubectl api-versions should check if v1 is in available api versions [Conformance]","total":356,"completed":43,"skipped":714,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should list and delete a collection of DaemonSets [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:38.124: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename daemonsets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:145 +[It] should list and delete a collection of DaemonSets [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating simple DaemonSet "daemon-set" +STEP: Check that daemon pods launch on every node of the cluster. +Oct 26 04:39:38.158: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:39:38.161: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 04:39:38.161: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 04:39:39.168: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:39:39.171: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 04:39:39.171: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 04:39:40.170: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:39:40.173: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Oct 26 04:39:40.173: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +STEP: listing all DeamonSets +STEP: DeleteCollection of the DaemonSets +STEP: Verify that ReplicaSets have been deleted +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:110 +Oct 26 04:39:40.228: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"5557"},"items":null} + +Oct 26 04:39:40.232: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"5557"},"items":[{"metadata":{"name":"daemon-set-2tgkh","generateName":"daemon-set-","namespace":"daemonsets-7705","uid":"4f39fd6f-a8be-42e0-8ebf-01bcdf780103","resourceVersion":"5552","creationTimestamp":"2022-10-26T04:39:38Z","labels":{"controller-revision-hash":"6df8db488c","daemonset-name":"daemon-set","pod-template-generation":"1"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"DaemonSet","name":"daemon-set","uid":"18ae7933-da00-4af3-8043-411e52cc8fa1","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2022-10-26T04:39:38Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:controller-revision-hash":{},"f:daemonset-name":{},"f:pod-template-generation":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"18ae7933-da00-4af3-8043-411e52cc8fa1\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:nodeAffinity":{".":{},"f:requiredDuringSchedulingIgnoredDuringExecution":{}}},"f:containers":{"k:{\"name\":\"app\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:ports":{".":{},"k:{\"containerPort\":9376,\"protocol\":\"TCP\"}":{".":{},"f:containerPort":{},"f:protocol":{}}},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{},"f:tolerations":{}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2022-10-26T04:39:39Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.3.223\"}":{".":{},"f:ip":{}}},"f:startTime":{}}},"subresource":"status"}]},"spec":{"volumes":[{"name":"kube-api-access-xh5p5","projected":{"sources":[{"serviceAccountToken":{"expirationSeconds":3607,"path":"token"}},{"configMap":{"name":"kube-root-ca.crt","items":[{"key":"ca.crt","path":"ca.crt"}]}},{"downwardAPI":{"items":[{"path":"namespace","fieldRef":{"apiVersion":"v1","fieldPath":"metadata.namespace"}}]}}],"defaultMode":420}}],"containers":[{"name":"app","image":"k8s.gcr.io/e2e-test-images/httpd:2.4.38-2","ports":[{"containerPort":9376,"protocol":"TCP"}],"resources":{},"volumeMounts":[{"name":"kube-api-access-xh5p5","readOnly":true,"mountPath":"/var/run/secrets/kubernetes.io/serviceaccount"}],"terminationMessagePath":"/dev/termination-log","terminationMessagePolicy":"File","imagePullPolicy":"IfNotPresent","securityContext":{}}],"restartPolicy":"Always","terminationGracePeriodSeconds":30,"dnsPolicy":"ClusterFirst","serviceAccountName":"default","serviceAccount":"default","nodeName":"i-0ac1bb196421f13a1","securityContext":{},"affinity":{"nodeAffinity":{"requiredDuringSchedulingIgnoredDuringExecution":{"nodeSelectorTerms":[{"matchFields":[{"key":"metadata.name","operator":"In","values":["i-0ac1bb196421f13a1"]}]}]}}},"schedulerName":"default-scheduler","tolerations":[{"key":"node.kubernetes.io/not-ready","operator":"Exists","effect":"NoExecute"},{"key":"node.kubernetes.io/unreachable","operator":"Exists","effect":"NoExecute"},{"key":"node.kubernetes.io/disk-pressure","operator":"Exists","effect":"NoSchedule"},{"key":"node.kubernetes.io/memory-pressure","operator":"Exists","effect":"NoSchedule"},{"key":"node.kubernetes.io/pid-pressure","operator":"Exists","effect":"NoSchedule"},{"key":"node.kubernetes.io/unschedulable","operator":"Exists","effect":"NoSchedule"}],"priority":0,"enableServiceLinks":true,"preemptionPolicy":"PreemptLowerPriority"},"status":{"phase":"Running","conditions":[{"type":"Initialized","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:38Z"},{"type":"Ready","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:39Z"},{"type":"ContainersReady","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:39Z"},{"type":"PodScheduled","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:38Z"}],"hostIP":"172.20.86.64","podIP":"100.96.3.223","podIPs":[{"ip":"100.96.3.223"}],"startTime":"2022-10-26T04:39:38Z","containerStatuses":[{"name":"app","state":{"running":{"startedAt":"2022-10-26T04:39:39Z"}},"lastState":{},"ready":true,"restartCount":0,"image":"k8s.gcr.io/e2e-test-images/httpd:2.4.38-2","imageID":"k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3","containerID":"containerd://185403ce8b558fe3dcc69120fbc4e3eb7d82f7af903afb799c321ae324a769fe","started":true}],"qosClass":"BestEffort"}},{"metadata":{"name":"daemon-set-5mdsx","generateName":"daemon-set-","namespace":"daemonsets-7705","uid":"a728f7e1-c236-4843-a723-5d39f5ca7c2c","resourceVersion":"5550","creationTimestamp":"2022-10-26T04:39:38Z","labels":{"controller-revision-hash":"6df8db488c","daemonset-name":"daemon-set","pod-template-generation":"1"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"DaemonSet","name":"daemon-set","uid":"18ae7933-da00-4af3-8043-411e52cc8fa1","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2022-10-26T04:39:38Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:controller-revision-hash":{},"f:daemonset-name":{},"f:pod-template-generation":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"18ae7933-da00-4af3-8043-411e52cc8fa1\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:nodeAffinity":{".":{},"f:requiredDuringSchedulingIgnoredDuringExecution":{}}},"f:containers":{"k:{\"name\":\"app\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:ports":{".":{},"k:{\"containerPort\":9376,\"protocol\":\"TCP\"}":{".":{},"f:containerPort":{},"f:protocol":{}}},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{},"f:tolerations":{}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2022-10-26T04:39:39Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.1.4\"}":{".":{},"f:ip":{}}},"f:startTime":{}}},"subresource":"status"}]},"spec":{"volumes":[{"name":"kube-api-access-7fjkk","projected":{"sources":[{"serviceAccountToken":{"expirationSeconds":3607,"path":"token"}},{"configMap":{"name":"kube-root-ca.crt","items":[{"key":"ca.crt","path":"ca.crt"}]}},{"downwardAPI":{"items":[{"path":"namespace","fieldRef":{"apiVersion":"v1","fieldPath":"metadata.namespace"}}]}}],"defaultMode":420}}],"containers":[{"name":"app","image":"k8s.gcr.io/e2e-test-images/httpd:2.4.38-2","ports":[{"containerPort":9376,"protocol":"TCP"}],"resources":{},"volumeMounts":[{"name":"kube-api-access-7fjkk","readOnly":true,"mountPath":"/var/run/secrets/kubernetes.io/serviceaccount"}],"terminationMessagePath":"/dev/termination-log","terminationMessagePolicy":"File","imagePullPolicy":"IfNotPresent","securityContext":{}}],"restartPolicy":"Always","terminationGracePeriodSeconds":30,"dnsPolicy":"ClusterFirst","serviceAccountName":"default","serviceAccount":"default","nodeName":"i-098fc8365626c8e13","securityContext":{},"affinity":{"nodeAffinity":{"requiredDuringSchedulingIgnoredDuringExecution":{"nodeSelectorTerms":[{"matchFields":[{"key":"metadata.name","operator":"In","values":["i-098fc8365626c8e13"]}]}]}}},"schedulerName":"default-scheduler","tolerations":[{"key":"node.kubernetes.io/not-ready","operator":"Exists","effect":"NoExecute"},{"key":"node.kubernetes.io/unreachable","operator":"Exists","effect":"NoExecute"},{"key":"node.kubernetes.io/disk-pressure","operator":"Exists","effect":"NoSchedule"},{"key":"node.kubernetes.io/memory-pressure","operator":"Exists","effect":"NoSchedule"},{"key":"node.kubernetes.io/pid-pressure","operator":"Exists","effect":"NoSchedule"},{"key":"node.kubernetes.io/unschedulable","operator":"Exists","effect":"NoSchedule"}],"priority":0,"enableServiceLinks":true,"preemptionPolicy":"PreemptLowerPriority"},"status":{"phase":"Running","conditions":[{"type":"Initialized","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:38Z"},{"type":"Ready","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:39Z"},{"type":"ContainersReady","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:39Z"},{"type":"PodScheduled","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:38Z"}],"hostIP":"172.20.54.156","podIP":"100.96.1.4","podIPs":[{"ip":"100.96.1.4"}],"startTime":"2022-10-26T04:39:38Z","containerStatuses":[{"name":"app","state":{"running":{"startedAt":"2022-10-26T04:39:39Z"}},"lastState":{},"ready":true,"restartCount":0,"image":"k8s.gcr.io/e2e-test-images/httpd:2.4.38-2","imageID":"k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3","containerID":"containerd://116f253aa9c990e3d318c7f9e60070f0f7e2b5139333fc4b6573efc770a939f8","started":true}],"qosClass":"BestEffort"}},{"metadata":{"name":"daemon-set-sgn5p","generateName":"daemon-set-","namespace":"daemonsets-7705","uid":"18f160d4-51f3-4ade-8e32-212a9b0fb7da","resourceVersion":"5555","creationTimestamp":"2022-10-26T04:39:38Z","labels":{"controller-revision-hash":"6df8db488c","daemonset-name":"daemon-set","pod-template-generation":"1"},"ownerReferences":[{"apiVersion":"apps/v1","kind":"DaemonSet","name":"daemon-set","uid":"18ae7933-da00-4af3-8043-411e52cc8fa1","controller":true,"blockOwnerDeletion":true}],"managedFields":[{"manager":"kube-controller-manager","operation":"Update","apiVersion":"v1","time":"2022-10-26T04:39:38Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:controller-revision-hash":{},"f:daemonset-name":{},"f:pod-template-generation":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"18ae7933-da00-4af3-8043-411e52cc8fa1\"}":{}}},"f:spec":{"f:affinity":{".":{},"f:nodeAffinity":{".":{},"f:requiredDuringSchedulingIgnoredDuringExecution":{}}},"f:containers":{"k:{\"name\":\"app\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:ports":{".":{},"k:{\"containerPort\":9376,\"protocol\":\"TCP\"}":{".":{},"f:containerPort":{},"f:protocol":{}}},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{},"f:tolerations":{}}}},{"manager":"kubelet","operation":"Update","apiVersion":"v1","time":"2022-10-26T04:39:40Z","fieldsType":"FieldsV1","fieldsV1":{"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.2.231\"}":{".":{},"f:ip":{}}},"f:startTime":{}}},"subresource":"status"}]},"spec":{"volumes":[{"name":"kube-api-access-dj4z5","projected":{"sources":[{"serviceAccountToken":{"expirationSeconds":3607,"path":"token"}},{"configMap":{"name":"kube-root-ca.crt","items":[{"key":"ca.crt","path":"ca.crt"}]}},{"downwardAPI":{"items":[{"path":"namespace","fieldRef":{"apiVersion":"v1","fieldPath":"metadata.namespace"}}]}}],"defaultMode":420}}],"containers":[{"name":"app","image":"k8s.gcr.io/e2e-test-images/httpd:2.4.38-2","ports":[{"containerPort":9376,"protocol":"TCP"}],"resources":{},"volumeMounts":[{"name":"kube-api-access-dj4z5","readOnly":true,"mountPath":"/var/run/secrets/kubernetes.io/serviceaccount"}],"terminationMessagePath":"/dev/termination-log","terminationMessagePolicy":"File","imagePullPolicy":"IfNotPresent","securityContext":{}}],"restartPolicy":"Always","terminationGracePeriodSeconds":30,"dnsPolicy":"ClusterFirst","serviceAccountName":"default","serviceAccount":"default","nodeName":"i-066ef2cf0d4227da4","securityContext":{},"affinity":{"nodeAffinity":{"requiredDuringSchedulingIgnoredDuringExecution":{"nodeSelectorTerms":[{"matchFields":[{"key":"metadata.name","operator":"In","values":["i-066ef2cf0d4227da4"]}]}]}}},"schedulerName":"default-scheduler","tolerations":[{"key":"node.kubernetes.io/not-ready","operator":"Exists","effect":"NoExecute"},{"key":"node.kubernetes.io/unreachable","operator":"Exists","effect":"NoExecute"},{"key":"node.kubernetes.io/disk-pressure","operator":"Exists","effect":"NoSchedule"},{"key":"node.kubernetes.io/memory-pressure","operator":"Exists","effect":"NoSchedule"},{"key":"node.kubernetes.io/pid-pressure","operator":"Exists","effect":"NoSchedule"},{"key":"node.kubernetes.io/unschedulable","operator":"Exists","effect":"NoSchedule"}],"priority":0,"enableServiceLinks":true,"preemptionPolicy":"PreemptLowerPriority"},"status":{"phase":"Running","conditions":[{"type":"Initialized","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:38Z"},{"type":"Ready","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:40Z"},{"type":"ContainersReady","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:40Z"},{"type":"PodScheduled","status":"True","lastProbeTime":null,"lastTransitionTime":"2022-10-26T04:39:38Z"}],"hostIP":"172.20.115.72","podIP":"100.96.2.231","podIPs":[{"ip":"100.96.2.231"}],"startTime":"2022-10-26T04:39:38Z","containerStatuses":[{"name":"app","state":{"running":{"startedAt":"2022-10-26T04:39:39Z"}},"lastState":{},"ready":true,"restartCount":0,"image":"k8s.gcr.io/e2e-test-images/httpd:2.4.38-2","imageID":"k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3","containerID":"containerd://a43e1754831dec225e96685b4b810b9b4f6206c994623b8b891a2cf50d57d8de","started":true}],"qosClass":"BestEffort"}}]} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:188 +Oct 26 04:39:40.259: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "daemonsets-7705" for this suite. +•{"msg":"PASSED [sig-apps] Daemon set [Serial] should list and delete a collection of DaemonSets [Conformance]","total":356,"completed":44,"skipped":729,"failed":0} +SSSSSSSS +------------------------------ +[sig-storage] Projected configMap + updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:40.276: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating projection with configMap that has name projected-configmap-test-upd-0b75f169-b800-4050-b9d3-97015683de8a +STEP: Creating the pod +Oct 26 04:39:40.326: INFO: The status of Pod pod-projected-configmaps-2cd40c72-cf38-44da-8bf9-84f4dd258224 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:39:42.333: INFO: The status of Pod pod-projected-configmaps-2cd40c72-cf38-44da-8bf9-84f4dd258224 is Running (Ready = true) +STEP: Updating configmap projected-configmap-test-upd-0b75f169-b800-4050-b9d3-97015683de8a +STEP: waiting to observe update in volume +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:188 +Oct 26 04:39:44.354: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-4804" for this suite. +•{"msg":"PASSED [sig-storage] Projected configMap updates should be reflected in volume [NodeConformance] [Conformance]","total":356,"completed":45,"skipped":737,"failed":0} +SSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Downward API + should provide container's limits.cpu/memory and requests.cpu/memory as env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Downward API + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:44.368: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should provide container's limits.cpu/memory and requests.cpu/memory as env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward api env vars +Oct 26 04:39:44.399: INFO: Waiting up to 5m0s for pod "downward-api-657b1987-3c57-401a-8094-039719bc528e" in namespace "downward-api-1831" to be "Succeeded or Failed" +Oct 26 04:39:44.403: INFO: Pod "downward-api-657b1987-3c57-401a-8094-039719bc528e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.291578ms +Oct 26 04:39:46.411: INFO: Pod "downward-api-657b1987-3c57-401a-8094-039719bc528e": Phase="Pending", Reason="", readiness=false. Elapsed: 2.01148153s +Oct 26 04:39:48.417: INFO: Pod "downward-api-657b1987-3c57-401a-8094-039719bc528e": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.017949467s +STEP: Saw pod success +Oct 26 04:39:48.417: INFO: Pod "downward-api-657b1987-3c57-401a-8094-039719bc528e" satisfied condition "Succeeded or Failed" +Oct 26 04:39:48.422: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downward-api-657b1987-3c57-401a-8094-039719bc528e container dapi-container: +STEP: delete the pod +Oct 26 04:39:48.449: INFO: Waiting for pod downward-api-657b1987-3c57-401a-8094-039719bc528e to disappear +Oct 26 04:39:48.457: INFO: Pod downward-api-657b1987-3c57-401a-8094-039719bc528e no longer exists +[AfterEach] [sig-node] Downward API + test/e2e/framework/framework.go:188 +Oct 26 04:39:48.457: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-1831" for this suite. +•{"msg":"PASSED [sig-node] Downward API should provide container's limits.cpu/memory and requests.cpu/memory as env vars [NodeConformance] [Conformance]","total":356,"completed":46,"skipped":753,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should provide container's memory request [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:48.475: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:43 +[It] should provide container's memory request [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 04:39:48.538: INFO: Waiting up to 5m0s for pod "downwardapi-volume-e3b11a87-34bd-472a-be44-8b92269245f4" in namespace "downward-api-7775" to be "Succeeded or Failed" +Oct 26 04:39:48.555: INFO: Pod "downwardapi-volume-e3b11a87-34bd-472a-be44-8b92269245f4": Phase="Pending", Reason="", readiness=false. Elapsed: 16.530444ms +Oct 26 04:39:50.560: INFO: Pod "downwardapi-volume-e3b11a87-34bd-472a-be44-8b92269245f4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.021760503s +Oct 26 04:39:52.565: INFO: Pod "downwardapi-volume-e3b11a87-34bd-472a-be44-8b92269245f4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.026316704s +Oct 26 04:39:54.568: INFO: Pod "downwardapi-volume-e3b11a87-34bd-472a-be44-8b92269245f4": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.030026429s +STEP: Saw pod success +Oct 26 04:39:54.568: INFO: Pod "downwardapi-volume-e3b11a87-34bd-472a-be44-8b92269245f4" satisfied condition "Succeeded or Failed" +Oct 26 04:39:54.570: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-e3b11a87-34bd-472a-be44-8b92269245f4 container client-container: +STEP: delete the pod +Oct 26 04:39:54.583: INFO: Waiting for pod downwardapi-volume-e3b11a87-34bd-472a-be44-8b92269245f4 to disappear +Oct 26 04:39:54.585: INFO: Pod downwardapi-volume-e3b11a87-34bd-472a-be44-8b92269245f4 no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:188 +Oct 26 04:39:54.585: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-7775" for this suite. + +• [SLOW TEST:6.117 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should provide container's memory request [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Downward API volume should provide container's memory request [NodeConformance] [Conformance]","total":356,"completed":47,"skipped":801,"failed":0} +SSSS +------------------------------ +[sig-network] Services + should serve a basic endpoint from pods [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:39:54.599: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should serve a basic endpoint from pods [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating service endpoint-test2 in namespace services-893 +STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-893 to expose endpoints map[] +Oct 26 04:39:54.628: INFO: Failed go get Endpoints object: endpoints "endpoint-test2" not found +Oct 26 04:39:55.639: INFO: successfully validated that service endpoint-test2 in namespace services-893 exposes endpoints map[] +STEP: Creating pod pod1 in namespace services-893 +Oct 26 04:39:55.649: INFO: The status of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:39:57.653: INFO: The status of Pod pod1 is Running (Ready = true) +STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-893 to expose endpoints map[pod1:[80]] +Oct 26 04:39:57.661: INFO: successfully validated that service endpoint-test2 in namespace services-893 exposes endpoints map[pod1:[80]] +STEP: Checking if the Service forwards traffic to pod1 +Oct 26 04:39:57.661: INFO: Creating new exec pod +Oct 26 04:40:00.686: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-893 exec execpodmrllb -- /bin/sh -x -c echo hostName | nc -v -t -w 2 endpoint-test2 80' +Oct 26 04:40:00.832: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 endpoint-test2 80\nConnection to endpoint-test2 80 port [tcp/http] succeeded!\n" +Oct 26 04:40:00.832: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 04:40:00.832: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-893 exec execpodmrllb -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.69.232.241 80' +Oct 26 04:40:00.970: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.69.232.241 80\nConnection to 100.69.232.241 80 port [tcp/http] succeeded!\n" +Oct 26 04:40:00.970: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +STEP: Creating pod pod2 in namespace services-893 +Oct 26 04:40:00.978: INFO: The status of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:40:02.982: INFO: The status of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:40:04.990: INFO: The status of Pod pod2 is Running (Ready = true) +STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-893 to expose endpoints map[pod1:[80] pod2:[80]] +Oct 26 04:40:05.045: INFO: successfully validated that service endpoint-test2 in namespace services-893 exposes endpoints map[pod1:[80] pod2:[80]] +STEP: Checking if the Service forwards traffic to pod1 and pod2 +Oct 26 04:40:06.046: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-893 exec execpodmrllb -- /bin/sh -x -c echo hostName | nc -v -t -w 2 endpoint-test2 80' +Oct 26 04:40:06.254: INFO: stderr: "+ nc -v+ echo hostName\n -t -w 2 endpoint-test2 80\nConnection to endpoint-test2 80 port [tcp/http] succeeded!\n" +Oct 26 04:40:06.254: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 04:40:06.254: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-893 exec execpodmrllb -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.69.232.241 80' +Oct 26 04:40:06.411: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.69.232.241 80\nConnection to 100.69.232.241 80 port [tcp/http] succeeded!\n" +Oct 26 04:40:06.411: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +STEP: Deleting pod pod1 in namespace services-893 +STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-893 to expose endpoints map[pod2:[80]] +Oct 26 04:40:07.446: INFO: successfully validated that service endpoint-test2 in namespace services-893 exposes endpoints map[pod2:[80]] +STEP: Checking if the Service forwards traffic to pod2 +Oct 26 04:40:08.447: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-893 exec execpodmrllb -- /bin/sh -x -c echo hostName | nc -v -t -w 2 endpoint-test2 80' +Oct 26 04:40:08.598: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 endpoint-test2 80\nConnection to endpoint-test2 80 port [tcp/http] succeeded!\n" +Oct 26 04:40:08.598: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 04:40:08.598: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-893 exec execpodmrllb -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.69.232.241 80' +Oct 26 04:40:08.733: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.69.232.241 80\nConnection to 100.69.232.241 80 port [tcp/http] succeeded!\n" +Oct 26 04:40:08.733: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +STEP: Deleting pod pod2 in namespace services-893 +STEP: waiting up to 3m0s for service endpoint-test2 in namespace services-893 to expose endpoints map[] +Oct 26 04:40:08.775: INFO: successfully validated that service endpoint-test2 in namespace services-893 exposes endpoints map[] +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 04:40:08.813: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-893" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:14.231 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should serve a basic endpoint from pods [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should serve a basic endpoint from pods [Conformance]","total":356,"completed":48,"skipped":805,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-node] Security Context When creating a pod with readOnlyRootFilesystem + should run the container with writable rootfs when readOnlyRootFilesystem=false [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:40:08.833: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename security-context-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:48 +[It] should run the container with writable rootfs when readOnlyRootFilesystem=false [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:40:08.895: INFO: Waiting up to 5m0s for pod "busybox-readonly-false-020435fd-227a-40ed-b1e1-0e3661fd9a95" in namespace "security-context-test-7687" to be "Succeeded or Failed" +Oct 26 04:40:08.936: INFO: Pod "busybox-readonly-false-020435fd-227a-40ed-b1e1-0e3661fd9a95": Phase="Pending", Reason="", readiness=false. Elapsed: 40.600696ms +Oct 26 04:40:10.940: INFO: Pod "busybox-readonly-false-020435fd-227a-40ed-b1e1-0e3661fd9a95": Phase="Pending", Reason="", readiness=false. Elapsed: 2.044760077s +Oct 26 04:40:12.946: INFO: Pod "busybox-readonly-false-020435fd-227a-40ed-b1e1-0e3661fd9a95": Phase="Pending", Reason="", readiness=false. Elapsed: 4.050208774s +Oct 26 04:40:14.951: INFO: Pod "busybox-readonly-false-020435fd-227a-40ed-b1e1-0e3661fd9a95": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.055473662s +Oct 26 04:40:14.951: INFO: Pod "busybox-readonly-false-020435fd-227a-40ed-b1e1-0e3661fd9a95" satisfied condition "Succeeded or Failed" +[AfterEach] [sig-node] Security Context + test/e2e/framework/framework.go:188 +Oct 26 04:40:14.951: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "security-context-test-7687" for this suite. + +• [SLOW TEST:6.125 seconds] +[sig-node] Security Context +test/e2e/common/node/framework.go:23 + When creating a pod with readOnlyRootFilesystem + test/e2e/common/node/security_context.go:173 + should run the container with writable rootfs when readOnlyRootFilesystem=false [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Security Context When creating a pod with readOnlyRootFilesystem should run the container with writable rootfs when readOnlyRootFilesystem=false [NodeConformance] [Conformance]","total":356,"completed":49,"skipped":816,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] KubeletManagedEtcHosts + should test kubelet managed /etc/hosts file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] KubeletManagedEtcHosts + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:40:14.961: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename e2e-kubelet-etc-hosts +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should test kubelet managed /etc/hosts file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Setting up the test +STEP: Creating hostNetwork=false pod +Oct 26 04:40:15.009: INFO: The status of Pod test-pod is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:40:17.018: INFO: The status of Pod test-pod is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:40:19.018: INFO: The status of Pod test-pod is Running (Ready = true) +STEP: Creating hostNetwork=true pod +Oct 26 04:40:19.029: INFO: The status of Pod test-host-network-pod is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:40:21.033: INFO: The status of Pod test-host-network-pod is Running (Ready = true) +STEP: Running the test +STEP: Verifying /etc/hosts of container is kubelet-managed for pod with hostNetwork=false +Oct 26 04:40:21.035: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-482 PodName:test-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:40:21.035: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:40:21.036: INFO: ExecWithOptions: Clientset creation +Oct 26 04:40:21.036: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-482/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-1&container=busybox-1&stderr=true&stdout=true) +Oct 26 04:40:21.100: INFO: Exec stderr: "" +Oct 26 04:40:21.100: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-482 PodName:test-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:40:21.100: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:40:21.101: INFO: ExecWithOptions: Clientset creation +Oct 26 04:40:21.101: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-482/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-1&container=busybox-1&stderr=true&stdout=true) +Oct 26 04:40:21.165: INFO: Exec stderr: "" +Oct 26 04:40:21.166: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-482 PodName:test-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:40:21.166: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:40:21.166: INFO: ExecWithOptions: Clientset creation +Oct 26 04:40:21.166: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-482/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-2&container=busybox-2&stderr=true&stdout=true) +Oct 26 04:40:21.231: INFO: Exec stderr: "" +Oct 26 04:40:21.231: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-482 PodName:test-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:40:21.231: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:40:21.232: INFO: ExecWithOptions: Clientset creation +Oct 26 04:40:21.232: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-482/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-2&container=busybox-2&stderr=true&stdout=true) +Oct 26 04:40:21.304: INFO: Exec stderr: "" +STEP: Verifying /etc/hosts of container is not kubelet-managed since container specifies /etc/hosts mount +Oct 26 04:40:21.304: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-482 PodName:test-pod ContainerName:busybox-3 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:40:21.304: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:40:21.305: INFO: ExecWithOptions: Clientset creation +Oct 26 04:40:21.305: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-482/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-3&container=busybox-3&stderr=true&stdout=true) +Oct 26 04:40:21.372: INFO: Exec stderr: "" +Oct 26 04:40:21.372: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-482 PodName:test-pod ContainerName:busybox-3 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:40:21.372: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:40:21.373: INFO: ExecWithOptions: Clientset creation +Oct 26 04:40:21.373: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-482/pods/test-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-3&container=busybox-3&stderr=true&stdout=true) +Oct 26 04:40:21.439: INFO: Exec stderr: "" +STEP: Verifying /etc/hosts content of container is not kubelet-managed for pod with hostNetwork=true +Oct 26 04:40:21.439: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-482 PodName:test-host-network-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:40:21.439: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:40:21.440: INFO: ExecWithOptions: Clientset creation +Oct 26 04:40:21.441: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-482/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-1&container=busybox-1&stderr=true&stdout=true) +Oct 26 04:40:21.503: INFO: Exec stderr: "" +Oct 26 04:40:21.503: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-482 PodName:test-host-network-pod ContainerName:busybox-1 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:40:21.503: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:40:21.503: INFO: ExecWithOptions: Clientset creation +Oct 26 04:40:21.504: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-482/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-1&container=busybox-1&stderr=true&stdout=true) +Oct 26 04:40:21.568: INFO: Exec stderr: "" +Oct 26 04:40:21.568: INFO: ExecWithOptions {Command:[cat /etc/hosts] Namespace:e2e-kubelet-etc-hosts-482 PodName:test-host-network-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:40:21.568: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:40:21.568: INFO: ExecWithOptions: Clientset creation +Oct 26 04:40:21.569: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-482/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts&container=busybox-2&container=busybox-2&stderr=true&stdout=true) +Oct 26 04:40:21.635: INFO: Exec stderr: "" +Oct 26 04:40:21.635: INFO: ExecWithOptions {Command:[cat /etc/hosts-original] Namespace:e2e-kubelet-etc-hosts-482 PodName:test-host-network-pod ContainerName:busybox-2 Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:40:21.635: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:40:21.636: INFO: ExecWithOptions: Clientset creation +Oct 26 04:40:21.636: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/e2e-kubelet-etc-hosts-482/pods/test-host-network-pod/exec?command=cat&command=%2Fetc%2Fhosts-original&container=busybox-2&container=busybox-2&stderr=true&stdout=true) +Oct 26 04:40:21.703: INFO: Exec stderr: "" +[AfterEach] [sig-node] KubeletManagedEtcHosts + test/e2e/framework/framework.go:188 +Oct 26 04:40:21.703: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "e2e-kubelet-etc-hosts-482" for this suite. + +• [SLOW TEST:6.752 seconds] +[sig-node] KubeletManagedEtcHosts +test/e2e/common/node/framework.go:23 + should test kubelet managed /etc/hosts file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] KubeletManagedEtcHosts should test kubelet managed /etc/hosts file [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":50,"skipped":842,"failed":0} +SSSSSS +------------------------------ +[sig-storage] Projected secret + should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:40:21.715: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating projection with secret that has name projected-secret-test-cee2fea2-bf4b-4fb5-b3d3-64107873cee3 +STEP: Creating a pod to test consume secrets +Oct 26 04:40:21.737: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-cb8be5d0-f156-4b9f-bcd1-a1f6a60850e2" in namespace "projected-3568" to be "Succeeded or Failed" +Oct 26 04:40:21.742: INFO: Pod "pod-projected-secrets-cb8be5d0-f156-4b9f-bcd1-a1f6a60850e2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.195446ms +Oct 26 04:40:23.748: INFO: Pod "pod-projected-secrets-cb8be5d0-f156-4b9f-bcd1-a1f6a60850e2": Phase="Running", Reason="", readiness=true. Elapsed: 2.010405795s +Oct 26 04:40:25.754: INFO: Pod "pod-projected-secrets-cb8be5d0-f156-4b9f-bcd1-a1f6a60850e2": Phase="Running", Reason="", readiness=false. Elapsed: 4.016707768s +Oct 26 04:40:27.757: INFO: Pod "pod-projected-secrets-cb8be5d0-f156-4b9f-bcd1-a1f6a60850e2": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.020039183s +STEP: Saw pod success +Oct 26 04:40:27.758: INFO: Pod "pod-projected-secrets-cb8be5d0-f156-4b9f-bcd1-a1f6a60850e2" satisfied condition "Succeeded or Failed" +Oct 26 04:40:27.759: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-projected-secrets-cb8be5d0-f156-4b9f-bcd1-a1f6a60850e2 container projected-secret-volume-test: +STEP: delete the pod +Oct 26 04:40:27.769: INFO: Waiting for pod pod-projected-secrets-cb8be5d0-f156-4b9f-bcd1-a1f6a60850e2 to disappear +Oct 26 04:40:27.772: INFO: Pod pod-projected-secrets-cb8be5d0-f156-4b9f-bcd1-a1f6a60850e2 no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:188 +Oct 26 04:40:27.772: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-3568" for this suite. + +• [SLOW TEST:6.062 seconds] +[sig-storage] Projected secret +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected secret should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":51,"skipped":848,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should be able to update and delete ResourceQuota. [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:40:27.779: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename resourcequota +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be able to update and delete ResourceQuota. [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a ResourceQuota +STEP: Getting a ResourceQuota +STEP: Updating a ResourceQuota +STEP: Verifying a ResourceQuota was modified +STEP: Deleting a ResourceQuota +STEP: Verifying the deleted ResourceQuota +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:188 +Oct 26 04:40:27.815: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "resourcequota-6237" for this suite. +•{"msg":"PASSED [sig-api-machinery] ResourceQuota should be able to update and delete ResourceQuota. [Conformance]","total":356,"completed":52,"skipped":921,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:40:27.825: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name configmap-test-volume-map-81c49d2b-d8e7-47da-a9d9-ea2703d6199b +STEP: Creating a pod to test consume configMaps +Oct 26 04:40:27.846: INFO: Waiting up to 5m0s for pod "pod-configmaps-30790ab5-64ed-4299-909b-006fc032ba76" in namespace "configmap-9417" to be "Succeeded or Failed" +Oct 26 04:40:27.849: INFO: Pod "pod-configmaps-30790ab5-64ed-4299-909b-006fc032ba76": Phase="Pending", Reason="", readiness=false. Elapsed: 2.430222ms +Oct 26 04:40:29.854: INFO: Pod "pod-configmaps-30790ab5-64ed-4299-909b-006fc032ba76": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007044126s +Oct 26 04:40:31.861: INFO: Pod "pod-configmaps-30790ab5-64ed-4299-909b-006fc032ba76": Phase="Pending", Reason="", readiness=false. Elapsed: 4.014665872s +Oct 26 04:40:33.867: INFO: Pod "pod-configmaps-30790ab5-64ed-4299-909b-006fc032ba76": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.020440761s +STEP: Saw pod success +Oct 26 04:40:33.867: INFO: Pod "pod-configmaps-30790ab5-64ed-4299-909b-006fc032ba76" satisfied condition "Succeeded or Failed" +Oct 26 04:40:33.869: INFO: Trying to get logs from node i-098fc8365626c8e13 pod pod-configmaps-30790ab5-64ed-4299-909b-006fc032ba76 container agnhost-container: +STEP: delete the pod +Oct 26 04:40:33.897: INFO: Waiting for pod pod-configmaps-30790ab5-64ed-4299-909b-006fc032ba76 to disappear +Oct 26 04:40:33.906: INFO: Pod pod-configmaps-30790ab5-64ed-4299-909b-006fc032ba76 no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 04:40:33.906: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-9417" for this suite. + +• [SLOW TEST:6.100 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] ConfigMap should be consumable from pods in volume with mappings [NodeConformance] [Conformance]","total":356,"completed":53,"skipped":993,"failed":0} +SSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:40:33.926: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0644 on tmpfs +Oct 26 04:40:33.962: INFO: Waiting up to 5m0s for pod "pod-a115effc-829b-40f2-b3a7-001ef56349a1" in namespace "emptydir-6758" to be "Succeeded or Failed" +Oct 26 04:40:33.967: INFO: Pod "pod-a115effc-829b-40f2-b3a7-001ef56349a1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.821669ms +Oct 26 04:40:35.976: INFO: Pod "pod-a115effc-829b-40f2-b3a7-001ef56349a1": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014303601s +Oct 26 04:40:37.980: INFO: Pod "pod-a115effc-829b-40f2-b3a7-001ef56349a1": Phase="Pending", Reason="", readiness=false. Elapsed: 4.018741739s +Oct 26 04:40:39.988: INFO: Pod "pod-a115effc-829b-40f2-b3a7-001ef56349a1": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.026047978s +STEP: Saw pod success +Oct 26 04:40:39.988: INFO: Pod "pod-a115effc-829b-40f2-b3a7-001ef56349a1" satisfied condition "Succeeded or Failed" +Oct 26 04:40:39.990: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-a115effc-829b-40f2-b3a7-001ef56349a1 container test-container: +STEP: delete the pod +Oct 26 04:40:40.007: INFO: Waiting for pod pod-a115effc-829b-40f2-b3a7-001ef56349a1 to disappear +Oct 26 04:40:40.010: INFO: Pod pod-a115effc-829b-40f2-b3a7-001ef56349a1 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 04:40:40.010: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-6758" for this suite. + +• [SLOW TEST:6.092 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] EmptyDir volumes should support (root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":54,"skipped":1015,"failed":0} +SSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (non-root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:40:40.020: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (non-root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0644 on node default medium +Oct 26 04:40:40.047: INFO: Waiting up to 5m0s for pod "pod-5d920425-29ce-4074-add1-7fee3f19d7f0" in namespace "emptydir-2598" to be "Succeeded or Failed" +Oct 26 04:40:40.053: INFO: Pod "pod-5d920425-29ce-4074-add1-7fee3f19d7f0": Phase="Pending", Reason="", readiness=false. Elapsed: 6.249367ms +Oct 26 04:40:42.061: INFO: Pod "pod-5d920425-29ce-4074-add1-7fee3f19d7f0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014416788s +Oct 26 04:40:44.066: INFO: Pod "pod-5d920425-29ce-4074-add1-7fee3f19d7f0": Phase="Pending", Reason="", readiness=false. Elapsed: 4.019065758s +Oct 26 04:40:46.074: INFO: Pod "pod-5d920425-29ce-4074-add1-7fee3f19d7f0": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.027064916s +STEP: Saw pod success +Oct 26 04:40:46.074: INFO: Pod "pod-5d920425-29ce-4074-add1-7fee3f19d7f0" satisfied condition "Succeeded or Failed" +Oct 26 04:40:46.077: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-5d920425-29ce-4074-add1-7fee3f19d7f0 container test-container: +STEP: delete the pod +Oct 26 04:40:46.093: INFO: Waiting for pod pod-5d920425-29ce-4074-add1-7fee3f19d7f0 to disappear +Oct 26 04:40:46.100: INFO: Pod pod-5d920425-29ce-4074-add1-7fee3f19d7f0 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 04:40:46.100: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-2598" for this suite. + +• [SLOW TEST:6.095 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (non-root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] EmptyDir volumes should support (non-root,0644,default) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":55,"skipped":1024,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] DisruptionController + should create a PodDisruptionBudget [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:40:46.115: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename disruption +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:71 +[It] should create a PodDisruptionBudget [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating the pdb +STEP: Waiting for the pdb to be processed +STEP: updating the pdb +STEP: Waiting for the pdb to be processed +STEP: patching the pdb +STEP: Waiting for the pdb to be processed +STEP: Waiting for the pdb to be deleted +[AfterEach] [sig-apps] DisruptionController + test/e2e/framework/framework.go:188 +Oct 26 04:40:46.184: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "disruption-1845" for this suite. +•{"msg":"PASSED [sig-apps] DisruptionController should create a PodDisruptionBudget [Conformance]","total":356,"completed":56,"skipped":1068,"failed":0} +SSSSSSSSS +------------------------------ +[sig-network] DNS + should resolve DNS of partial qualified names for services [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] DNS + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:40:46.192: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename dns +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should resolve DNS of partial qualified names for services [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a test headless service +STEP: Running these commands on wheezy: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search dns-test-service A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service;check="$$(dig +tcp +noall +answer +search dns-test-service A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service;check="$$(dig +notcp +noall +answer +search dns-test-service.dns-1281 A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service.dns-1281;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-1281 A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service.dns-1281;check="$$(dig +notcp +noall +answer +search dns-test-service.dns-1281.svc A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service.dns-1281.svc;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-1281.svc A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service.dns-1281.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-1281.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-1281.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-1281.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.test-service-2.dns-1281.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-1281.svc SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.test-service-2.dns-1281.svc;check="$$(dig +notcp +noall +answer +search 247.214.64.100.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/100.64.214.247_udp@PTR;check="$$(dig +tcp +noall +answer +search 247.214.64.100.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/100.64.214.247_tcp@PTR;sleep 1; done + +STEP: Running these commands on jessie: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search dns-test-service A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service;check="$$(dig +tcp +noall +answer +search dns-test-service A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service;check="$$(dig +notcp +noall +answer +search dns-test-service.dns-1281 A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service.dns-1281;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-1281 A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service.dns-1281;check="$$(dig +notcp +noall +answer +search dns-test-service.dns-1281.svc A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service.dns-1281.svc;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-1281.svc A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service.dns-1281.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-1281.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.dns-test-service.dns-1281.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-1281.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-1281.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.test-service-2.dns-1281.svc;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-1281.svc SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.test-service-2.dns-1281.svc;check="$$(dig +notcp +noall +answer +search 247.214.64.100.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/100.64.214.247_udp@PTR;check="$$(dig +tcp +noall +answer +search 247.214.64.100.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/100.64.214.247_tcp@PTR;sleep 1; done + +STEP: creating a pod to probe DNS +STEP: submitting the pod to kubernetes +STEP: retrieving the pod +STEP: looking for the results for each expected name from probers +Oct 26 04:40:50.259: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.261: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.265: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.267: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.269: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.271: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.273: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.275: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.286: INFO: Unable to read jessie_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.288: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.290: INFO: Unable to read jessie_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.298: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.300: INFO: Unable to read jessie_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.303: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.305: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.307: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:50.316: INFO: Lookups using dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-1281 wheezy_tcp@dns-test-service.dns-1281 wheezy_udp@dns-test-service.dns-1281.svc wheezy_tcp@dns-test-service.dns-1281.svc wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-1281 jessie_tcp@dns-test-service.dns-1281 jessie_udp@dns-test-service.dns-1281.svc jessie_tcp@dns-test-service.dns-1281.svc jessie_udp@_http._tcp.dns-test-service.dns-1281.svc jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc] + +Oct 26 04:40:55.322: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.325: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.328: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.331: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.333: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.335: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.337: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.340: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.351: INFO: Unable to read jessie_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.354: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.356: INFO: Unable to read jessie_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.359: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.361: INFO: Unable to read jessie_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.363: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.366: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.368: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:40:55.378: INFO: Lookups using dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-1281 wheezy_tcp@dns-test-service.dns-1281 wheezy_udp@dns-test-service.dns-1281.svc wheezy_tcp@dns-test-service.dns-1281.svc wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-1281 jessie_tcp@dns-test-service.dns-1281 jessie_udp@dns-test-service.dns-1281.svc jessie_tcp@dns-test-service.dns-1281.svc jessie_udp@_http._tcp.dns-test-service.dns-1281.svc jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc] + +Oct 26 04:41:00.321: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.323: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.326: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.328: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.336: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.339: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.346: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.348: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.359: INFO: Unable to read jessie_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.361: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.363: INFO: Unable to read jessie_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.365: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.367: INFO: Unable to read jessie_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.369: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.371: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.373: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:00.381: INFO: Lookups using dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-1281 wheezy_tcp@dns-test-service.dns-1281 wheezy_udp@dns-test-service.dns-1281.svc wheezy_tcp@dns-test-service.dns-1281.svc wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-1281 jessie_tcp@dns-test-service.dns-1281 jessie_udp@dns-test-service.dns-1281.svc jessie_tcp@dns-test-service.dns-1281.svc jessie_udp@_http._tcp.dns-test-service.dns-1281.svc jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc] + +Oct 26 04:41:05.325: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.328: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.331: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.333: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.337: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.339: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.341: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.343: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.354: INFO: Unable to read jessie_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.356: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.358: INFO: Unable to read jessie_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.361: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.363: INFO: Unable to read jessie_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.366: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.375: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.381: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:05.389: INFO: Lookups using dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-1281 wheezy_tcp@dns-test-service.dns-1281 wheezy_udp@dns-test-service.dns-1281.svc wheezy_tcp@dns-test-service.dns-1281.svc wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-1281 jessie_tcp@dns-test-service.dns-1281 jessie_udp@dns-test-service.dns-1281.svc jessie_tcp@dns-test-service.dns-1281.svc jessie_udp@_http._tcp.dns-test-service.dns-1281.svc jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc] + +Oct 26 04:41:10.321: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.324: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.327: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.330: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.333: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.337: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.340: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.346: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.367: INFO: Unable to read jessie_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.369: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.372: INFO: Unable to read jessie_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.375: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.378: INFO: Unable to read jessie_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.381: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.384: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.386: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:10.400: INFO: Lookups using dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-1281 wheezy_tcp@dns-test-service.dns-1281 wheezy_udp@dns-test-service.dns-1281.svc wheezy_tcp@dns-test-service.dns-1281.svc wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-1281 jessie_tcp@dns-test-service.dns-1281 jessie_udp@dns-test-service.dns-1281.svc jessie_tcp@dns-test-service.dns-1281.svc jessie_udp@_http._tcp.dns-test-service.dns-1281.svc jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc] + +Oct 26 04:41:15.320: INFO: Unable to read wheezy_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.323: INFO: Unable to read wheezy_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.325: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.328: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.333: INFO: Unable to read wheezy_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.336: INFO: Unable to read wheezy_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.338: INFO: Unable to read wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.340: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.352: INFO: Unable to read jessie_udp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.354: INFO: Unable to read jessie_tcp@dns-test-service from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.356: INFO: Unable to read jessie_udp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.359: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281 from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.361: INFO: Unable to read jessie_udp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.364: INFO: Unable to read jessie_tcp@dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.366: INFO: Unable to read jessie_udp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.368: INFO: Unable to read jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc from pod dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724: the server could not find the requested resource (get pods dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724) +Oct 26 04:41:15.377: INFO: Lookups using dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724 failed for: [wheezy_udp@dns-test-service wheezy_tcp@dns-test-service wheezy_udp@dns-test-service.dns-1281 wheezy_tcp@dns-test-service.dns-1281 wheezy_udp@dns-test-service.dns-1281.svc wheezy_tcp@dns-test-service.dns-1281.svc wheezy_udp@_http._tcp.dns-test-service.dns-1281.svc wheezy_tcp@_http._tcp.dns-test-service.dns-1281.svc jessie_udp@dns-test-service jessie_tcp@dns-test-service jessie_udp@dns-test-service.dns-1281 jessie_tcp@dns-test-service.dns-1281 jessie_udp@dns-test-service.dns-1281.svc jessie_tcp@dns-test-service.dns-1281.svc jessie_udp@_http._tcp.dns-test-service.dns-1281.svc jessie_tcp@_http._tcp.dns-test-service.dns-1281.svc] + +Oct 26 04:41:20.380: INFO: DNS probes using dns-1281/dns-test-9b42528e-419c-46dc-ab8e-09c86e0a3724 succeeded + +STEP: deleting the pod +STEP: deleting the test service +STEP: deleting the test headless service +[AfterEach] [sig-network] DNS + test/e2e/framework/framework.go:188 +Oct 26 04:41:20.462: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "dns-1281" for this suite. + +• [SLOW TEST:34.295 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should resolve DNS of partial qualified names for services [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] DNS should resolve DNS of partial qualified names for services [LinuxOnly] [Conformance]","total":356,"completed":57,"skipped":1077,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Subpath Atomic writer volumes + should support subpaths with downward pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Subpath + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:41:20.487: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename subpath +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 +STEP: Setting up data +[It] should support subpaths with downward pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating pod pod-subpath-test-downwardapi-qcgq +STEP: Creating a pod to test atomic-volume-subpath +Oct 26 04:41:20.535: INFO: Waiting up to 5m0s for pod "pod-subpath-test-downwardapi-qcgq" in namespace "subpath-1663" to be "Succeeded or Failed" +Oct 26 04:41:20.537: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Pending", Reason="", readiness=false. Elapsed: 2.375584ms +Oct 26 04:41:22.541: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Running", Reason="", readiness=true. Elapsed: 2.006316496s +Oct 26 04:41:24.545: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Running", Reason="", readiness=true. Elapsed: 4.010198504s +Oct 26 04:41:26.551: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Running", Reason="", readiness=true. Elapsed: 6.015890792s +Oct 26 04:41:28.554: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Running", Reason="", readiness=true. Elapsed: 8.019076976s +Oct 26 04:41:30.558: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Running", Reason="", readiness=true. Elapsed: 10.022732429s +Oct 26 04:41:32.562: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Running", Reason="", readiness=true. Elapsed: 12.027439615s +Oct 26 04:41:34.567: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Running", Reason="", readiness=true. Elapsed: 14.031935933s +Oct 26 04:41:36.574: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Running", Reason="", readiness=true. Elapsed: 16.039434005s +Oct 26 04:41:38.578: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Running", Reason="", readiness=true. Elapsed: 18.043086631s +Oct 26 04:41:40.582: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Running", Reason="", readiness=true. Elapsed: 20.04732494s +Oct 26 04:41:42.590: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Running", Reason="", readiness=false. Elapsed: 22.054733057s +Oct 26 04:41:44.593: INFO: Pod "pod-subpath-test-downwardapi-qcgq": Phase="Succeeded", Reason="", readiness=false. Elapsed: 24.058395067s +STEP: Saw pod success +Oct 26 04:41:44.593: INFO: Pod "pod-subpath-test-downwardapi-qcgq" satisfied condition "Succeeded or Failed" +Oct 26 04:41:44.596: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-subpath-test-downwardapi-qcgq container test-container-subpath-downwardapi-qcgq: +STEP: delete the pod +Oct 26 04:41:44.608: INFO: Waiting for pod pod-subpath-test-downwardapi-qcgq to disappear +Oct 26 04:41:44.610: INFO: Pod pod-subpath-test-downwardapi-qcgq no longer exists +STEP: Deleting pod pod-subpath-test-downwardapi-qcgq +Oct 26 04:41:44.610: INFO: Deleting pod "pod-subpath-test-downwardapi-qcgq" in namespace "subpath-1663" +[AfterEach] [sig-storage] Subpath + test/e2e/framework/framework.go:188 +Oct 26 04:41:44.612: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "subpath-1663" for this suite. + +• [SLOW TEST:24.131 seconds] +[sig-storage] Subpath +test/e2e/storage/utils/framework.go:23 + Atomic writer volumes + test/e2e/storage/subpath.go:36 + should support subpaths with downward pod [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Subpath Atomic writer volumes should support subpaths with downward pod [Conformance]","total":356,"completed":58,"skipped":1111,"failed":0} +SSS +------------------------------ +[sig-apps] ReplicaSet + should serve a basic image on each replica with a public image [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:41:44.619: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename replicaset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should serve a basic image on each replica with a public image [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:41:44.637: INFO: Creating ReplicaSet my-hostname-basic-865f4fe8-0424-4687-818d-fc589f321efc +Oct 26 04:41:44.644: INFO: Pod name my-hostname-basic-865f4fe8-0424-4687-818d-fc589f321efc: Found 0 pods out of 1 +Oct 26 04:41:49.653: INFO: Pod name my-hostname-basic-865f4fe8-0424-4687-818d-fc589f321efc: Found 1 pods out of 1 +Oct 26 04:41:49.653: INFO: Ensuring a pod for ReplicaSet "my-hostname-basic-865f4fe8-0424-4687-818d-fc589f321efc" is running +Oct 26 04:41:49.655: INFO: Pod "my-hostname-basic-865f4fe8-0424-4687-818d-fc589f321efc-gm9fz" is running (conditions: [{Type:Initialized Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2022-10-26 04:41:44 +0000 UTC Reason: Message:} {Type:Ready Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2022-10-26 04:41:46 +0000 UTC Reason: Message:} {Type:ContainersReady Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2022-10-26 04:41:46 +0000 UTC Reason: Message:} {Type:PodScheduled Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2022-10-26 04:41:44 +0000 UTC Reason: Message:}]) +Oct 26 04:41:49.655: INFO: Trying to dial the pod +Oct 26 04:41:54.663: INFO: Controller my-hostname-basic-865f4fe8-0424-4687-818d-fc589f321efc: Got expected result from replica 1 [my-hostname-basic-865f4fe8-0424-4687-818d-fc589f321efc-gm9fz]: "my-hostname-basic-865f4fe8-0424-4687-818d-fc589f321efc-gm9fz", 1 of 1 required successes so far +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:188 +Oct 26 04:41:54.663: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "replicaset-1402" for this suite. + +• [SLOW TEST:10.050 seconds] +[sig-apps] ReplicaSet +test/e2e/apps/framework.go:23 + should serve a basic image on each replica with a public image [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] ReplicaSet should serve a basic image on each replica with a public image [Conformance]","total":356,"completed":59,"skipped":1114,"failed":0} +SSSS +------------------------------ +[sig-apps] ReplicaSet + Replace and Patch tests [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:41:54.670: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename replicaset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] Replace and Patch tests [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:41:54.695: INFO: Pod name sample-pod: Found 0 pods out of 1 +Oct 26 04:41:59.711: INFO: Pod name sample-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running +STEP: Scaling up "test-rs" replicaset +Oct 26 04:41:59.719: INFO: Updating replica set "test-rs" +STEP: patching the ReplicaSet +Oct 26 04:41:59.762: INFO: observed ReplicaSet test-rs in namespace replicaset-6780 with ReadyReplicas 1, AvailableReplicas 1 +Oct 26 04:41:59.801: INFO: observed ReplicaSet test-rs in namespace replicaset-6780 with ReadyReplicas 1, AvailableReplicas 1 +Oct 26 04:41:59.896: INFO: observed ReplicaSet test-rs in namespace replicaset-6780 with ReadyReplicas 1, AvailableReplicas 1 +Oct 26 04:41:59.961: INFO: observed ReplicaSet test-rs in namespace replicaset-6780 with ReadyReplicas 1, AvailableReplicas 1 +Oct 26 04:42:01.302: INFO: observed ReplicaSet test-rs in namespace replicaset-6780 with ReadyReplicas 2, AvailableReplicas 2 +Oct 26 04:42:02.343: INFO: observed Replicaset test-rs in namespace replicaset-6780 with ReadyReplicas 3 found true +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:188 +Oct 26 04:42:02.343: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "replicaset-6780" for this suite. + +• [SLOW TEST:7.682 seconds] +[sig-apps] ReplicaSet +test/e2e/apps/framework.go:23 + Replace and Patch tests [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] ReplicaSet Replace and Patch tests [Conformance]","total":356,"completed":60,"skipped":1118,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for CRD preserving unknown fields in an embedded object [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:42:02.353: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-publish-openapi +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] works for CRD preserving unknown fields in an embedded object [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:42:02.369: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: kubectl validation (kubectl create and apply) allows request with any unknown properties +Oct 26 04:42:06.170: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-7622 --namespace=crd-publish-openapi-7622 create -f -' +Oct 26 04:42:06.925: INFO: stderr: "" +Oct 26 04:42:06.925: INFO: stdout: "e2e-test-crd-publish-openapi-5335-crd.crd-publish-openapi-test-unknown-in-nested.example.com/test-cr created\n" +Oct 26 04:42:06.925: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-7622 --namespace=crd-publish-openapi-7622 delete e2e-test-crd-publish-openapi-5335-crds test-cr' +Oct 26 04:42:06.985: INFO: stderr: "" +Oct 26 04:42:06.985: INFO: stdout: "e2e-test-crd-publish-openapi-5335-crd.crd-publish-openapi-test-unknown-in-nested.example.com \"test-cr\" deleted\n" +Oct 26 04:42:06.985: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-7622 --namespace=crd-publish-openapi-7622 apply -f -' +Oct 26 04:42:07.162: INFO: stderr: "" +Oct 26 04:42:07.162: INFO: stdout: "e2e-test-crd-publish-openapi-5335-crd.crd-publish-openapi-test-unknown-in-nested.example.com/test-cr created\n" +Oct 26 04:42:07.162: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-7622 --namespace=crd-publish-openapi-7622 delete e2e-test-crd-publish-openapi-5335-crds test-cr' +Oct 26 04:42:07.220: INFO: stderr: "" +Oct 26 04:42:07.220: INFO: stdout: "e2e-test-crd-publish-openapi-5335-crd.crd-publish-openapi-test-unknown-in-nested.example.com \"test-cr\" deleted\n" +STEP: kubectl explain works to explain CR +Oct 26 04:42:07.220: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=crd-publish-openapi-7622 explain e2e-test-crd-publish-openapi-5335-crds' +Oct 26 04:42:07.387: INFO: stderr: "" +Oct 26 04:42:07.387: INFO: stdout: "KIND: e2e-test-crd-publish-openapi-5335-crd\nVERSION: crd-publish-openapi-test-unknown-in-nested.example.com/v1\n\nDESCRIPTION:\n preserve-unknown-properties in nested field for Testing\n\nFIELDS:\n apiVersion\t\n APIVersion defines the versioned schema of this representation of an\n object. Servers should convert recognized schemas to the latest internal\n value, and may reject unrecognized values. More info:\n https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources\n\n kind\t\n Kind is a string value representing the REST resource this object\n represents. Servers may infer this from the endpoint the client submits\n requests to. Cannot be updated. In CamelCase. More info:\n https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds\n\n metadata\t\n Standard object's metadata. More info:\n https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata\n\n spec\t<>\n Specification of Waldo\n\n status\t\n Status of Waldo\n\n" +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 04:42:09.641: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-publish-openapi-7622" for this suite. + +• [SLOW TEST:7.300 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + works for CRD preserving unknown fields in an embedded object [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD preserving unknown fields in an embedded object [Conformance]","total":356,"completed":61,"skipped":1146,"failed":0} +SSSSSSSSSSSS +------------------------------ +[sig-node] Container Runtime blackbox test when starting a container that exits + should run with the expected status [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Container Runtime + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:42:09.655: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-runtime +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should run with the expected status [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Container 'terminate-cmd-rpa': should get the expected 'RestartCount' +STEP: Container 'terminate-cmd-rpa': should get the expected 'Phase' +STEP: Container 'terminate-cmd-rpa': should get the expected 'Ready' condition +STEP: Container 'terminate-cmd-rpa': should get the expected 'State' +STEP: Container 'terminate-cmd-rpa': should be possible to delete [NodeConformance] +STEP: Container 'terminate-cmd-rpof': should get the expected 'RestartCount' +STEP: Container 'terminate-cmd-rpof': should get the expected 'Phase' +STEP: Container 'terminate-cmd-rpof': should get the expected 'Ready' condition +STEP: Container 'terminate-cmd-rpof': should get the expected 'State' +STEP: Container 'terminate-cmd-rpof': should be possible to delete [NodeConformance] +STEP: Container 'terminate-cmd-rpn': should get the expected 'RestartCount' +STEP: Container 'terminate-cmd-rpn': should get the expected 'Phase' +STEP: Container 'terminate-cmd-rpn': should get the expected 'Ready' condition +STEP: Container 'terminate-cmd-rpn': should get the expected 'State' +STEP: Container 'terminate-cmd-rpn': should be possible to delete [NodeConformance] +[AfterEach] [sig-node] Container Runtime + test/e2e/framework/framework.go:188 +Oct 26 04:42:35.904: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-runtime-1466" for this suite. + +• [SLOW TEST:26.259 seconds] +[sig-node] Container Runtime +test/e2e/common/node/framework.go:23 + blackbox test + test/e2e/common/node/runtime.go:43 + when starting a container that exits + test/e2e/common/node/runtime.go:44 + should run with the expected status [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Container Runtime blackbox test when starting a container that exits should run with the expected status [NodeConformance] [Conformance]","total":356,"completed":62,"skipped":1158,"failed":0} +SSSSS +------------------------------ +[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + should be able to convert from CR v1 to CR v2 [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:42:35.915: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:128 +STEP: Setting up server cert +STEP: Create role binding to let cr conversion webhook read extension-apiserver-authentication +STEP: Deploying the custom resource conversion webhook pod +STEP: Wait for the deployment to be ready +Oct 26 04:42:36.264: INFO: deployment "sample-crd-conversion-webhook-deployment" doesn't have the required revision set +Oct 26 04:42:38.273: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 4, 42, 36, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 4, 42, 36, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 4, 42, 36, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 4, 42, 36, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-crd-conversion-webhook-deployment-656754656d\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 04:42:41.289: INFO: Waiting for amount of service:e2e-test-crd-conversion-webhook endpoints to be 1 +[It] should be able to convert from CR v1 to CR v2 [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:42:41.294: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Creating a v1 custom resource +STEP: v2 custom resource should be converted +[AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 04:42:44.401: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-webhook-9126" for this suite. +[AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:139 + +• [SLOW TEST:8.665 seconds] +[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should be able to convert from CR v1 to CR v2 [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] should be able to convert from CR v1 to CR v2 [Conformance]","total":356,"completed":63,"skipped":1163,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] ReplicationController + should test the lifecycle of a ReplicationController [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:42:44.596: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename replication-controller +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:56 +[It] should test the lifecycle of a ReplicationController [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a ReplicationController +STEP: waiting for RC to be added +STEP: waiting for available Replicas +STEP: patching ReplicationController +STEP: waiting for RC to be modified +STEP: patching ReplicationController status +STEP: waiting for RC to be modified +STEP: waiting for available Replicas +STEP: fetching ReplicationController status +STEP: patching ReplicationController scale +STEP: waiting for RC to be modified +STEP: waiting for ReplicationController's scale to be the max amount +STEP: fetching ReplicationController; ensuring that it's patched +STEP: updating ReplicationController status +STEP: waiting for RC to be modified +STEP: listing all ReplicationControllers +STEP: checking that ReplicationController has expected values +STEP: deleting ReplicationControllers by collection +STEP: waiting for ReplicationController to have a DELETED watchEvent +[AfterEach] [sig-apps] ReplicationController + test/e2e/framework/framework.go:188 +Oct 26 04:42:49.480: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "replication-controller-2751" for this suite. +•{"msg":"PASSED [sig-apps] ReplicationController should test the lifecycle of a ReplicationController [Conformance]","total":356,"completed":64,"skipped":1225,"failed":0} +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Networking Granular Checks: Pods + should function for intra-pod communication: udp [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Networking + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:42:49.488: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pod-network-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should function for intra-pod communication: udp [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Performing setup for networking test in namespace pod-network-test-7525 +STEP: creating a selector +STEP: Creating the service pods in kubernetes +Oct 26 04:42:49.504: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable +Oct 26 04:42:49.554: INFO: The status of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:42:51.559: INFO: The status of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:42:53.558: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:42:55.559: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:42:57.558: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:42:59.561: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:43:01.559: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:43:03.560: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:43:05.558: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:43:07.559: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:43:09.561: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:43:11.559: INFO: The status of Pod netserver-0 is Running (Ready = true) +Oct 26 04:43:11.571: INFO: The status of Pod netserver-1 is Running (Ready = true) +Oct 26 04:43:11.577: INFO: The status of Pod netserver-2 is Running (Ready = true) +STEP: Creating test pods +Oct 26 04:43:15.591: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 +Oct 26 04:43:15.591: INFO: Breadth first check of 100.96.2.52 on host 172.20.115.72... +Oct 26 04:43:15.593: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://100.96.2.43:9080/dial?request=hostname&protocol=udp&host=100.96.2.52&port=8081&tries=1'] Namespace:pod-network-test-7525 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:43:15.593: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:43:15.594: INFO: ExecWithOptions: Clientset creation +Oct 26 04:43:15.594: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-7525/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F100.96.2.43%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dudp%26host%3D100.96.2.52%26port%3D8081%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Oct 26 04:43:15.666: INFO: Waiting for responses: map[] +Oct 26 04:43:15.666: INFO: reached 100.96.2.52 after 0/1 tries +Oct 26 04:43:15.666: INFO: Breadth first check of 100.96.1.117 on host 172.20.54.156... +Oct 26 04:43:15.671: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://100.96.2.43:9080/dial?request=hostname&protocol=udp&host=100.96.1.117&port=8081&tries=1'] Namespace:pod-network-test-7525 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:43:15.671: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:43:15.672: INFO: ExecWithOptions: Clientset creation +Oct 26 04:43:15.672: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-7525/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F100.96.2.43%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dudp%26host%3D100.96.1.117%26port%3D8081%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Oct 26 04:43:15.741: INFO: Waiting for responses: map[] +Oct 26 04:43:15.741: INFO: reached 100.96.1.117 after 0/1 tries +Oct 26 04:43:15.741: INFO: Breadth first check of 100.96.3.76 on host 172.20.86.64... +Oct 26 04:43:15.744: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://100.96.2.43:9080/dial?request=hostname&protocol=udp&host=100.96.3.76&port=8081&tries=1'] Namespace:pod-network-test-7525 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:43:15.744: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:43:15.745: INFO: ExecWithOptions: Clientset creation +Oct 26 04:43:15.745: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-7525/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F100.96.2.43%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dudp%26host%3D100.96.3.76%26port%3D8081%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Oct 26 04:43:15.806: INFO: Waiting for responses: map[] +Oct 26 04:43:15.806: INFO: reached 100.96.3.76 after 0/1 tries +Oct 26 04:43:15.806: INFO: Going to retry 0 out of 3 pods.... +[AfterEach] [sig-network] Networking + test/e2e/framework/framework.go:188 +Oct 26 04:43:15.806: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pod-network-test-7525" for this suite. + +• [SLOW TEST:26.326 seconds] +[sig-network] Networking +test/e2e/common/network/framework.go:23 + Granular Checks: Pods + test/e2e/common/network/networking.go:32 + should function for intra-pod communication: udp [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Networking Granular Checks: Pods should function for intra-pod communication: udp [NodeConformance] [Conformance]","total":356,"completed":65,"skipped":1244,"failed":0} +SSSSSSSSS +------------------------------ +[sig-node] Downward API + should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Downward API + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:43:15.818: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward api env vars +Oct 26 04:43:15.852: INFO: Waiting up to 5m0s for pod "downward-api-eee0a89a-45f7-47be-acf6-3bf5c902c0bf" in namespace "downward-api-5234" to be "Succeeded or Failed" +Oct 26 04:43:15.855: INFO: Pod "downward-api-eee0a89a-45f7-47be-acf6-3bf5c902c0bf": Phase="Pending", Reason="", readiness=false. Elapsed: 2.717638ms +Oct 26 04:43:17.859: INFO: Pod "downward-api-eee0a89a-45f7-47be-acf6-3bf5c902c0bf": Phase="Pending", Reason="", readiness=false. Elapsed: 2.006901082s +Oct 26 04:43:19.872: INFO: Pod "downward-api-eee0a89a-45f7-47be-acf6-3bf5c902c0bf": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.019924304s +STEP: Saw pod success +Oct 26 04:43:19.873: INFO: Pod "downward-api-eee0a89a-45f7-47be-acf6-3bf5c902c0bf" satisfied condition "Succeeded or Failed" +Oct 26 04:43:19.875: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downward-api-eee0a89a-45f7-47be-acf6-3bf5c902c0bf container dapi-container: +STEP: delete the pod +Oct 26 04:43:19.901: INFO: Waiting for pod downward-api-eee0a89a-45f7-47be-acf6-3bf5c902c0bf to disappear +Oct 26 04:43:19.907: INFO: Pod downward-api-eee0a89a-45f7-47be-acf6-3bf5c902c0bf no longer exists +[AfterEach] [sig-node] Downward API + test/e2e/framework/framework.go:188 +Oct 26 04:43:19.907: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-5234" for this suite. +•{"msg":"PASSED [sig-node] Downward API should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance]","total":356,"completed":66,"skipped":1253,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-node] Secrets + should be consumable from pods in env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:43:19.930: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating secret with name secret-test-391c4b36-11c5-45f8-9ca7-3c907dc038aa +STEP: Creating a pod to test consume secrets +Oct 26 04:43:19.985: INFO: Waiting up to 5m0s for pod "pod-secrets-373af960-662f-4426-bb08-9aa82b05fc36" in namespace "secrets-8308" to be "Succeeded or Failed" +Oct 26 04:43:19.990: INFO: Pod "pod-secrets-373af960-662f-4426-bb08-9aa82b05fc36": Phase="Pending", Reason="", readiness=false. Elapsed: 4.735183ms +Oct 26 04:43:21.996: INFO: Pod "pod-secrets-373af960-662f-4426-bb08-9aa82b05fc36": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011285629s +Oct 26 04:43:24.003: INFO: Pod "pod-secrets-373af960-662f-4426-bb08-9aa82b05fc36": Phase="Pending", Reason="", readiness=false. Elapsed: 4.017969088s +Oct 26 04:43:26.009: INFO: Pod "pod-secrets-373af960-662f-4426-bb08-9aa82b05fc36": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.023736809s +STEP: Saw pod success +Oct 26 04:43:26.009: INFO: Pod "pod-secrets-373af960-662f-4426-bb08-9aa82b05fc36" satisfied condition "Succeeded or Failed" +Oct 26 04:43:26.011: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-secrets-373af960-662f-4426-bb08-9aa82b05fc36 container secret-env-test: +STEP: delete the pod +Oct 26 04:43:26.026: INFO: Waiting for pod pod-secrets-373af960-662f-4426-bb08-9aa82b05fc36 to disappear +Oct 26 04:43:26.028: INFO: Pod pod-secrets-373af960-662f-4426-bb08-9aa82b05fc36 no longer exists +[AfterEach] [sig-node] Secrets + test/e2e/framework/framework.go:188 +Oct 26 04:43:26.028: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-8308" for this suite. + +• [SLOW TEST:6.108 seconds] +[sig-node] Secrets +test/e2e/common/node/framework.go:23 + should be consumable from pods in env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Secrets should be consumable from pods in env vars [NodeConformance] [Conformance]","total":356,"completed":67,"skipped":1268,"failed":0} +SSSSSSSSSSSSSS +------------------------------ +[sig-node] Probing container + with readiness probe that fails should never be ready and never restart [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:43:26.039: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-probe +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:61 +[It] with readiness probe that fails should never be ready and never restart [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-node] Probing container + test/e2e/framework/framework.go:188 +Oct 26 04:44:26.075: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-probe-8621" for this suite. + +• [SLOW TEST:60.044 seconds] +[sig-node] Probing container +test/e2e/common/node/framework.go:23 + with readiness probe that fails should never be ready and never restart [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Probing container with readiness probe that fails should never be ready and never restart [NodeConformance] [Conformance]","total":356,"completed":68,"skipped":1282,"failed":0} +SSS +------------------------------ +[sig-storage] Downward API volume + should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:44:26.083: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:43 +[It] should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 04:44:26.109: INFO: Waiting up to 5m0s for pod "downwardapi-volume-5680d5b6-ccf4-4575-a601-85f3f589d59f" in namespace "downward-api-2779" to be "Succeeded or Failed" +Oct 26 04:44:26.111: INFO: Pod "downwardapi-volume-5680d5b6-ccf4-4575-a601-85f3f589d59f": Phase="Pending", Reason="", readiness=false. Elapsed: 2.158518ms +Oct 26 04:44:28.116: INFO: Pod "downwardapi-volume-5680d5b6-ccf4-4575-a601-85f3f589d59f": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007043772s +Oct 26 04:44:30.135: INFO: Pod "downwardapi-volume-5680d5b6-ccf4-4575-a601-85f3f589d59f": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.026205083s +STEP: Saw pod success +Oct 26 04:44:30.135: INFO: Pod "downwardapi-volume-5680d5b6-ccf4-4575-a601-85f3f589d59f" satisfied condition "Succeeded or Failed" +Oct 26 04:44:30.139: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-5680d5b6-ccf4-4575-a601-85f3f589d59f container client-container: +STEP: delete the pod +Oct 26 04:44:30.167: INFO: Waiting for pod downwardapi-volume-5680d5b6-ccf4-4575-a601-85f3f589d59f to disappear +Oct 26 04:44:30.174: INFO: Pod downwardapi-volume-5680d5b6-ccf4-4575-a601-85f3f589d59f no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:188 +Oct 26 04:44:30.174: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-2779" for this suite. +•{"msg":"PASSED [sig-storage] Downward API volume should provide container's cpu request [NodeConformance] [Conformance]","total":356,"completed":69,"skipped":1285,"failed":0} +SSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl run pod + should create a pod from an image when restart is Never [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:44:30.187: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[BeforeEach] Kubectl run pod + test/e2e/kubectl/kubectl.go:1540 +[It] should create a pod from an image when restart is Never [Conformance] + test/e2e/framework/framework.go:652 +STEP: running the image k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 +Oct 26 04:44:30.222: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-3123 run e2e-test-httpd-pod --restart=Never --pod-running-timeout=2m0s --image=k8s.gcr.io/e2e-test-images/httpd:2.4.38-2' +Oct 26 04:44:30.297: INFO: stderr: "" +Oct 26 04:44:30.297: INFO: stdout: "pod/e2e-test-httpd-pod created\n" +STEP: verifying the pod e2e-test-httpd-pod was created +[AfterEach] Kubectl run pod + test/e2e/kubectl/kubectl.go:1544 +Oct 26 04:44:30.312: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-3123 delete pods e2e-test-httpd-pod' +Oct 26 04:44:32.936: INFO: stderr: "" +Oct 26 04:44:32.936: INFO: stdout: "pod \"e2e-test-httpd-pod\" deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 04:44:32.936: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-3123" for this suite. +•{"msg":"PASSED [sig-cli] Kubectl client Kubectl run pod should create a pod from an image when restart is Never [Conformance]","total":356,"completed":70,"skipped":1293,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-apps] ReplicationController + should adopt matching pods on creation [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:44:32.944: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename replication-controller +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:56 +[It] should adopt matching pods on creation [Conformance] + test/e2e/framework/framework.go:652 +STEP: Given a Pod with a 'name' label pod-adoption is created +Oct 26 04:44:32.971: INFO: The status of Pod pod-adoption is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:44:34.981: INFO: The status of Pod pod-adoption is Running (Ready = true) +STEP: When a replication controller with a matching selector is created +STEP: Then the orphan pod is adopted +[AfterEach] [sig-apps] ReplicationController + test/e2e/framework/framework.go:188 +Oct 26 04:44:35.998: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "replication-controller-9520" for this suite. +•{"msg":"PASSED [sig-apps] ReplicationController should adopt matching pods on creation [Conformance]","total":356,"completed":71,"skipped":1308,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Networking Granular Checks: Pods + should function for intra-pod communication: http [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Networking + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:44:36.022: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pod-network-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should function for intra-pod communication: http [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Performing setup for networking test in namespace pod-network-test-6174 +STEP: creating a selector +STEP: Creating the service pods in kubernetes +Oct 26 04:44:36.045: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable +Oct 26 04:44:36.079: INFO: The status of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:44:38.083: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:44:40.087: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:44:42.085: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:44:44.082: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:44:46.086: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:44:48.083: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:44:50.086: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:44:52.088: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:44:54.093: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:44:56.084: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:44:58.083: INFO: The status of Pod netserver-0 is Running (Ready = true) +Oct 26 04:44:58.087: INFO: The status of Pod netserver-1 is Running (Ready = true) +Oct 26 04:44:58.090: INFO: The status of Pod netserver-2 is Running (Ready = true) +STEP: Creating test pods +Oct 26 04:45:00.109: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 +Oct 26 04:45:00.109: INFO: Breadth first check of 100.96.2.185 on host 172.20.115.72... +Oct 26 04:45:00.111: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://100.96.2.142:9080/dial?request=hostname&protocol=http&host=100.96.2.185&port=8083&tries=1'] Namespace:pod-network-test-6174 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:45:00.111: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:45:00.112: INFO: ExecWithOptions: Clientset creation +Oct 26 04:45:00.112: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-6174/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F100.96.2.142%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dhttp%26host%3D100.96.2.185%26port%3D8083%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Oct 26 04:45:00.183: INFO: Waiting for responses: map[] +Oct 26 04:45:00.184: INFO: reached 100.96.2.185 after 0/1 tries +Oct 26 04:45:00.184: INFO: Breadth first check of 100.96.1.14 on host 172.20.54.156... +Oct 26 04:45:00.187: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://100.96.2.142:9080/dial?request=hostname&protocol=http&host=100.96.1.14&port=8083&tries=1'] Namespace:pod-network-test-6174 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:45:00.187: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:45:00.187: INFO: ExecWithOptions: Clientset creation +Oct 26 04:45:00.188: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-6174/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F100.96.2.142%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dhttp%26host%3D100.96.1.14%26port%3D8083%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Oct 26 04:45:00.251: INFO: Waiting for responses: map[] +Oct 26 04:45:00.251: INFO: reached 100.96.1.14 after 0/1 tries +Oct 26 04:45:00.251: INFO: Breadth first check of 100.96.3.113 on host 172.20.86.64... +Oct 26 04:45:00.254: INFO: ExecWithOptions {Command:[/bin/sh -c curl -g -q -s 'http://100.96.2.142:9080/dial?request=hostname&protocol=http&host=100.96.3.113&port=8083&tries=1'] Namespace:pod-network-test-6174 PodName:test-container-pod ContainerName:webserver Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:45:00.254: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:45:00.256: INFO: ExecWithOptions: Clientset creation +Oct 26 04:45:00.256: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-6174/pods/test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=curl+-g+-q+-s+%27http%3A%2F%2F100.96.2.142%3A9080%2Fdial%3Frequest%3Dhostname%26protocol%3Dhttp%26host%3D100.96.3.113%26port%3D8083%26tries%3D1%27&container=webserver&container=webserver&stderr=true&stdout=true) +Oct 26 04:45:00.343: INFO: Waiting for responses: map[] +Oct 26 04:45:00.343: INFO: reached 100.96.3.113 after 0/1 tries +Oct 26 04:45:00.343: INFO: Going to retry 0 out of 3 pods.... +[AfterEach] [sig-network] Networking + test/e2e/framework/framework.go:188 +Oct 26 04:45:00.343: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pod-network-test-6174" for this suite. + +• [SLOW TEST:24.329 seconds] +[sig-network] Networking +test/e2e/common/network/framework.go:23 + Granular Checks: Pods + test/e2e/common/network/networking.go:32 + should function for intra-pod communication: http [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Networking Granular Checks: Pods should function for intra-pod communication: http [NodeConformance] [Conformance]","total":356,"completed":72,"skipped":1337,"failed":0} +SSSSSSSS +------------------------------ +[sig-network] Networking Granular Checks: Pods + should function for node-pod communication: udp [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Networking + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:45:00.354: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pod-network-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should function for node-pod communication: udp [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Performing setup for networking test in namespace pod-network-test-5941 +STEP: creating a selector +STEP: Creating the service pods in kubernetes +Oct 26 04:45:00.377: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable +Oct 26 04:45:00.424: INFO: The status of Pod netserver-0 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:45:02.428: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:45:04.435: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:45:06.429: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:45:08.431: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:45:10.433: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:45:12.428: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:45:14.433: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:45:16.431: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:45:18.433: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:45:20.432: INFO: The status of Pod netserver-0 is Running (Ready = false) +Oct 26 04:45:22.428: INFO: The status of Pod netserver-0 is Running (Ready = true) +Oct 26 04:45:22.432: INFO: The status of Pod netserver-1 is Running (Ready = true) +Oct 26 04:45:22.435: INFO: The status of Pod netserver-2 is Running (Ready = true) +STEP: Creating test pods +Oct 26 04:45:26.468: INFO: Setting MaxTries for pod polling to 39 for networking test based on endpoint count 3 +Oct 26 04:45:26.468: INFO: Going to poll 100.96.2.119 on port 8081 at least 0 times, with a maximum of 39 tries before failing +Oct 26 04:45:26.469: INFO: ExecWithOptions {Command:[/bin/sh -c echo hostName | nc -w 1 -u 100.96.2.119 8081 | grep -v '^\s*$'] Namespace:pod-network-test-5941 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:45:26.469: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:45:26.470: INFO: ExecWithOptions: Clientset creation +Oct 26 04:45:26.470: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-5941/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=echo+hostName+%7C+nc+-w+1+-u+100.96.2.119+8081+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Oct 26 04:45:27.537: INFO: Found all 1 expected endpoints: [netserver-0] +Oct 26 04:45:27.537: INFO: Going to poll 100.96.1.210 on port 8081 at least 0 times, with a maximum of 39 tries before failing +Oct 26 04:45:27.540: INFO: ExecWithOptions {Command:[/bin/sh -c echo hostName | nc -w 1 -u 100.96.1.210 8081 | grep -v '^\s*$'] Namespace:pod-network-test-5941 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:45:27.540: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:45:27.541: INFO: ExecWithOptions: Clientset creation +Oct 26 04:45:27.541: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-5941/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=echo+hostName+%7C+nc+-w+1+-u+100.96.1.210+8081+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Oct 26 04:45:28.599: INFO: Found all 1 expected endpoints: [netserver-1] +Oct 26 04:45:28.599: INFO: Going to poll 100.96.3.99 on port 8081 at least 0 times, with a maximum of 39 tries before failing +Oct 26 04:45:28.603: INFO: ExecWithOptions {Command:[/bin/sh -c echo hostName | nc -w 1 -u 100.96.3.99 8081 | grep -v '^\s*$'] Namespace:pod-network-test-5941 PodName:host-test-container-pod ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 04:45:28.603: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 04:45:28.604: INFO: ExecWithOptions: Clientset creation +Oct 26 04:45:28.604: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/pod-network-test-5941/pods/host-test-container-pod/exec?command=%2Fbin%2Fsh&command=-c&command=echo+hostName+%7C+nc+-w+1+-u+100.96.3.99+8081+%7C+grep+-v+%27%5E%5Cs%2A%24%27&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Oct 26 04:45:29.668: INFO: Found all 1 expected endpoints: [netserver-2] +[AfterEach] [sig-network] Networking + test/e2e/framework/framework.go:188 +Oct 26 04:45:29.668: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pod-network-test-5941" for this suite. + +• [SLOW TEST:29.323 seconds] +[sig-network] Networking +test/e2e/common/network/framework.go:23 + Granular Checks: Pods + test/e2e/common/network/networking.go:32 + should function for node-pod communication: udp [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Networking Granular Checks: Pods should function for node-pod communication: udp [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":73,"skipped":1345,"failed":0} +SS +------------------------------ +[sig-network] Services + should have session affinity timeout work for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:45:29.678: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should have session affinity timeout work for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating service in namespace services-3787 +Oct 26 04:45:29.710: INFO: The status of Pod kube-proxy-mode-detector is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:45:31.717: INFO: The status of Pod kube-proxy-mode-detector is Running (Ready = true) +Oct 26 04:45:31.720: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-3787 exec kube-proxy-mode-detector -- /bin/sh -x -c curl -q -s --connect-timeout 1 http://localhost:10249/proxyMode' +Oct 26 04:45:31.850: INFO: stderr: "+ curl -q -s --connect-timeout 1 http://localhost:10249/proxyMode\n" +Oct 26 04:45:31.850: INFO: stdout: "iptables" +Oct 26 04:45:31.850: INFO: proxyMode: iptables +Oct 26 04:45:31.860: INFO: Waiting for pod kube-proxy-mode-detector to disappear +Oct 26 04:45:31.863: INFO: Pod kube-proxy-mode-detector no longer exists +STEP: creating service affinity-clusterip-timeout in namespace services-3787 +STEP: creating replication controller affinity-clusterip-timeout in namespace services-3787 +I1026 04:45:31.886103 20 runners.go:193] Created replication controller with name: affinity-clusterip-timeout, namespace: services-3787, replica count: 3 +I1026 04:45:34.937588 20 runners.go:193] affinity-clusterip-timeout Pods: 3 out of 3 created, 3 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Oct 26 04:45:34.946: INFO: Creating new exec pod +Oct 26 04:45:39.965: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-3787 exec execpod-affinityrcjfd -- /bin/sh -x -c echo hostName | nc -v -t -w 2 affinity-clusterip-timeout 80' +Oct 26 04:45:40.161: INFO: stderr: "+ nc -v -t -w 2 affinity-clusterip-timeout 80\n+ echo hostName\nConnection to affinity-clusterip-timeout 80 port [tcp/http] succeeded!\n" +Oct 26 04:45:40.162: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 04:45:40.162: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-3787 exec execpod-affinityrcjfd -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.71.113.190 80' +Oct 26 04:45:40.337: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.71.113.190 80\nConnection to 100.71.113.190 80 port [tcp/http] succeeded!\n" +Oct 26 04:45:40.337: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 04:45:40.337: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-3787 exec execpod-affinityrcjfd -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://100.71.113.190:80/ ; done' +Oct 26 04:45:40.583: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n" +Oct 26 04:45:40.583: INFO: stdout: "\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866\naffinity-clusterip-timeout-6c866" +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Received response from host: affinity-clusterip-timeout-6c866 +Oct 26 04:45:40.583: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-3787 exec execpod-affinityrcjfd -- /bin/sh -x -c curl -q -s --connect-timeout 2 http://100.71.113.190:80/' +Oct 26 04:45:40.711: INFO: stderr: "+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n" +Oct 26 04:45:40.711: INFO: stdout: "affinity-clusterip-timeout-6c866" +Oct 26 04:46:00.712: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-3787 exec execpod-affinityrcjfd -- /bin/sh -x -c curl -q -s --connect-timeout 2 http://100.71.113.190:80/' +Oct 26 04:46:00.870: INFO: stderr: "+ curl -q -s --connect-timeout 2 http://100.71.113.190:80/\n" +Oct 26 04:46:00.870: INFO: stdout: "affinity-clusterip-timeout-25689" +Oct 26 04:46:00.870: INFO: Cleaning up the exec pod +STEP: deleting ReplicationController affinity-clusterip-timeout in namespace services-3787, will wait for the garbage collector to delete the pods +Oct 26 04:46:00.956: INFO: Deleting ReplicationController affinity-clusterip-timeout took: 3.336469ms +Oct 26 04:46:01.057: INFO: Terminating ReplicationController affinity-clusterip-timeout pods took: 101.112531ms +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 04:46:03.377: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-3787" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:33.718 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should have session affinity timeout work for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should have session affinity timeout work for service with type clusterIP [LinuxOnly] [Conformance]","total":356,"completed":74,"skipped":1347,"failed":0} +SSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] EndpointSlice + should create Endpoints and EndpointSlices for Pods matching a Service [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:46:03.397: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename endpointslice +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:51 +[It] should create Endpoints and EndpointSlices for Pods matching a Service [Conformance] + test/e2e/framework/framework.go:652 +STEP: referencing a single matching pod +STEP: referencing matching pods with named port +STEP: creating empty Endpoints and EndpointSlices for no matching Pods +STEP: recreating EndpointSlices after they've been deleted +Oct 26 04:46:23.543: INFO: EndpointSlice for Service endpointslice-8212/example-named-port not found +[AfterEach] [sig-network] EndpointSlice + test/e2e/framework/framework.go:188 +Oct 26 04:46:33.555: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "endpointslice-8212" for this suite. + +• [SLOW TEST:30.163 seconds] +[sig-network] EndpointSlice +test/e2e/network/common/framework.go:23 + should create Endpoints and EndpointSlices for Pods matching a Service [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] EndpointSlice should create Endpoints and EndpointSlices for Pods matching a Service [Conformance]","total":356,"completed":75,"skipped":1368,"failed":0} +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should have session affinity work for NodePort service [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:46:33.565: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should have session affinity work for NodePort service [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating service in namespace services-8686 +STEP: creating service affinity-nodeport in namespace services-8686 +STEP: creating replication controller affinity-nodeport in namespace services-8686 +I1026 04:46:33.609797 20 runners.go:193] Created replication controller with name: affinity-nodeport, namespace: services-8686, replica count: 3 +I1026 04:46:36.674857 20 runners.go:193] affinity-nodeport Pods: 3 out of 3 created, 3 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Oct 26 04:46:36.687: INFO: Creating new exec pod +Oct 26 04:46:41.703: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8686 exec execpod-affinitypnknm -- /bin/sh -x -c echo hostName | nc -v -t -w 2 affinity-nodeport 80' +Oct 26 04:46:41.848: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 affinity-nodeport 80\nConnection to affinity-nodeport 80 port [tcp/http] succeeded!\n" +Oct 26 04:46:41.848: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 04:46:41.848: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8686 exec execpod-affinitypnknm -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.64.254.132 80' +Oct 26 04:46:41.994: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.64.254.132 80\nConnection to 100.64.254.132 80 port [tcp/http] succeeded!\n" +Oct 26 04:46:41.994: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 04:46:41.994: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8686 exec execpod-affinitypnknm -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.54.156 32274' +Oct 26 04:46:42.139: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.54.156 32274\nConnection to 172.20.54.156 32274 port [tcp/*] succeeded!\n" +Oct 26 04:46:42.139: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 04:46:42.139: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8686 exec execpod-affinitypnknm -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.115.72 32274' +Oct 26 04:46:42.273: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.115.72 32274\nConnection to 172.20.115.72 32274 port [tcp/*] succeeded!\n" +Oct 26 04:46:42.273: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 04:46:42.273: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8686 exec execpod-affinitypnknm -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://172.20.115.72:32274/ ; done' +Oct 26 04:46:42.476: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:32274/\n" +Oct 26 04:46:42.476: INFO: stdout: "\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2\naffinity-nodeport-pcgj2" +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Received response from host: affinity-nodeport-pcgj2 +Oct 26 04:46:42.476: INFO: Cleaning up the exec pod +STEP: deleting ReplicationController affinity-nodeport in namespace services-8686, will wait for the garbage collector to delete the pods +Oct 26 04:46:42.548: INFO: Deleting ReplicationController affinity-nodeport took: 3.961374ms +Oct 26 04:46:42.651: INFO: Terminating ReplicationController affinity-nodeport pods took: 102.736101ms +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 04:46:44.473: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-8686" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:10.914 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should have session affinity work for NodePort service [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should have session affinity work for NodePort service [LinuxOnly] [Conformance]","total":356,"completed":76,"skipped":1388,"failed":0} +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Secrets + should be immutable if `immutable` field is set [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:46:44.480: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be immutable if `immutable` field is set [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-storage] Secrets + test/e2e/framework/framework.go:188 +Oct 26 04:46:44.513: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-589" for this suite. +•{"msg":"PASSED [sig-storage] Secrets should be immutable if `immutable` field is set [Conformance]","total":356,"completed":77,"skipped":1407,"failed":0} +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and capture the life of a pod. [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:46:44.519: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename resourcequota +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should create a ResourceQuota and capture the life of a pod. [Conformance] + test/e2e/framework/framework.go:652 +STEP: Counting existing ResourceQuota +STEP: Creating a ResourceQuota +STEP: Ensuring resource quota status is calculated +STEP: Creating a Pod that fits quota +STEP: Ensuring ResourceQuota status captures the pod usage +STEP: Not allowing a pod to be created that exceeds remaining quota +STEP: Not allowing a pod to be created that exceeds remaining quota(validation on extended resources) +STEP: Ensuring a pod cannot update its resource requirements +STEP: Ensuring attempts to update pod resource requirements did not change quota usage +STEP: Deleting the pod +STEP: Ensuring resource quota status released the pod usage +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:188 +Oct 26 04:46:57.601: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "resourcequota-1496" for this suite. + +• [SLOW TEST:13.088 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should create a ResourceQuota and capture the life of a pod. [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a pod. [Conformance]","total":356,"completed":78,"skipped":1424,"failed":0} +[sig-node] Pods + should support remote command execution over websockets [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Pods + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:46:57.607: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pods +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:191 +[It] should support remote command execution over websockets [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:46:57.626: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: creating the pod +STEP: submitting the pod to kubernetes +Oct 26 04:46:57.636: INFO: The status of Pod pod-exec-websocket-8fb76a97-728d-47ca-b421-69d7357689a7 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:46:59.648: INFO: The status of Pod pod-exec-websocket-8fb76a97-728d-47ca-b421-69d7357689a7 is Running (Ready = true) +[AfterEach] [sig-node] Pods + test/e2e/framework/framework.go:188 +Oct 26 04:46:59.711: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pods-5227" for this suite. +•{"msg":"PASSED [sig-node] Pods should support remote command execution over websockets [NodeConformance] [Conformance]","total":356,"completed":79,"skipped":1424,"failed":0} +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl diff + should check if kubectl diff finds a difference for Deployments [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:46:59.723: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[It] should check if kubectl diff finds a difference for Deployments [Conformance] + test/e2e/framework/framework.go:652 +STEP: create deployment with httpd image +Oct 26 04:46:59.748: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-1483 create -f -' +Oct 26 04:47:00.708: INFO: stderr: "" +Oct 26 04:47:00.709: INFO: stdout: "deployment.apps/httpd-deployment created\n" +STEP: verify diff finds difference between live and declared image +Oct 26 04:47:00.709: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-1483 diff -f -' +Oct 26 04:47:00.905: INFO: rc: 1 +Oct 26 04:47:00.905: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-1483 delete -f -' +Oct 26 04:47:00.967: INFO: stderr: "" +Oct 26 04:47:00.967: INFO: stdout: "deployment.apps \"httpd-deployment\" deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 04:47:00.967: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-1483" for this suite. +•{"msg":"PASSED [sig-cli] Kubectl client Kubectl diff should check if kubectl diff finds a difference for Deployments [Conformance]","total":356,"completed":80,"skipped":1441,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + Scaling should happen in predictable order and halt if any stateful pod is unhealthy [Slow] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:47:00.975: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename statefulset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:96 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:111 +STEP: Creating service test in namespace statefulset-6809 +[It] Scaling should happen in predictable order and halt if any stateful pod is unhealthy [Slow] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Initializing watcher for selector baz=blah,foo=bar +STEP: Creating stateful set ss in namespace statefulset-6809 +STEP: Waiting until all stateful set ss replicas will be running in namespace statefulset-6809 +Oct 26 04:47:01.007: INFO: Found 0 stateful pods, waiting for 1 +Oct 26 04:47:11.011: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true +STEP: Confirming that stateful set scale up will halt with unhealthy stateful pod +Oct 26 04:47:11.014: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-6809 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Oct 26 04:47:11.166: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Oct 26 04:47:11.166: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Oct 26 04:47:11.166: INFO: stdout of mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true on ss-0: '/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html' + +Oct 26 04:47:11.171: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=true +Oct 26 04:47:21.177: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false +Oct 26 04:47:21.177: INFO: Waiting for statefulset status.replicas updated to 0 +Oct 26 04:47:21.190: INFO: Verifying statefulset ss doesn't scale past 1 for another 9.999999724s +Oct 26 04:47:22.195: INFO: Verifying statefulset ss doesn't scale past 1 for another 8.996856986s +Oct 26 04:47:23.200: INFO: Verifying statefulset ss doesn't scale past 1 for another 7.991627389s +Oct 26 04:47:24.205: INFO: Verifying statefulset ss doesn't scale past 1 for another 6.986560082s +Oct 26 04:47:25.212: INFO: Verifying statefulset ss doesn't scale past 1 for another 5.981363749s +Oct 26 04:47:26.216: INFO: Verifying statefulset ss doesn't scale past 1 for another 4.974214647s +Oct 26 04:47:27.222: INFO: Verifying statefulset ss doesn't scale past 1 for another 3.97121872s +Oct 26 04:47:28.227: INFO: Verifying statefulset ss doesn't scale past 1 for another 2.964593675s +Oct 26 04:47:29.232: INFO: Verifying statefulset ss doesn't scale past 1 for another 1.960001402s +Oct 26 04:47:30.243: INFO: Verifying statefulset ss doesn't scale past 1 for another 954.408965ms +STEP: Scaling up stateful set ss to 3 replicas and waiting until all of them will be running in namespace statefulset-6809 +Oct 26 04:47:31.247: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-6809 exec ss-0 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Oct 26 04:47:31.400: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Oct 26 04:47:31.400: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Oct 26 04:47:31.400: INFO: stdout of mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true on ss-0: '/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html' + +Oct 26 04:47:31.403: INFO: Found 1 stateful pods, waiting for 3 +Oct 26 04:47:41.411: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 04:47:41.411: INFO: Waiting for pod ss-1 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 04:47:41.411: INFO: Waiting for pod ss-2 to enter Running - Ready=true, currently Running - Ready=true +STEP: Verifying that stateful set ss was scaled up in order +STEP: Scale down will halt with unhealthy stateful pod +Oct 26 04:47:41.416: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-6809 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Oct 26 04:47:41.568: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Oct 26 04:47:41.568: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Oct 26 04:47:41.568: INFO: stdout of mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true on ss-0: '/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html' + +Oct 26 04:47:41.568: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-6809 exec ss-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Oct 26 04:47:41.771: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Oct 26 04:47:41.771: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Oct 26 04:47:41.771: INFO: stdout of mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true on ss-1: '/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html' + +Oct 26 04:47:41.771: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-6809 exec ss-2 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Oct 26 04:47:42.001: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Oct 26 04:47:42.001: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Oct 26 04:47:42.001: INFO: stdout of mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true on ss-2: '/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html' + +Oct 26 04:47:42.001: INFO: Waiting for statefulset status.replicas updated to 0 +Oct 26 04:47:42.003: INFO: Waiting for stateful set status.readyReplicas to become 0, currently 3 +Oct 26 04:47:52.018: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false +Oct 26 04:47:52.018: INFO: Waiting for pod ss-1 to enter Running - Ready=false, currently Running - Ready=false +Oct 26 04:47:52.018: INFO: Waiting for pod ss-2 to enter Running - Ready=false, currently Running - Ready=false +Oct 26 04:47:52.027: INFO: Verifying statefulset ss doesn't scale past 3 for another 9.999999767s +Oct 26 04:47:53.031: INFO: Verifying statefulset ss doesn't scale past 3 for another 8.996063448s +Oct 26 04:47:54.042: INFO: Verifying statefulset ss doesn't scale past 3 for another 7.991653204s +Oct 26 04:47:55.048: INFO: Verifying statefulset ss doesn't scale past 3 for another 6.980902464s +Oct 26 04:47:56.053: INFO: Verifying statefulset ss doesn't scale past 3 for another 5.975086228s +Oct 26 04:47:57.057: INFO: Verifying statefulset ss doesn't scale past 3 for another 4.970086974s +Oct 26 04:47:58.062: INFO: Verifying statefulset ss doesn't scale past 3 for another 3.964540288s +Oct 26 04:47:59.068: INFO: Verifying statefulset ss doesn't scale past 3 for another 2.960299325s +Oct 26 04:48:00.078: INFO: Verifying statefulset ss doesn't scale past 3 for another 1.95439611s +Oct 26 04:48:01.083: INFO: Verifying statefulset ss doesn't scale past 3 for another 945.590885ms +STEP: Scaling down stateful set ss to 0 replicas and waiting until none of pods will run in namespacestatefulset-6809 +Oct 26 04:48:02.088: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-6809 exec ss-0 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Oct 26 04:48:02.333: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Oct 26 04:48:02.333: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Oct 26 04:48:02.333: INFO: stdout of mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true on ss-0: '/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html' + +Oct 26 04:48:02.334: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-6809 exec ss-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Oct 26 04:48:02.532: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Oct 26 04:48:02.532: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Oct 26 04:48:02.532: INFO: stdout of mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true on ss-1: '/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html' + +Oct 26 04:48:02.532: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-6809 exec ss-2 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Oct 26 04:48:02.732: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Oct 26 04:48:02.732: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Oct 26 04:48:02.732: INFO: stdout of mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true on ss-2: '/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html' + +Oct 26 04:48:02.732: INFO: Scaling statefulset ss to 0 +STEP: Verifying that stateful set ss was scaled down in reverse order +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:122 +Oct 26 04:48:12.750: INFO: Deleting all statefulset in ns statefulset-6809 +Oct 26 04:48:12.751: INFO: Scaling statefulset ss to 0 +Oct 26 04:48:12.758: INFO: Waiting for statefulset status.replicas updated to 0 +Oct 26 04:48:12.759: INFO: Deleting statefulset ss +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:188 +Oct 26 04:48:12.780: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "statefulset-6809" for this suite. + +• [SLOW TEST:71.814 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:101 + Scaling should happen in predictable order and halt if any stateful pod is unhealthy [Slow] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] Scaling should happen in predictable order and halt if any stateful pod is unhealthy [Slow] [Conformance]","total":356,"completed":81,"skipped":1481,"failed":0} +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:48:12.789: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:43 +[It] should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 04:48:12.814: INFO: Waiting up to 5m0s for pod "downwardapi-volume-09ddfe17-30f4-4faf-a9a5-2d0bd9852982" in namespace "downward-api-474" to be "Succeeded or Failed" +Oct 26 04:48:12.817: INFO: Pod "downwardapi-volume-09ddfe17-30f4-4faf-a9a5-2d0bd9852982": Phase="Pending", Reason="", readiness=false. Elapsed: 3.146774ms +Oct 26 04:48:14.835: INFO: Pod "downwardapi-volume-09ddfe17-30f4-4faf-a9a5-2d0bd9852982": Phase="Pending", Reason="", readiness=false. Elapsed: 2.021348677s +Oct 26 04:48:16.840: INFO: Pod "downwardapi-volume-09ddfe17-30f4-4faf-a9a5-2d0bd9852982": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.025851595s +STEP: Saw pod success +Oct 26 04:48:16.840: INFO: Pod "downwardapi-volume-09ddfe17-30f4-4faf-a9a5-2d0bd9852982" satisfied condition "Succeeded or Failed" +Oct 26 04:48:16.842: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-09ddfe17-30f4-4faf-a9a5-2d0bd9852982 container client-container: +STEP: delete the pod +Oct 26 04:48:16.866: INFO: Waiting for pod downwardapi-volume-09ddfe17-30f4-4faf-a9a5-2d0bd9852982 to disappear +Oct 26 04:48:16.868: INFO: Pod downwardapi-volume-09ddfe17-30f4-4faf-a9a5-2d0bd9852982 no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:188 +Oct 26 04:48:16.868: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-474" for this suite. +•{"msg":"PASSED [sig-storage] Downward API volume should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":82,"skipped":1500,"failed":0} +SS +------------------------------ +[sig-node] ConfigMap + should fail to create ConfigMap with empty key [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:48:16.874: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should fail to create ConfigMap with empty key [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap that has name configmap-test-emptyKey-44df1499-20c9-45a0-899c-6da964dccebf +[AfterEach] [sig-node] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 04:48:16.889: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-1590" for this suite. +•{"msg":"PASSED [sig-node] ConfigMap should fail to create ConfigMap with empty key [Conformance]","total":356,"completed":83,"skipped":1502,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Namespaces [Serial] + should patch a Namespace [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:48:16.900: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename namespaces +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should patch a Namespace [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a Namespace +STEP: patching the Namespace +STEP: get the Namespace and ensuring it has the label +[AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/framework.go:188 +Oct 26 04:48:16.926: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "namespaces-4550" for this suite. +STEP: Destroying namespace "nspatchtest-7cb4c600-3afa-4a5a-bee8-b8b62a47dea9-3281" for this suite. +•{"msg":"PASSED [sig-api-machinery] Namespaces [Serial] should patch a Namespace [Conformance]","total":356,"completed":84,"skipped":1572,"failed":0} +SSSSS +------------------------------ +[sig-node] PodTemplates + should replace a pod template [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] PodTemplates + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:48:16.935: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename podtemplate +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should replace a pod template [Conformance] + test/e2e/framework/framework.go:652 +STEP: Create a pod template +STEP: Replace a pod template +Oct 26 04:48:16.982: INFO: Found updated podtemplate annotation: "true" + +[AfterEach] [sig-node] PodTemplates + test/e2e/framework/framework.go:188 +Oct 26 04:48:16.982: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "podtemplate-3464" for this suite. +•{"msg":"PASSED [sig-node] PodTemplates should replace a pod template [Conformance]","total":356,"completed":85,"skipped":1577,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-node] PreStop + should call prestop when killing a pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] PreStop + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:48:16.994: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename prestop +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] PreStop + test/e2e/node/pre_stop.go:159 +[It] should call prestop when killing a pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating server pod server in namespace prestop-8277 +STEP: Waiting for pods to come up. +STEP: Creating tester pod tester in namespace prestop-8277 +STEP: Deleting pre-stop pod +Oct 26 04:48:26.047: INFO: Saw: { + "Hostname": "server", + "Sent": null, + "Received": { + "prestop": 1 + }, + "Errors": null, + "Log": [ + "default/nettest has 0 endpoints ([]), which is less than 8 as expected. Waiting for all endpoints to come up.", + "default/nettest has 0 endpoints ([]), which is less than 8 as expected. Waiting for all endpoints to come up." + ], + "StillContactingPeers": true +} +STEP: Deleting the server pod +[AfterEach] [sig-node] PreStop + test/e2e/framework/framework.go:188 +Oct 26 04:48:26.057: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "prestop-8277" for this suite. + +• [SLOW TEST:9.077 seconds] +[sig-node] PreStop +test/e2e/node/framework.go:23 + should call prestop when killing a pod [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] PreStop should call prestop when killing a pod [Conformance]","total":356,"completed":86,"skipped":1588,"failed":0} +SS +------------------------------ +[sig-cli] Kubectl client Kubectl cluster-info + should check if Kubernetes control plane services is included in cluster-info [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:48:26.072: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[It] should check if Kubernetes control plane services is included in cluster-info [Conformance] + test/e2e/framework/framework.go:652 +STEP: validating cluster-info +Oct 26 04:48:26.088: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-5638 cluster-info' +Oct 26 04:48:26.155: INFO: stderr: "" +Oct 26 04:48:26.155: INFO: stdout: "\x1b[0;32mKubernetes control plane\x1b[0m is running at \x1b[0;33mhttps://100.64.0.1:443\x1b[0m\n\nTo further debug and diagnose cluster problems, use 'kubectl cluster-info dump'.\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 04:48:26.155: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-5638" for this suite. +•{"msg":"PASSED [sig-cli] Kubectl client Kubectl cluster-info should check if Kubernetes control plane services is included in cluster-info [Conformance]","total":356,"completed":87,"skipped":1590,"failed":0} +SSS +------------------------------ +[sig-storage] Projected downwardAPI + should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:48:26.162: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:43 +[It] should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 04:48:26.191: INFO: Waiting up to 5m0s for pod "downwardapi-volume-16cb9d9a-22dc-4f48-9390-7db592053abc" in namespace "projected-1262" to be "Succeeded or Failed" +Oct 26 04:48:26.195: INFO: Pod "downwardapi-volume-16cb9d9a-22dc-4f48-9390-7db592053abc": Phase="Pending", Reason="", readiness=false. Elapsed: 3.669068ms +Oct 26 04:48:28.200: INFO: Pod "downwardapi-volume-16cb9d9a-22dc-4f48-9390-7db592053abc": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008873884s +Oct 26 04:48:30.208: INFO: Pod "downwardapi-volume-16cb9d9a-22dc-4f48-9390-7db592053abc": Phase="Pending", Reason="", readiness=false. Elapsed: 4.016392267s +Oct 26 04:48:32.214: INFO: Pod "downwardapi-volume-16cb9d9a-22dc-4f48-9390-7db592053abc": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.022337195s +STEP: Saw pod success +Oct 26 04:48:32.214: INFO: Pod "downwardapi-volume-16cb9d9a-22dc-4f48-9390-7db592053abc" satisfied condition "Succeeded or Failed" +Oct 26 04:48:32.219: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-16cb9d9a-22dc-4f48-9390-7db592053abc container client-container: +STEP: delete the pod +Oct 26 04:48:32.233: INFO: Waiting for pod downwardapi-volume-16cb9d9a-22dc-4f48-9390-7db592053abc to disappear +Oct 26 04:48:32.236: INFO: Pod downwardapi-volume-16cb9d9a-22dc-4f48-9390-7db592053abc no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:188 +Oct 26 04:48:32.236: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-1262" for this suite. + +• [SLOW TEST:6.080 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected downwardAPI should set mode on item file [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":88,"skipped":1593,"failed":0} +SSSSSSSSSSSSS +------------------------------ +[sig-node] Kubelet when scheduling a read only busybox container + should not write to root filesystem [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Kubelet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:48:32.243: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubelet-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:40 +[It] should not write to root filesystem [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:48:32.286: INFO: The status of Pod busybox-readonly-fsa136936c-d644-44f3-bdda-c3ae5b4e9d83 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:48:34.289: INFO: The status of Pod busybox-readonly-fsa136936c-d644-44f3-bdda-c3ae5b4e9d83 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:48:36.298: INFO: The status of Pod busybox-readonly-fsa136936c-d644-44f3-bdda-c3ae5b4e9d83 is Running (Ready = true) +[AfterEach] [sig-node] Kubelet + test/e2e/framework/framework.go:188 +Oct 26 04:48:36.306: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubelet-test-2781" for this suite. +•{"msg":"PASSED [sig-node] Kubelet when scheduling a read only busybox container should not write to root filesystem [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":89,"skipped":1606,"failed":0} +SSSSS +------------------------------ +[sig-network] DNS + should provide DNS for pods for Subdomain [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] DNS + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:48:36.319: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename dns +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should provide DNS for pods for Subdomain [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a test headless service +STEP: Running these commands on wheezy: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local;check="$$(dig +notcp +noall +answer +search dns-test-service-2.dns-1360.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service-2.dns-1360.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service-2.dns-1360.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service-2.dns-1360.svc.cluster.local;sleep 1; done + +STEP: Running these commands on jessie: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local;check="$$(dig +notcp +noall +answer +search dns-test-service-2.dns-1360.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service-2.dns-1360.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service-2.dns-1360.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service-2.dns-1360.svc.cluster.local;sleep 1; done + +STEP: creating a pod to probe DNS +STEP: submitting the pod to kubernetes +STEP: retrieving the pod +STEP: looking for the results for each expected name from probers +Oct 26 04:48:40.379: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:40.381: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:40.384: INFO: Unable to read wheezy_udp@dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:40.389: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:40.391: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:40.393: INFO: Unable to read jessie_udp@dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:40.395: INFO: Unable to read jessie_tcp@dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:40.395: INFO: Lookups using dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local wheezy_udp@dns-test-service-2.dns-1360.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_udp@dns-test-service-2.dns-1360.svc.cluster.local jessie_tcp@dns-test-service-2.dns-1360.svc.cluster.local] + +Oct 26 04:48:45.405: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:45.408: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:45.415: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:45.417: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:45.421: INFO: Lookups using dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local] + +Oct 26 04:48:50.400: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:50.411: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:50.424: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:50.427: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:50.432: INFO: Lookups using dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local] + +Oct 26 04:48:55.399: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:55.404: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:55.423: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:55.439: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:48:55.450: INFO: Lookups using dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local] + +Oct 26 04:49:00.401: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:49:00.403: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:49:00.412: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:49:00.415: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:49:00.422: INFO: Lookups using dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local] + +Oct 26 04:49:05.405: INFO: Unable to read wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:49:05.411: INFO: Unable to read wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:49:05.420: INFO: Unable to read jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:49:05.423: INFO: Unable to read jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local from pod dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184: the server could not find the requested resource (get pods dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184) +Oct 26 04:49:05.427: INFO: Lookups using dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184 failed for: [wheezy_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local wheezy_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_udp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local jessie_tcp@dns-querier-2.dns-test-service-2.dns-1360.svc.cluster.local] + +Oct 26 04:49:10.419: INFO: DNS probes using dns-1360/dns-test-964eecc3-9cc6-455f-9dd9-047d5f437184 succeeded + +STEP: deleting the pod +STEP: deleting the test headless service +[AfterEach] [sig-network] DNS + test/e2e/framework/framework.go:188 +Oct 26 04:49:10.477: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "dns-1360" for this suite. + +• [SLOW TEST:34.171 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should provide DNS for pods for Subdomain [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] DNS should provide DNS for pods for Subdomain [Conformance]","total":356,"completed":90,"skipped":1611,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should update labels on modification [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:49:10.490: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:43 +[It] should update labels on modification [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating the pod +Oct 26 04:49:10.523: INFO: The status of Pod labelsupdate7e63c36e-1769-4c96-b392-2fb11ed632de is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:49:12.527: INFO: The status of Pod labelsupdate7e63c36e-1769-4c96-b392-2fb11ed632de is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:49:14.529: INFO: The status of Pod labelsupdate7e63c36e-1769-4c96-b392-2fb11ed632de is Running (Ready = true) +Oct 26 04:49:15.050: INFO: Successfully updated pod "labelsupdate7e63c36e-1769-4c96-b392-2fb11ed632de" +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:188 +Oct 26 04:49:17.064: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-4126" for this suite. + +• [SLOW TEST:6.582 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should update labels on modification [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected downwardAPI should update labels on modification [NodeConformance] [Conformance]","total":356,"completed":91,"skipped":1643,"failed":0} +SSSSSS +------------------------------ +[sig-network] Services + should provide secure master service [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:49:17.073: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should provide secure master service [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 04:49:17.089: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-2158" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 +•{"msg":"PASSED [sig-network] Services should provide secure master service [Conformance]","total":356,"completed":92,"skipped":1649,"failed":0} + +------------------------------ +[sig-apps] DisruptionController + should block an eviction until the PDB is updated to allow it [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:49:17.096: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename disruption +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:71 +[It] should block an eviction until the PDB is updated to allow it [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pdb that targets all three pods in a test replica set +STEP: Waiting for the pdb to be processed +STEP: First trying to evict a pod which shouldn't be evictable +STEP: Waiting for all pods to be running +Oct 26 04:49:19.131: INFO: pods: 0 < 3 +Oct 26 04:49:21.136: INFO: running pods: 0 < 3 +STEP: locating a running pod +STEP: Updating the pdb to allow a pod to be evicted +STEP: Waiting for the pdb to be processed +STEP: Trying to evict the same pod we tried earlier which should now be evictable +STEP: Waiting for all pods to be running +STEP: Waiting for the pdb to observed all healthy pods +STEP: Patching the pdb to disallow a pod to be evicted +STEP: Waiting for the pdb to be processed +STEP: Waiting for all pods to be running +Oct 26 04:49:25.203: INFO: running pods: 2 < 3 +STEP: locating a running pod +STEP: Deleting the pdb to allow a pod to be evicted +STEP: Waiting for the pdb to be deleted +STEP: Trying to evict the same pod we tried earlier which should now be evictable +STEP: Waiting for all pods to be running +[AfterEach] [sig-apps] DisruptionController + test/e2e/framework/framework.go:188 +Oct 26 04:49:27.233: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "disruption-9771" for this suite. + +• [SLOW TEST:10.153 seconds] +[sig-apps] DisruptionController +test/e2e/apps/framework.go:23 + should block an eviction until the PDB is updated to allow it [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] DisruptionController should block an eviction until the PDB is updated to allow it [Conformance]","total":356,"completed":93,"skipped":1649,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-node] Kubelet when scheduling a busybox Pod with hostAliases + should write entries to /etc/hosts [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Kubelet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:49:27.249: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubelet-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:40 +[It] should write entries to /etc/hosts [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:49:27.306: INFO: The status of Pod busybox-host-aliases5924babf-e0c0-426d-a717-f2f8ae669905 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:49:29.312: INFO: The status of Pod busybox-host-aliases5924babf-e0c0-426d-a717-f2f8ae669905 is Running (Ready = true) +[AfterEach] [sig-node] Kubelet + test/e2e/framework/framework.go:188 +Oct 26 04:49:29.319: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubelet-test-4578" for this suite. +•{"msg":"PASSED [sig-node] Kubelet when scheduling a busybox Pod with hostAliases should write entries to /etc/hosts [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":94,"skipped":1664,"failed":0} +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-auth] ServiceAccounts + should allow opting out of API token automount [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:49:29.328: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename svcaccounts +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should allow opting out of API token automount [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:49:29.356: INFO: created pod pod-service-account-defaultsa +Oct 26 04:49:29.356: INFO: pod pod-service-account-defaultsa service account token volume mount: true +Oct 26 04:49:29.366: INFO: created pod pod-service-account-mountsa +Oct 26 04:49:29.366: INFO: pod pod-service-account-mountsa service account token volume mount: true +Oct 26 04:49:29.377: INFO: created pod pod-service-account-nomountsa +Oct 26 04:49:29.377: INFO: pod pod-service-account-nomountsa service account token volume mount: false +Oct 26 04:49:29.384: INFO: created pod pod-service-account-defaultsa-mountspec +Oct 26 04:49:29.384: INFO: pod pod-service-account-defaultsa-mountspec service account token volume mount: true +Oct 26 04:49:29.397: INFO: created pod pod-service-account-mountsa-mountspec +Oct 26 04:49:29.398: INFO: pod pod-service-account-mountsa-mountspec service account token volume mount: true +Oct 26 04:49:29.411: INFO: created pod pod-service-account-nomountsa-mountspec +Oct 26 04:49:29.412: INFO: pod pod-service-account-nomountsa-mountspec service account token volume mount: true +Oct 26 04:49:29.430: INFO: created pod pod-service-account-defaultsa-nomountspec +Oct 26 04:49:29.430: INFO: pod pod-service-account-defaultsa-nomountspec service account token volume mount: false +Oct 26 04:49:29.435: INFO: created pod pod-service-account-mountsa-nomountspec +Oct 26 04:49:29.436: INFO: pod pod-service-account-mountsa-nomountspec service account token volume mount: false +Oct 26 04:49:29.443: INFO: created pod pod-service-account-nomountsa-nomountspec +Oct 26 04:49:29.443: INFO: pod pod-service-account-nomountsa-nomountspec service account token volume mount: false +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:188 +Oct 26 04:49:29.443: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "svcaccounts-4561" for this suite. +•{"msg":"PASSED [sig-auth] ServiceAccounts should allow opting out of API token automount [Conformance]","total":356,"completed":95,"skipped":1682,"failed":0} +SSSSSSSSSSSSS +------------------------------ +[sig-storage] CSIStorageCapacity + should support CSIStorageCapacities API operations [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] CSIStorageCapacity + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:49:29.471: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename csistoragecapacity +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support CSIStorageCapacities API operations [Conformance] + test/e2e/framework/framework.go:652 +STEP: getting /apis +STEP: getting /apis/storage.k8s.io +STEP: getting /apis/storage.k8s.io/v1 +STEP: creating +STEP: watching +Oct 26 04:49:29.554: INFO: starting watch +STEP: getting +STEP: listing in namespace +STEP: listing across namespaces +STEP: patching +STEP: updating +Oct 26 04:49:29.595: INFO: waiting for watch events with expected annotations in namespace +Oct 26 04:49:29.595: INFO: waiting for watch events with expected annotations across namespace +STEP: deleting +STEP: deleting a collection +[AfterEach] [sig-storage] CSIStorageCapacity + test/e2e/framework/framework.go:188 +Oct 26 04:49:29.706: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "csistoragecapacity-3409" for this suite. +•{"msg":"PASSED [sig-storage] CSIStorageCapacity should support CSIStorageCapacities API operations [Conformance]","total":356,"completed":96,"skipped":1695,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:49:29.849: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0644 on node default medium +Oct 26 04:49:30.975: INFO: Waiting up to 5m0s for pod "pod-13c500f9-b98e-4ca7-8189-0888ca0b7889" in namespace "emptydir-6757" to be "Succeeded or Failed" +Oct 26 04:49:30.978: INFO: Pod "pod-13c500f9-b98e-4ca7-8189-0888ca0b7889": Phase="Pending", Reason="", readiness=false. Elapsed: 2.486639ms +Oct 26 04:49:32.983: INFO: Pod "pod-13c500f9-b98e-4ca7-8189-0888ca0b7889": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007162104s +Oct 26 04:49:34.989: INFO: Pod "pod-13c500f9-b98e-4ca7-8189-0888ca0b7889": Phase="Pending", Reason="", readiness=false. Elapsed: 4.013266336s +Oct 26 04:49:36.992: INFO: Pod "pod-13c500f9-b98e-4ca7-8189-0888ca0b7889": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.016461459s +STEP: Saw pod success +Oct 26 04:49:36.992: INFO: Pod "pod-13c500f9-b98e-4ca7-8189-0888ca0b7889" satisfied condition "Succeeded or Failed" +Oct 26 04:49:36.994: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-13c500f9-b98e-4ca7-8189-0888ca0b7889 container test-container: +STEP: delete the pod +Oct 26 04:49:37.009: INFO: Waiting for pod pod-13c500f9-b98e-4ca7-8189-0888ca0b7889 to disappear +Oct 26 04:49:37.011: INFO: Pod pod-13c500f9-b98e-4ca7-8189-0888ca0b7889 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 04:49:37.011: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-6757" for this suite. + +• [SLOW TEST:7.167 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] EmptyDir volumes should support (root,0644,default) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":97,"skipped":1720,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should rollback without unnecessary restarts [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:49:37.019: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename daemonsets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:145 +[It] should rollback without unnecessary restarts [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:49:37.045: INFO: Create a RollingUpdate DaemonSet +Oct 26 04:49:37.047: INFO: Check that daemon pods launch on every node of the cluster +Oct 26 04:49:37.052: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:49:37.057: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 04:49:37.057: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 04:49:38.062: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:49:38.065: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 04:49:38.065: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 04:49:39.062: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:49:39.069: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 +Oct 26 04:49:39.069: INFO: Node i-098fc8365626c8e13 is running 0 daemon pod, expected 1 +Oct 26 04:49:40.063: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:49:40.065: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Oct 26 04:49:40.065: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +Oct 26 04:49:40.066: INFO: Update the DaemonSet to trigger a rollout +Oct 26 04:49:40.074: INFO: Updating DaemonSet daemon-set +Oct 26 04:49:43.093: INFO: Roll back the DaemonSet before rollout is complete +Oct 26 04:49:43.101: INFO: Updating DaemonSet daemon-set +Oct 26 04:49:43.101: INFO: Make sure DaemonSet rollback is complete +Oct 26 04:49:43.105: INFO: Wrong image for pod: daemon-set-jg8zv. Expected: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2, got: foo:non-existent. +Oct 26 04:49:43.105: INFO: Pod daemon-set-jg8zv is not available +Oct 26 04:49:43.114: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:49:44.123: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:49:45.122: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:49:46.119: INFO: Pod daemon-set-zkq6g is not available +Oct 26 04:49:46.122: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:110 +STEP: Deleting DaemonSet "daemon-set" +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-6470, will wait for the garbage collector to delete the pods +Oct 26 04:49:46.186: INFO: Deleting DaemonSet.extensions daemon-set took: 4.401807ms +Oct 26 04:49:46.286: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.514518ms +Oct 26 04:49:48.494: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 04:49:48.494: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Oct 26 04:49:48.496: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"9723"},"items":null} + +Oct 26 04:49:48.498: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"9723"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:188 +Oct 26 04:49:48.516: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "daemonsets-6470" for this suite. + +• [SLOW TEST:11.503 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should rollback without unnecessary restarts [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Daemon set [Serial] should rollback without unnecessary restarts [Conformance]","total":356,"completed":98,"skipped":1761,"failed":0} +SSSSSSSS +------------------------------ +[sig-apps] ReplicationController + should serve a basic image on each replica with a public image [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:49:48.522: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename replication-controller +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:56 +[It] should serve a basic image on each replica with a public image [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating replication controller my-hostname-basic-42332952-d6aa-4f72-8b71-9d82c0cefdac +Oct 26 04:49:48.593: INFO: Pod name my-hostname-basic-42332952-d6aa-4f72-8b71-9d82c0cefdac: Found 0 pods out of 1 +Oct 26 04:49:53.604: INFO: Pod name my-hostname-basic-42332952-d6aa-4f72-8b71-9d82c0cefdac: Found 1 pods out of 1 +Oct 26 04:49:53.604: INFO: Ensuring all pods for ReplicationController "my-hostname-basic-42332952-d6aa-4f72-8b71-9d82c0cefdac" are running +Oct 26 04:49:53.607: INFO: Pod "my-hostname-basic-42332952-d6aa-4f72-8b71-9d82c0cefdac-4hxg7" is running (conditions: [{Type:Initialized Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2022-10-26 04:49:48 +0000 UTC Reason: Message:} {Type:Ready Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2022-10-26 04:49:50 +0000 UTC Reason: Message:} {Type:ContainersReady Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2022-10-26 04:49:50 +0000 UTC Reason: Message:} {Type:PodScheduled Status:True LastProbeTime:0001-01-01 00:00:00 +0000 UTC LastTransitionTime:2022-10-26 04:49:48 +0000 UTC Reason: Message:}]) +Oct 26 04:49:53.607: INFO: Trying to dial the pod +Oct 26 04:49:58.617: INFO: Controller my-hostname-basic-42332952-d6aa-4f72-8b71-9d82c0cefdac: Got expected result from replica 1 [my-hostname-basic-42332952-d6aa-4f72-8b71-9d82c0cefdac-4hxg7]: "my-hostname-basic-42332952-d6aa-4f72-8b71-9d82c0cefdac-4hxg7", 1 of 1 required successes so far +[AfterEach] [sig-apps] ReplicationController + test/e2e/framework/framework.go:188 +Oct 26 04:49:58.617: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "replication-controller-3849" for this suite. + +• [SLOW TEST:10.102 seconds] +[sig-apps] ReplicationController +test/e2e/apps/framework.go:23 + should serve a basic image on each replica with a public image [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] ReplicationController should serve a basic image on each replica with a public image [Conformance]","total":356,"completed":99,"skipped":1769,"failed":0} +SSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] ReplicationController + should release no longer matching pods [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] ReplicationController + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:49:58.626: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename replication-controller +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] ReplicationController + test/e2e/apps/rc.go:56 +[It] should release no longer matching pods [Conformance] + test/e2e/framework/framework.go:652 +STEP: Given a ReplicationController is created +STEP: When the matched label of one of its pods change +Oct 26 04:49:58.653: INFO: Pod name pod-release: Found 0 pods out of 1 +Oct 26 04:50:03.658: INFO: Pod name pod-release: Found 1 pods out of 1 +STEP: Then the pod is released +[AfterEach] [sig-apps] ReplicationController + test/e2e/framework/framework.go:188 +Oct 26 04:50:04.725: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "replication-controller-4926" for this suite. + +• [SLOW TEST:6.137 seconds] +[sig-apps] ReplicationController +test/e2e/apps/framework.go:23 + should release no longer matching pods [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] ReplicationController should release no longer matching pods [Conformance]","total":356,"completed":100,"skipped":1785,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook + should execute prestop http hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:50:04.806: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-lifecycle-hook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:55 +STEP: create the container to handle the HTTPGet hook request. +Oct 26 04:50:04.869: INFO: The status of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:50:06.878: INFO: The status of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:50:08.907: INFO: The status of Pod pod-handle-http-request is Running (Ready = true) +[It] should execute prestop http hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the pod with lifecycle hook +Oct 26 04:50:08.939: INFO: The status of Pod pod-with-prestop-http-hook is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:50:10.944: INFO: The status of Pod pod-with-prestop-http-hook is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:50:12.943: INFO: The status of Pod pod-with-prestop-http-hook is Running (Ready = true) +STEP: delete the pod with lifecycle hook +Oct 26 04:50:12.954: INFO: Waiting for pod pod-with-prestop-http-hook to disappear +Oct 26 04:50:12.958: INFO: Pod pod-with-prestop-http-hook still exists +Oct 26 04:50:14.958: INFO: Waiting for pod pod-with-prestop-http-hook to disappear +Oct 26 04:50:14.968: INFO: Pod pod-with-prestop-http-hook no longer exists +STEP: check prestop hook +[AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/framework.go:188 +Oct 26 04:50:14.980: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-lifecycle-hook-5792" for this suite. + +• [SLOW TEST:10.181 seconds] +[sig-node] Container Lifecycle Hook +test/e2e/common/node/framework.go:23 + when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:46 + should execute prestop http hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop http hook properly [NodeConformance] [Conformance]","total":356,"completed":101,"skipped":1814,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:50:14.988: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:43 +[It] should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 04:50:15.017: INFO: Waiting up to 5m0s for pod "downwardapi-volume-ec94f326-180b-46b4-8f47-3e3b9651bbe3" in namespace "downward-api-8099" to be "Succeeded or Failed" +Oct 26 04:50:15.024: INFO: Pod "downwardapi-volume-ec94f326-180b-46b4-8f47-3e3b9651bbe3": Phase="Pending", Reason="", readiness=false. Elapsed: 6.724331ms +Oct 26 04:50:17.029: INFO: Pod "downwardapi-volume-ec94f326-180b-46b4-8f47-3e3b9651bbe3": Phase="Running", Reason="", readiness=true. Elapsed: 2.011295234s +Oct 26 04:50:19.035: INFO: Pod "downwardapi-volume-ec94f326-180b-46b4-8f47-3e3b9651bbe3": Phase="Running", Reason="", readiness=false. Elapsed: 4.017718635s +Oct 26 04:50:21.038: INFO: Pod "downwardapi-volume-ec94f326-180b-46b4-8f47-3e3b9651bbe3": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.020794427s +STEP: Saw pod success +Oct 26 04:50:21.038: INFO: Pod "downwardapi-volume-ec94f326-180b-46b4-8f47-3e3b9651bbe3" satisfied condition "Succeeded or Failed" +Oct 26 04:50:21.041: INFO: Trying to get logs from node i-098fc8365626c8e13 pod downwardapi-volume-ec94f326-180b-46b4-8f47-3e3b9651bbe3 container client-container: +STEP: delete the pod +Oct 26 04:50:21.052: INFO: Waiting for pod downwardapi-volume-ec94f326-180b-46b4-8f47-3e3b9651bbe3 to disappear +Oct 26 04:50:21.056: INFO: Pod downwardapi-volume-ec94f326-180b-46b4-8f47-3e3b9651bbe3 no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:188 +Oct 26 04:50:21.057: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-8099" for this suite. + +• [SLOW TEST:6.076 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should provide container's memory limit [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Downward API volume should provide container's memory limit [NodeConformance] [Conformance]","total":356,"completed":102,"skipped":1864,"failed":0} +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Watchers + should be able to restart watching from the last resource version observed by the previous watch [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:50:21.066: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename watch +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be able to restart watching from the last resource version observed by the previous watch [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a watch on configmaps +STEP: creating a new configmap +STEP: modifying the configmap once +STEP: closing the watch once it receives two notifications +Oct 26 04:50:21.087: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-6357 8a8eb0dd-6e41-48d3-8c41-6d2e5474e24e 9975 0 2022-10-26 04:50:21 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2022-10-26 04:50:21 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 04:50:21.087: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-6357 8a8eb0dd-6e41-48d3-8c41-6d2e5474e24e 9976 0 2022-10-26 04:50:21 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2022-10-26 04:50:21 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 1,},BinaryData:map[string][]byte{},Immutable:nil,} +STEP: modifying the configmap a second time, while the watch is closed +STEP: creating a new watch on configmaps from the last resource version observed by the first watch +STEP: deleting the configmap +STEP: Expecting to observe notifications for all changes to the configmap since the first watch closed +Oct 26 04:50:21.100: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-6357 8a8eb0dd-6e41-48d3-8c41-6d2e5474e24e 9977 0 2022-10-26 04:50:21 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2022-10-26 04:50:21 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 2,},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 04:50:21.101: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-watch-closed watch-6357 8a8eb0dd-6e41-48d3-8c41-6d2e5474e24e 9978 0 2022-10-26 04:50:21 +0000 UTC map[watch-this-configmap:watch-closed-and-restarted] map[] [] [] [{e2e.test Update v1 2022-10-26 04:50:21 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 2,},BinaryData:map[string][]byte{},Immutable:nil,} +[AfterEach] [sig-api-machinery] Watchers + test/e2e/framework/framework.go:188 +Oct 26 04:50:21.101: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "watch-6357" for this suite. +•{"msg":"PASSED [sig-api-machinery] Watchers should be able to restart watching from the last resource version observed by the previous watch [Conformance]","total":356,"completed":103,"skipped":1882,"failed":0} +SS +------------------------------ +[sig-api-machinery] Watchers + should receive events on concurrent watches in same order [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:50:21.110: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename watch +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should receive events on concurrent watches in same order [Conformance] + test/e2e/framework/framework.go:652 +STEP: getting a starting resourceVersion +STEP: starting a background goroutine to produce watch events +STEP: creating watches starting from each resource version of the events produced and verifying they all receive resource versions in the same order +[AfterEach] [sig-api-machinery] Watchers + test/e2e/framework/framework.go:188 +Oct 26 04:50:23.915: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "watch-4337" for this suite. +•{"msg":"PASSED [sig-api-machinery] Watchers should receive events on concurrent watches in same order [Conformance]","total":356,"completed":104,"skipped":1884,"failed":0} +SSSSSSSSS +------------------------------ +[sig-storage] EmptyDir wrapper volumes + should not conflict [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:50:24.017: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir-wrapper +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should not conflict [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:50:24.048: INFO: The status of Pod pod-secrets-3b812dbc-55d6-4a53-be8c-1b832077afd7 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:50:26.072: INFO: The status of Pod pod-secrets-3b812dbc-55d6-4a53-be8c-1b832077afd7 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:50:28.053: INFO: The status of Pod pod-secrets-3b812dbc-55d6-4a53-be8c-1b832077afd7 is Running (Ready = true) +STEP: Cleaning up the secret +STEP: Cleaning up the configmap +STEP: Cleaning up the pod +[AfterEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/framework.go:188 +Oct 26 04:50:28.068: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-wrapper-7598" for this suite. +•{"msg":"PASSED [sig-storage] EmptyDir wrapper volumes should not conflict [Conformance]","total":356,"completed":105,"skipped":1893,"failed":0} +SSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (non-root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:50:28.085: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (non-root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0777 on node default medium +Oct 26 04:50:28.108: INFO: Waiting up to 5m0s for pod "pod-42d1c0f6-b997-4ef0-99a4-9979f89e7144" in namespace "emptydir-8172" to be "Succeeded or Failed" +Oct 26 04:50:28.110: INFO: Pod "pod-42d1c0f6-b997-4ef0-99a4-9979f89e7144": Phase="Pending", Reason="", readiness=false. Elapsed: 1.881873ms +Oct 26 04:50:30.117: INFO: Pod "pod-42d1c0f6-b997-4ef0-99a4-9979f89e7144": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008680127s +Oct 26 04:50:32.124: INFO: Pod "pod-42d1c0f6-b997-4ef0-99a4-9979f89e7144": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015276114s +Oct 26 04:50:34.128: INFO: Pod "pod-42d1c0f6-b997-4ef0-99a4-9979f89e7144": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.019116768s +STEP: Saw pod success +Oct 26 04:50:34.128: INFO: Pod "pod-42d1c0f6-b997-4ef0-99a4-9979f89e7144" satisfied condition "Succeeded or Failed" +Oct 26 04:50:34.130: INFO: Trying to get logs from node i-098fc8365626c8e13 pod pod-42d1c0f6-b997-4ef0-99a4-9979f89e7144 container test-container: +STEP: delete the pod +Oct 26 04:50:34.142: INFO: Waiting for pod pod-42d1c0f6-b997-4ef0-99a4-9979f89e7144 to disappear +Oct 26 04:50:34.143: INFO: Pod pod-42d1c0f6-b997-4ef0-99a4-9979f89e7144 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 04:50:34.143: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-8172" for this suite. + +• [SLOW TEST:6.066 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (non-root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] EmptyDir volumes should support (non-root,0777,default) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":106,"skipped":1898,"failed":0} +SSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:50:34.153: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:43 +[It] should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 04:50:34.182: INFO: Waiting up to 5m0s for pod "downwardapi-volume-2b76d0d6-5c2b-438b-bd1d-0dca375111d8" in namespace "projected-5027" to be "Succeeded or Failed" +Oct 26 04:50:34.194: INFO: Pod "downwardapi-volume-2b76d0d6-5c2b-438b-bd1d-0dca375111d8": Phase="Pending", Reason="", readiness=false. Elapsed: 12.908553ms +Oct 26 04:50:36.204: INFO: Pod "downwardapi-volume-2b76d0d6-5c2b-438b-bd1d-0dca375111d8": Phase="Pending", Reason="", readiness=false. Elapsed: 2.022017245s +Oct 26 04:50:38.208: INFO: Pod "downwardapi-volume-2b76d0d6-5c2b-438b-bd1d-0dca375111d8": Phase="Pending", Reason="", readiness=false. Elapsed: 4.026385771s +Oct 26 04:50:40.216: INFO: Pod "downwardapi-volume-2b76d0d6-5c2b-438b-bd1d-0dca375111d8": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.033960102s +STEP: Saw pod success +Oct 26 04:50:40.216: INFO: Pod "downwardapi-volume-2b76d0d6-5c2b-438b-bd1d-0dca375111d8" satisfied condition "Succeeded or Failed" +Oct 26 04:50:40.218: INFO: Trying to get logs from node i-098fc8365626c8e13 pod downwardapi-volume-2b76d0d6-5c2b-438b-bd1d-0dca375111d8 container client-container: +STEP: delete the pod +Oct 26 04:50:40.234: INFO: Waiting for pod downwardapi-volume-2b76d0d6-5c2b-438b-bd1d-0dca375111d8 to disappear +Oct 26 04:50:40.237: INFO: Pod downwardapi-volume-2b76d0d6-5c2b-438b-bd1d-0dca375111d8 no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:188 +Oct 26 04:50:40.237: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-5027" for this suite. + +• [SLOW TEST:6.090 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected downwardAPI should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":107,"skipped":1911,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:50:40.243: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name configmap-test-volume-e8d51206-d189-4690-8c9d-4960e3dfcbe4 +STEP: Creating a pod to test consume configMaps +Oct 26 04:50:40.280: INFO: Waiting up to 5m0s for pod "pod-configmaps-7f6969c4-7a4d-47ed-a7f9-0c4ae552ba30" in namespace "configmap-5961" to be "Succeeded or Failed" +Oct 26 04:50:40.287: INFO: Pod "pod-configmaps-7f6969c4-7a4d-47ed-a7f9-0c4ae552ba30": Phase="Pending", Reason="", readiness=false. Elapsed: 6.972061ms +Oct 26 04:50:42.293: INFO: Pod "pod-configmaps-7f6969c4-7a4d-47ed-a7f9-0c4ae552ba30": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013435905s +Oct 26 04:50:44.300: INFO: Pod "pod-configmaps-7f6969c4-7a4d-47ed-a7f9-0c4ae552ba30": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.020396447s +STEP: Saw pod success +Oct 26 04:50:44.301: INFO: Pod "pod-configmaps-7f6969c4-7a4d-47ed-a7f9-0c4ae552ba30" satisfied condition "Succeeded or Failed" +Oct 26 04:50:44.307: INFO: Trying to get logs from node i-098fc8365626c8e13 pod pod-configmaps-7f6969c4-7a4d-47ed-a7f9-0c4ae552ba30 container agnhost-container: +STEP: delete the pod +Oct 26 04:50:44.329: INFO: Waiting for pod pod-configmaps-7f6969c4-7a4d-47ed-a7f9-0c4ae552ba30 to disappear +Oct 26 04:50:44.332: INFO: Pod pod-configmaps-7f6969c4-7a4d-47ed-a7f9-0c4ae552ba30 no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 04:50:44.332: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-5961" for this suite. +•{"msg":"PASSED [sig-storage] ConfigMap should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":108,"skipped":1949,"failed":0} +SSSSSSSSSSSSSS +------------------------------ +[sig-node] Pods Extended Pods Set QOS Class + should be set on Pods with matching resource requests and limits for memory and cpu [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Pods Extended + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:50:44.342: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pods +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] Pods Set QOS Class + test/e2e/node/pods.go:152 +[It] should be set on Pods with matching resource requests and limits for memory and cpu [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating the pod +STEP: submitting the pod to kubernetes +STEP: verifying QOS class is set on the pod +[AfterEach] [sig-node] Pods Extended + test/e2e/framework/framework.go:188 +Oct 26 04:50:44.372: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pods-1943" for this suite. +•{"msg":"PASSED [sig-node] Pods Extended Pods Set QOS Class should be set on Pods with matching resource requests and limits for memory and cpu [Conformance]","total":356,"completed":109,"skipped":1963,"failed":0} +S +------------------------------ +[sig-network] Services + should have session affinity work for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:50:44.393: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should have session affinity work for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating service in namespace services-2407 +STEP: creating service affinity-clusterip in namespace services-2407 +STEP: creating replication controller affinity-clusterip in namespace services-2407 +I1026 04:50:44.441627 20 runners.go:193] Created replication controller with name: affinity-clusterip, namespace: services-2407, replica count: 3 +I1026 04:50:47.500388 20 runners.go:193] affinity-clusterip Pods: 3 out of 3 created, 3 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Oct 26 04:50:47.504: INFO: Creating new exec pod +Oct 26 04:50:52.516: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-2407 exec execpod-affinityctd4r -- /bin/sh -x -c echo hostName | nc -v -t -w 2 affinity-clusterip 80' +Oct 26 04:50:52.720: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 affinity-clusterip 80\nConnection to affinity-clusterip 80 port [tcp/http] succeeded!\n" +Oct 26 04:50:52.720: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 04:50:52.720: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-2407 exec execpod-affinityctd4r -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.71.184.11 80' +Oct 26 04:50:52.861: INFO: stderr: "+ nc -v -t -w 2 100.71.184.11 80\n+ echo hostName\nConnection to 100.71.184.11 80 port [tcp/http] succeeded!\n" +Oct 26 04:50:52.861: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 04:50:52.861: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-2407 exec execpod-affinityctd4r -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://100.71.184.11:80/ ; done' +Oct 26 04:50:53.051: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.71.184.11:80/\n" +Oct 26 04:50:53.051: INFO: stdout: "\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd\naffinity-clusterip-x2wvd" +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Received response from host: affinity-clusterip-x2wvd +Oct 26 04:50:53.051: INFO: Cleaning up the exec pod +STEP: deleting ReplicationController affinity-clusterip in namespace services-2407, will wait for the garbage collector to delete the pods +Oct 26 04:50:53.124: INFO: Deleting ReplicationController affinity-clusterip took: 4.164552ms +Oct 26 04:50:53.225: INFO: Terminating ReplicationController affinity-clusterip pods took: 100.66791ms +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 04:50:55.149: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-2407" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:10.765 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should have session affinity work for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should have session affinity work for service with type clusterIP [LinuxOnly] [Conformance]","total":356,"completed":110,"skipped":1964,"failed":0} +SS +------------------------------ +[sig-storage] Secrets + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:50:55.158: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating secret with name secret-test-6cfa08b8-dc4c-41f8-ad63-ac39e597c120 +STEP: Creating a pod to test consume secrets +Oct 26 04:50:55.188: INFO: Waiting up to 5m0s for pod "pod-secrets-0d61155e-ef04-459c-9290-32546d228d25" in namespace "secrets-5049" to be "Succeeded or Failed" +Oct 26 04:50:55.196: INFO: Pod "pod-secrets-0d61155e-ef04-459c-9290-32546d228d25": Phase="Pending", Reason="", readiness=false. Elapsed: 8.298189ms +Oct 26 04:50:57.200: INFO: Pod "pod-secrets-0d61155e-ef04-459c-9290-32546d228d25": Phase="Running", Reason="", readiness=true. Elapsed: 2.0124254s +Oct 26 04:50:59.211: INFO: Pod "pod-secrets-0d61155e-ef04-459c-9290-32546d228d25": Phase="Running", Reason="", readiness=false. Elapsed: 4.022535677s +Oct 26 04:51:01.214: INFO: Pod "pod-secrets-0d61155e-ef04-459c-9290-32546d228d25": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.026312606s +STEP: Saw pod success +Oct 26 04:51:01.214: INFO: Pod "pod-secrets-0d61155e-ef04-459c-9290-32546d228d25" satisfied condition "Succeeded or Failed" +Oct 26 04:51:01.217: INFO: Trying to get logs from node i-098fc8365626c8e13 pod pod-secrets-0d61155e-ef04-459c-9290-32546d228d25 container secret-volume-test: +STEP: delete the pod +Oct 26 04:51:01.231: INFO: Waiting for pod pod-secrets-0d61155e-ef04-459c-9290-32546d228d25 to disappear +Oct 26 04:51:01.234: INFO: Pod pod-secrets-0d61155e-ef04-459c-9290-32546d228d25 no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/framework.go:188 +Oct 26 04:51:01.234: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-5049" for this suite. + +• [SLOW TEST:6.084 seconds] +[sig-storage] Secrets +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Secrets should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":111,"skipped":1966,"failed":0} +SSSSSSSSS +------------------------------ +[sig-apps] Deployment + should validate Deployment Status endpoints [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:51:01.243: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename deployment +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] should validate Deployment Status endpoints [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a Deployment +Oct 26 04:51:01.281: INFO: Creating simple deployment test-deployment-894dk +Oct 26 04:51:01.293: INFO: deployment "test-deployment-894dk" doesn't have the required revision set +Oct 26 04:51:03.304: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 4, 51, 1, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 4, 51, 1, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 4, 51, 1, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 4, 51, 1, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-deployment-894dk-688c4d6789\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Getting /status +Oct 26 04:51:05.320: INFO: Deployment test-deployment-894dk has Conditions: [{Available True 2022-10-26 04:51:03 +0000 UTC 2022-10-26 04:51:03 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} {Progressing True 2022-10-26 04:51:03 +0000 UTC 2022-10-26 04:51:01 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-894dk-688c4d6789" has successfully progressed.}] +STEP: updating Deployment Status +Oct 26 04:51:05.328: INFO: updatedStatus.Conditions: []v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 4, 51, 3, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 4, 51, 3, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 4, 51, 3, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 4, 51, 1, 0, time.Local), Reason:"NewReplicaSetAvailable", Message:"ReplicaSet \"test-deployment-894dk-688c4d6789\" has successfully progressed."}, v1.DeploymentCondition{Type:"StatusUpdate", Status:"True", LastUpdateTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"E2E", Message:"Set from e2e test"}} +STEP: watching for the Deployment status to be updated +Oct 26 04:51:05.329: INFO: Observed &Deployment event: ADDED +Oct 26 04:51:05.329: INFO: Observed Deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2022-10-26 04:51:01 +0000 UTC 2022-10-26 04:51:01 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-894dk-688c4d6789"} +Oct 26 04:51:05.330: INFO: Observed &Deployment event: MODIFIED +Oct 26 04:51:05.330: INFO: Observed Deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2022-10-26 04:51:01 +0000 UTC 2022-10-26 04:51:01 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-894dk-688c4d6789"} +Oct 26 04:51:05.330: INFO: Observed Deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2022-10-26 04:51:01 +0000 UTC 2022-10-26 04:51:01 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} +Oct 26 04:51:05.330: INFO: Observed &Deployment event: MODIFIED +Oct 26 04:51:05.330: INFO: Observed Deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2022-10-26 04:51:01 +0000 UTC 2022-10-26 04:51:01 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} +Oct 26 04:51:05.330: INFO: Observed Deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2022-10-26 04:51:01 +0000 UTC 2022-10-26 04:51:01 +0000 UTC ReplicaSetUpdated ReplicaSet "test-deployment-894dk-688c4d6789" is progressing.} +Oct 26 04:51:05.330: INFO: Observed &Deployment event: MODIFIED +Oct 26 04:51:05.331: INFO: Observed Deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2022-10-26 04:51:03 +0000 UTC 2022-10-26 04:51:03 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} +Oct 26 04:51:05.331: INFO: Observed Deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2022-10-26 04:51:03 +0000 UTC 2022-10-26 04:51:01 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-894dk-688c4d6789" has successfully progressed.} +Oct 26 04:51:05.331: INFO: Observed &Deployment event: MODIFIED +Oct 26 04:51:05.331: INFO: Observed Deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2022-10-26 04:51:03 +0000 UTC 2022-10-26 04:51:03 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} +Oct 26 04:51:05.331: INFO: Observed Deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2022-10-26 04:51:03 +0000 UTC 2022-10-26 04:51:01 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-894dk-688c4d6789" has successfully progressed.} +Oct 26 04:51:05.331: INFO: Found Deployment test-deployment-894dk in namespace deployment-3394 with labels: map[e2e:testing name:httpd] annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {StatusUpdate True 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test} +Oct 26 04:51:05.331: INFO: Deployment test-deployment-894dk has an updated status +STEP: patching the Statefulset Status +Oct 26 04:51:05.331: INFO: Patch payload: {"status":{"conditions":[{"type":"StatusPatched","status":"True"}]}} +Oct 26 04:51:05.336: INFO: Patched status conditions: []v1.DeploymentCondition{v1.DeploymentCondition{Type:"StatusPatched", Status:"True", LastUpdateTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"", Message:""}} +STEP: watching for the Deployment status to be patched +Oct 26 04:51:05.337: INFO: Observed &Deployment event: ADDED +Oct 26 04:51:05.337: INFO: Observed deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2022-10-26 04:51:01 +0000 UTC 2022-10-26 04:51:01 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-894dk-688c4d6789"} +Oct 26 04:51:05.338: INFO: Observed &Deployment event: MODIFIED +Oct 26 04:51:05.338: INFO: Observed deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2022-10-26 04:51:01 +0000 UTC 2022-10-26 04:51:01 +0000 UTC NewReplicaSetCreated Created new replica set "test-deployment-894dk-688c4d6789"} +Oct 26 04:51:05.338: INFO: Observed deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2022-10-26 04:51:01 +0000 UTC 2022-10-26 04:51:01 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} +Oct 26 04:51:05.338: INFO: Observed &Deployment event: MODIFIED +Oct 26 04:51:05.338: INFO: Observed deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available False 2022-10-26 04:51:01 +0000 UTC 2022-10-26 04:51:01 +0000 UTC MinimumReplicasUnavailable Deployment does not have minimum availability.} +Oct 26 04:51:05.338: INFO: Observed deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2022-10-26 04:51:01 +0000 UTC 2022-10-26 04:51:01 +0000 UTC ReplicaSetUpdated ReplicaSet "test-deployment-894dk-688c4d6789" is progressing.} +Oct 26 04:51:05.338: INFO: Observed &Deployment event: MODIFIED +Oct 26 04:51:05.338: INFO: Observed deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2022-10-26 04:51:03 +0000 UTC 2022-10-26 04:51:03 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} +Oct 26 04:51:05.338: INFO: Observed deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2022-10-26 04:51:03 +0000 UTC 2022-10-26 04:51:01 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-894dk-688c4d6789" has successfully progressed.} +Oct 26 04:51:05.338: INFO: Observed &Deployment event: MODIFIED +Oct 26 04:51:05.338: INFO: Observed deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Available True 2022-10-26 04:51:03 +0000 UTC 2022-10-26 04:51:03 +0000 UTC MinimumReplicasAvailable Deployment has minimum availability.} +Oct 26 04:51:05.338: INFO: Observed deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {Progressing True 2022-10-26 04:51:03 +0000 UTC 2022-10-26 04:51:01 +0000 UTC NewReplicaSetAvailable ReplicaSet "test-deployment-894dk-688c4d6789" has successfully progressed.} +Oct 26 04:51:05.338: INFO: Observed deployment test-deployment-894dk in namespace deployment-3394 with annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {StatusUpdate True 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test} +Oct 26 04:51:05.339: INFO: Observed &Deployment event: MODIFIED +Oct 26 04:51:05.339: INFO: Found deployment test-deployment-894dk in namespace deployment-3394 with labels: map[e2e:testing name:httpd] annotations: map[deployment.kubernetes.io/revision:1] & Conditions: {StatusPatched True 0001-01-01 00:00:00 +0000 UTC 0001-01-01 00:00:00 +0000 UTC } +Oct 26 04:51:05.339: INFO: Deployment test-deployment-894dk has a patched status +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Oct 26 04:51:05.347: INFO: Deployment "test-deployment-894dk": +&Deployment{ObjectMeta:{test-deployment-894dk deployment-3394 2c0e2bdd-ecb2-41d8-951c-7b5202fb1c7b 10477 1 2022-10-26 04:51:01 +0000 UTC map[e2e:testing name:httpd] map[deployment.kubernetes.io/revision:1] [] [] [{e2e.test Update apps/v1 2022-10-26 04:51:01 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:e2e":{},"f:name":{}}},"f:spec":{"f:progressDeadlineSeconds":{},"f:replicas":{},"f:revisionHistoryLimit":{},"f:selector":{},"f:strategy":{"f:rollingUpdate":{".":{},"f:maxSurge":{},"f:maxUnavailable":{}},"f:type":{}},"f:template":{"f:metadata":{"f:labels":{".":{},"f:e2e":{},"f:name":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 04:51:03 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/revision":{}}},"f:status":{"f:availableReplicas":{},"f:conditions":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{},"f:updatedReplicas":{}}} status} {e2e.test Update apps/v1 2022-10-26 04:51:05 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"StatusPatched\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}}}} status}]},Spec:DeploymentSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{e2e: testing,name: httpd,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[e2e:testing name:httpd] map[] [] [] []} {[] [] [{httpd k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc004935468 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},Strategy:DeploymentStrategy{Type:RollingUpdate,RollingUpdate:&RollingUpdateDeployment{MaxUnavailable:25%!,(MISSING)MaxSurge:25%!,(MISSING)},},MinReadySeconds:0,RevisionHistoryLimit:*10,Paused:false,ProgressDeadlineSeconds:*600,},Status:DeploymentStatus{ObservedGeneration:1,Replicas:1,UpdatedReplicas:1,AvailableReplicas:1,UnavailableReplicas:0,Conditions:[]DeploymentCondition{DeploymentCondition{Type:StatusPatched,Status:True,Reason:,Message:,LastUpdateTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:0001-01-01 00:00:00 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + +Oct 26 04:51:05.356: INFO: New ReplicaSet "test-deployment-894dk-688c4d6789" of Deployment "test-deployment-894dk": +&ReplicaSet{ObjectMeta:{test-deployment-894dk-688c4d6789 deployment-3394 ba361eff-ec0b-4e25-9036-5d5ef4a3ae7f 10472 1 2022-10-26 04:51:01 +0000 UTC map[e2e:testing name:httpd pod-template-hash:688c4d6789] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-deployment-894dk 2c0e2bdd-ecb2-41d8-951c-7b5202fb1c7b 0xc0044e3740 0xc0044e3741}] [] [{kube-controller-manager Update apps/v1 2022-10-26 04:51:01 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:e2e":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"2c0e2bdd-ecb2-41d8-951c-7b5202fb1c7b\"}":{}}},"f:spec":{"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:e2e":{},"f:name":{},"f:pod-template-hash":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 04:51:03 +0000 UTC FieldsV1 {"f:status":{"f:availableReplicas":{},"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{e2e: testing,name: httpd,pod-template-hash: 688c4d6789,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[e2e:testing name:httpd pod-template-hash:688c4d6789] map[] [] [] []} {[] [] [{httpd k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0044e37e8 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:1,FullyLabeledReplicas:1,ObservedGeneration:1,ReadyReplicas:1,AvailableReplicas:1,Conditions:[]ReplicaSetCondition{},},} +Oct 26 04:51:05.369: INFO: Pod "test-deployment-894dk-688c4d6789-rtdvq" is available: +&Pod{ObjectMeta:{test-deployment-894dk-688c4d6789-rtdvq test-deployment-894dk-688c4d6789- deployment-3394 9ffc15a5-f52d-49fb-bf05-39ef5eeffdac 10471 0 2022-10-26 04:51:01 +0000 UTC map[e2e:testing name:httpd pod-template-hash:688c4d6789] map[] [{apps/v1 ReplicaSet test-deployment-894dk-688c4d6789 ba361eff-ec0b-4e25-9036-5d5ef4a3ae7f 0xc0044e3b60 0xc0044e3b61}] [] [{kube-controller-manager Update v1 2022-10-26 04:51:01 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:e2e":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"ba361eff-ec0b-4e25-9036-5d5ef4a3ae7f\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 04:51:03 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.1.231\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-pzf42,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-pzf42,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:51:01 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:51:03 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:51:03 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 04:51:01 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:100.96.1.231,StartTime:2022-10-26 04:51:01 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 04:51:02 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://f7ad95451549fea9762a1c8c7b48ace3a37f03f751602a7ae152af8d41bbcf35,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.1.231,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/framework.go:188 +Oct 26 04:51:05.369: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "deployment-3394" for this suite. +•{"msg":"PASSED [sig-apps] Deployment should validate Deployment Status endpoints [Conformance]","total":356,"completed":112,"skipped":1975,"failed":0} +SSS +------------------------------ +[sig-storage] Projected secret + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:51:05.405: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating projection with secret that has name projected-secret-test-e7b36bf3-e898-42f2-8049-ae8c4b0c3e7a +STEP: Creating a pod to test consume secrets +Oct 26 04:51:05.473: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-22de8e04-1a29-4988-844d-ed2039c09e5b" in namespace "projected-5264" to be "Succeeded or Failed" +Oct 26 04:51:05.478: INFO: Pod "pod-projected-secrets-22de8e04-1a29-4988-844d-ed2039c09e5b": Phase="Pending", Reason="", readiness=false. Elapsed: 5.033524ms +Oct 26 04:51:07.481: INFO: Pod "pod-projected-secrets-22de8e04-1a29-4988-844d-ed2039c09e5b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007862397s +Oct 26 04:51:09.487: INFO: Pod "pod-projected-secrets-22de8e04-1a29-4988-844d-ed2039c09e5b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.013817812s +STEP: Saw pod success +Oct 26 04:51:09.487: INFO: Pod "pod-projected-secrets-22de8e04-1a29-4988-844d-ed2039c09e5b" satisfied condition "Succeeded or Failed" +Oct 26 04:51:09.489: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-projected-secrets-22de8e04-1a29-4988-844d-ed2039c09e5b container projected-secret-volume-test: +STEP: delete the pod +Oct 26 04:51:09.508: INFO: Waiting for pod pod-projected-secrets-22de8e04-1a29-4988-844d-ed2039c09e5b to disappear +Oct 26 04:51:09.512: INFO: Pod pod-projected-secrets-22de8e04-1a29-4988-844d-ed2039c09e5b no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:188 +Oct 26 04:51:09.512: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-5264" for this suite. +•{"msg":"PASSED [sig-storage] Projected secret should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":113,"skipped":1978,"failed":0} +SSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should retry creating failed daemon pods [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:51:09.520: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename daemonsets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:145 +[It] should retry creating failed daemon pods [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a simple DaemonSet "daemon-set" +STEP: Check that daemon pods launch on every node of the cluster. +Oct 26 04:51:09.562: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:51:09.567: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 04:51:09.567: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 04:51:10.583: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:51:10.586: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 04:51:10.587: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 04:51:11.575: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:51:11.577: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 04:51:11.578: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 04:51:12.570: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:51:12.573: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Oct 26 04:51:12.573: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +STEP: Set a daemon pod's phase to 'Failed', check that the daemon pod is revived. +Oct 26 04:51:12.600: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:51:12.608: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Oct 26 04:51:12.608: INFO: Node i-098fc8365626c8e13 is running 0 daemon pod, expected 1 +Oct 26 04:51:13.614: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:51:13.616: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Oct 26 04:51:13.616: INFO: Node i-098fc8365626c8e13 is running 0 daemon pod, expected 1 +Oct 26 04:51:14.614: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:51:14.616: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Oct 26 04:51:14.616: INFO: Node i-098fc8365626c8e13 is running 0 daemon pod, expected 1 +Oct 26 04:51:15.618: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 04:51:15.621: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Oct 26 04:51:15.621: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +STEP: Wait for the failed daemon pod to be completely deleted. +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:110 +STEP: Deleting DaemonSet "daemon-set" +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-3834, will wait for the garbage collector to delete the pods +Oct 26 04:51:15.680: INFO: Deleting DaemonSet.extensions daemon-set took: 3.854253ms +Oct 26 04:51:15.781: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.748504ms +Oct 26 04:51:17.885: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 04:51:17.885: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Oct 26 04:51:17.888: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"10625"},"items":null} + +Oct 26 04:51:17.895: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"10625"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:188 +Oct 26 04:51:17.904: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "daemonsets-3834" for this suite. + +• [SLOW TEST:8.391 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should retry creating failed daemon pods [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Daemon set [Serial] should retry creating failed daemon pods [Conformance]","total":356,"completed":114,"skipped":1999,"failed":0} +SSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:51:17.911: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0777 on node default medium +Oct 26 04:51:17.934: INFO: Waiting up to 5m0s for pod "pod-45c76deb-b982-4b87-bf13-993c206f84cd" in namespace "emptydir-6737" to be "Succeeded or Failed" +Oct 26 04:51:17.937: INFO: Pod "pod-45c76deb-b982-4b87-bf13-993c206f84cd": Phase="Pending", Reason="", readiness=false. Elapsed: 3.248159ms +Oct 26 04:51:19.945: INFO: Pod "pod-45c76deb-b982-4b87-bf13-993c206f84cd": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010688055s +Oct 26 04:51:21.951: INFO: Pod "pod-45c76deb-b982-4b87-bf13-993c206f84cd": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.017289901s +STEP: Saw pod success +Oct 26 04:51:21.951: INFO: Pod "pod-45c76deb-b982-4b87-bf13-993c206f84cd" satisfied condition "Succeeded or Failed" +Oct 26 04:51:21.954: INFO: Trying to get logs from node i-098fc8365626c8e13 pod pod-45c76deb-b982-4b87-bf13-993c206f84cd container test-container: +STEP: delete the pod +Oct 26 04:51:21.965: INFO: Waiting for pod pod-45c76deb-b982-4b87-bf13-993c206f84cd to disappear +Oct 26 04:51:21.969: INFO: Pod pod-45c76deb-b982-4b87-bf13-993c206f84cd no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 04:51:21.969: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-6737" for this suite. +•{"msg":"PASSED [sig-storage] EmptyDir volumes should support (root,0777,default) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":115,"skipped":2002,"failed":0} +SSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and capture the life of a secret. [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:51:21.978: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename resourcequota +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should create a ResourceQuota and capture the life of a secret. [Conformance] + test/e2e/framework/framework.go:652 +STEP: Discovering how many secrets are in namespace by default +STEP: Counting existing ResourceQuota +STEP: Creating a ResourceQuota +STEP: Ensuring resource quota status is calculated +STEP: Creating a Secret +STEP: Ensuring resource quota status captures secret creation +STEP: Deleting a secret +STEP: Ensuring resource quota status released usage +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:188 +Oct 26 04:51:38.066: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "resourcequota-8891" for this suite. + +• [SLOW TEST:16.098 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should create a ResourceQuota and capture the life of a secret. [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a secret. [Conformance]","total":356,"completed":116,"skipped":2023,"failed":0} +[sig-apps] DisruptionController + should update/patch PodDisruptionBudget status [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:51:38.076: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename disruption +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:71 +[It] should update/patch PodDisruptionBudget status [Conformance] + test/e2e/framework/framework.go:652 +STEP: Waiting for the pdb to be processed +STEP: Updating PodDisruptionBudget status +STEP: Waiting for all pods to be running +Oct 26 04:51:40.116: INFO: running pods: 0 < 1 +Oct 26 04:51:42.123: INFO: running pods: 0 < 1 +STEP: locating a running pod +STEP: Waiting for the pdb to be processed +STEP: Patching PodDisruptionBudget status +STEP: Waiting for the pdb to be processed +[AfterEach] [sig-apps] DisruptionController + test/e2e/framework/framework.go:188 +Oct 26 04:51:44.146: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "disruption-2442" for this suite. + +• [SLOW TEST:6.076 seconds] +[sig-apps] DisruptionController +test/e2e/apps/framework.go:23 + should update/patch PodDisruptionBudget status [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] DisruptionController should update/patch PodDisruptionBudget status [Conformance]","total":356,"completed":117,"skipped":2023,"failed":0} +SS +------------------------------ +[sig-scheduling] SchedulerPredicates [Serial] + validates resource limits of pods that are allowed to run [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:51:44.153: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sched-pred +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:92 +Oct 26 04:51:44.172: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready +Oct 26 04:51:44.177: INFO: Waiting for terminating namespaces to be deleted... +Oct 26 04:51:44.179: INFO: +Logging pods the apiserver thinks is on node i-066ef2cf0d4227da4 before test +Oct 26 04:51:44.184: INFO: etcd0 from default started at 2022-10-26 04:28:19 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.184: INFO: Container etcd0 ready: true, restart count 0 +Oct 26 04:51:44.184: INFO: pod-0 from disruption-2442 started at 2022-10-26 04:51:40 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.184: INFO: Container donothing ready: true, restart count 0 +Oct 26 04:51:44.184: INFO: cilium-79mzk from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.184: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 04:51:44.184: INFO: coredns-d8fb97fd8-fwb5g from kube-system started at 2022-10-26 04:26:26 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.184: INFO: Container coredns ready: true, restart count 0 +Oct 26 04:51:44.184: INFO: ebs-csi-node-sm5hp from kube-system started at 2022-10-26 04:25:47 +0000 UTC (3 container statuses recorded) +Oct 26 04:51:44.184: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 04:51:44.184: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 04:51:44.184: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 04:51:44.184: INFO: kube-proxy-i-066ef2cf0d4227da4 from kube-system started at 2022-10-26 04:25:36 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.184: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 04:51:44.184: INFO: sonobuoy from sonobuoy started at 2022-10-26 04:28:25 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.184: INFO: Container kube-sonobuoy ready: true, restart count 0 +Oct 26 04:51:44.184: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-nmk9j from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 04:51:44.184: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 04:51:44.184: INFO: Container systemd-logs ready: true, restart count 0 +Oct 26 04:51:44.184: INFO: +Logging pods the apiserver thinks is on node i-098fc8365626c8e13 before test +Oct 26 04:51:44.192: INFO: etcd1 from default started at 2022-10-26 04:28:19 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.192: INFO: Container etcd1 ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: cilium-tbpd2 from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.192: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: coredns-autoscaler-676759bcc8-dkw76 from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.192: INFO: Container autoscaler ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: coredns-d8fb97fd8-wnwxh from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.192: INFO: Container coredns ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: ebs-csi-node-dj7n5 from kube-system started at 2022-10-26 04:25:44 +0000 UTC (3 container statuses recorded) +Oct 26 04:51:44.192: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: kube-proxy-i-098fc8365626c8e13 from kube-system started at 2022-10-26 04:25:33 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.192: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: metrics-server-574d756598-j2vpt from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.192: INFO: Container metrics-server ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: pod-qos-class-e4b8e8ca-2f14-4c52-8aa5-ec54dc4dead0 from pods-1943 started at 2022-10-26 04:50:44 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.192: INFO: Container agnhost ready: false, restart count 0 +Oct 26 04:51:44.192: INFO: sonobuoy-e2e-job-1c1e2e71fcc04437 from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 04:51:44.192: INFO: Container e2e ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-kx8s5 from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 04:51:44.192: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: Container systemd-logs ready: true, restart count 0 +Oct 26 04:51:44.192: INFO: +Logging pods the apiserver thinks is on node i-0ac1bb196421f13a1 before test +Oct 26 04:51:44.198: INFO: csi-mockplugin-6dd69fdb8b-kpvbh from default started at 2022-10-26 04:27:51 +0000 UTC (7 container statuses recorded) +Oct 26 04:51:44.198: INFO: Container csi-attacher ready: true, restart count 0 +Oct 26 04:51:44.198: INFO: Container csi-provisioner ready: true, restart count 0 +Oct 26 04:51:44.198: INFO: Container csi-resizer ready: true, restart count 0 +Oct 26 04:51:44.198: INFO: Container csi-snapshotter ready: true, restart count 0 +Oct 26 04:51:44.198: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 04:51:44.198: INFO: Container mock-driver ready: true, restart count 0 +Oct 26 04:51:44.198: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 04:51:44.198: INFO: etcd2 from default started at 2022-10-26 04:28:19 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.198: INFO: Container etcd2 ready: true, restart count 0 +Oct 26 04:51:44.198: INFO: web-server from default started at 2022-10-26 04:28:03 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.198: INFO: Container web-server ready: true, restart count 0 +Oct 26 04:51:44.198: INFO: cilium-cckk4 from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.199: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 04:51:44.200: INFO: ebs-csi-node-wdz24 from kube-system started at 2022-10-26 04:25:49 +0000 UTC (3 container statuses recorded) +Oct 26 04:51:44.200: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 04:51:44.200: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 04:51:44.200: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 04:51:44.200: INFO: kube-proxy-i-0ac1bb196421f13a1 from kube-system started at 2022-10-26 04:25:39 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.201: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 04:51:44.201: INFO: metrics-server-574d756598-dj6zd from kube-system started at 2022-10-26 04:26:10 +0000 UTC (1 container statuses recorded) +Oct 26 04:51:44.201: INFO: Container metrics-server ready: true, restart count 0 +Oct 26 04:51:44.201: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-qx8md from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 04:51:44.203: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 04:51:44.203: INFO: Container systemd-logs ready: true, restart count 0 +[It] validates resource limits of pods that are allowed to run [Conformance] + test/e2e/framework/framework.go:652 +STEP: verifying the node has the label node i-066ef2cf0d4227da4 +STEP: verifying the node has the label node i-098fc8365626c8e13 +STEP: verifying the node has the label node i-0ac1bb196421f13a1 +Oct 26 04:51:44.392: INFO: Pod csi-mockplugin-6dd69fdb8b-kpvbh requesting resource cpu=700m on Node i-0ac1bb196421f13a1 +Oct 26 04:51:44.392: INFO: Pod etcd0 requesting resource cpu=100m on Node i-066ef2cf0d4227da4 +Oct 26 04:51:44.392: INFO: Pod etcd1 requesting resource cpu=100m on Node i-098fc8365626c8e13 +Oct 26 04:51:44.393: INFO: Pod etcd2 requesting resource cpu=100m on Node i-0ac1bb196421f13a1 +Oct 26 04:51:44.393: INFO: Pod web-server requesting resource cpu=100m on Node i-0ac1bb196421f13a1 +Oct 26 04:51:44.393: INFO: Pod pod-0 requesting resource cpu=0m on Node i-066ef2cf0d4227da4 +Oct 26 04:51:44.393: INFO: Pod cilium-79mzk requesting resource cpu=25m on Node i-066ef2cf0d4227da4 +Oct 26 04:51:44.393: INFO: Pod cilium-cckk4 requesting resource cpu=25m on Node i-0ac1bb196421f13a1 +Oct 26 04:51:44.393: INFO: Pod cilium-tbpd2 requesting resource cpu=25m on Node i-098fc8365626c8e13 +Oct 26 04:51:44.394: INFO: Pod coredns-autoscaler-676759bcc8-dkw76 requesting resource cpu=20m on Node i-098fc8365626c8e13 +Oct 26 04:51:44.394: INFO: Pod coredns-d8fb97fd8-fwb5g requesting resource cpu=100m on Node i-066ef2cf0d4227da4 +Oct 26 04:51:44.394: INFO: Pod coredns-d8fb97fd8-wnwxh requesting resource cpu=100m on Node i-098fc8365626c8e13 +Oct 26 04:51:44.394: INFO: Pod ebs-csi-node-dj7n5 requesting resource cpu=0m on Node i-098fc8365626c8e13 +Oct 26 04:51:44.394: INFO: Pod ebs-csi-node-sm5hp requesting resource cpu=0m on Node i-066ef2cf0d4227da4 +Oct 26 04:51:44.394: INFO: Pod ebs-csi-node-wdz24 requesting resource cpu=0m on Node i-0ac1bb196421f13a1 +Oct 26 04:51:44.394: INFO: Pod kube-proxy-i-066ef2cf0d4227da4 requesting resource cpu=100m on Node i-066ef2cf0d4227da4 +Oct 26 04:51:44.394: INFO: Pod kube-proxy-i-098fc8365626c8e13 requesting resource cpu=100m on Node i-098fc8365626c8e13 +Oct 26 04:51:44.395: INFO: Pod kube-proxy-i-0ac1bb196421f13a1 requesting resource cpu=100m on Node i-0ac1bb196421f13a1 +Oct 26 04:51:44.395: INFO: Pod metrics-server-574d756598-dj6zd requesting resource cpu=50m on Node i-0ac1bb196421f13a1 +Oct 26 04:51:44.395: INFO: Pod metrics-server-574d756598-j2vpt requesting resource cpu=50m on Node i-098fc8365626c8e13 +Oct 26 04:51:44.395: INFO: Pod pod-qos-class-e4b8e8ca-2f14-4c52-8aa5-ec54dc4dead0 requesting resource cpu=100m on Node i-098fc8365626c8e13 +Oct 26 04:51:44.395: INFO: Pod sonobuoy requesting resource cpu=0m on Node i-066ef2cf0d4227da4 +Oct 26 04:51:44.395: INFO: Pod sonobuoy-e2e-job-1c1e2e71fcc04437 requesting resource cpu=0m on Node i-098fc8365626c8e13 +Oct 26 04:51:44.395: INFO: Pod sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-kx8s5 requesting resource cpu=0m on Node i-098fc8365626c8e13 +Oct 26 04:51:44.401: INFO: Pod sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-nmk9j requesting resource cpu=0m on Node i-066ef2cf0d4227da4 +Oct 26 04:51:44.401: INFO: Pod sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-qx8md requesting resource cpu=0m on Node i-0ac1bb196421f13a1 +STEP: Starting Pods to consume most of the cluster CPU. +Oct 26 04:51:44.401: INFO: Creating a pod which consumes cpu=647m on Node i-0ac1bb196421f13a1 +Oct 26 04:51:44.457: INFO: Creating a pod which consumes cpu=1172m on Node i-066ef2cf0d4227da4 +Oct 26 04:51:44.469: INFO: Creating a pod which consumes cpu=1053m on Node i-098fc8365626c8e13 +STEP: Creating another pod that requires unavailable amount of CPU. +STEP: Considering event: +Type = [Normal], Name = [filler-pod-0ffb2188-b184-4d13-8e44-df1e6994571c.1721854d5fe17e12], Reason = [Scheduled], Message = [Successfully assigned sched-pred-886/filler-pod-0ffb2188-b184-4d13-8e44-df1e6994571c to i-098fc8365626c8e13] +STEP: Considering event: +Type = [Normal], Name = [filler-pod-0ffb2188-b184-4d13-8e44-df1e6994571c.1721854db3e69b23], Reason = [Pulled], Message = [Container image "k8s.gcr.io/pause:3.7" already present on machine] +STEP: Considering event: +Type = [Normal], Name = [filler-pod-0ffb2188-b184-4d13-8e44-df1e6994571c.1721854db5b4f2d9], Reason = [Created], Message = [Created container filler-pod-0ffb2188-b184-4d13-8e44-df1e6994571c] +STEP: Considering event: +Type = [Normal], Name = [filler-pod-0ffb2188-b184-4d13-8e44-df1e6994571c.1721854dbab51d9f], Reason = [Started], Message = [Started container filler-pod-0ffb2188-b184-4d13-8e44-df1e6994571c] +STEP: Considering event: +Type = [Normal], Name = [filler-pod-21223902-d9cd-4cbb-be24-b00462382bfd.1721854d5f20676c], Reason = [Scheduled], Message = [Successfully assigned sched-pred-886/filler-pod-21223902-d9cd-4cbb-be24-b00462382bfd to i-066ef2cf0d4227da4] +STEP: Considering event: +Type = [Normal], Name = [filler-pod-21223902-d9cd-4cbb-be24-b00462382bfd.1721854db245588a], Reason = [Pulled], Message = [Container image "k8s.gcr.io/pause:3.7" already present on machine] +STEP: Considering event: +Type = [Normal], Name = [filler-pod-21223902-d9cd-4cbb-be24-b00462382bfd.1721854db3424660], Reason = [Created], Message = [Created container filler-pod-21223902-d9cd-4cbb-be24-b00462382bfd] +STEP: Considering event: +Type = [Normal], Name = [filler-pod-21223902-d9cd-4cbb-be24-b00462382bfd.1721854db8bfa52b], Reason = [Started], Message = [Started container filler-pod-21223902-d9cd-4cbb-be24-b00462382bfd] +STEP: Considering event: +Type = [Normal], Name = [filler-pod-ad1f87c7-1a97-4990-8b1b-9ad049d396aa.1721854d5ba84d35], Reason = [Scheduled], Message = [Successfully assigned sched-pred-886/filler-pod-ad1f87c7-1a97-4990-8b1b-9ad049d396aa to i-0ac1bb196421f13a1] +STEP: Considering event: +Type = [Normal], Name = [filler-pod-ad1f87c7-1a97-4990-8b1b-9ad049d396aa.1721854db4028679], Reason = [Pulled], Message = [Container image "k8s.gcr.io/pause:3.7" already present on machine] +STEP: Considering event: +Type = [Normal], Name = [filler-pod-ad1f87c7-1a97-4990-8b1b-9ad049d396aa.1721854db53b5427], Reason = [Created], Message = [Created container filler-pod-ad1f87c7-1a97-4990-8b1b-9ad049d396aa] +STEP: Considering event: +Type = [Normal], Name = [filler-pod-ad1f87c7-1a97-4990-8b1b-9ad049d396aa.1721854db9fafb09], Reason = [Started], Message = [Started container filler-pod-ad1f87c7-1a97-4990-8b1b-9ad049d396aa] +STEP: Considering event: +Type = [Warning], Name = [additional-pod.1721854e5012fbcd], Reason = [FailedScheduling], Message = [0/4 nodes are available: 1 node(s) had untolerated taint {node-role.kubernetes.io/control-plane: }, 4 Insufficient cpu. preemption: 0/4 nodes are available: 1 Preemption is not helpful for scheduling, 3 No preemption victims found for incoming pod.] +STEP: removing the label node off the node i-066ef2cf0d4227da4 +STEP: verifying the node doesn't have the label node +STEP: removing the label node off the node i-098fc8365626c8e13 +STEP: verifying the node doesn't have the label node +STEP: removing the label node off the node i-0ac1bb196421f13a1 +STEP: verifying the node doesn't have the label node +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/framework.go:188 +Oct 26 04:51:49.660: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sched-pred-886" for this suite. +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:83 + +• [SLOW TEST:5.518 seconds] +[sig-scheduling] SchedulerPredicates [Serial] +test/e2e/scheduling/framework.go:40 + validates resource limits of pods that are allowed to run [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-scheduling] SchedulerPredicates [Serial] validates resource limits of pods that are allowed to run [Conformance]","total":356,"completed":118,"skipped":2025,"failed":0} +SSSSSSSSSSSS +------------------------------ +[sig-storage] Secrets + should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:51:49.673: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating secret with name secret-test-map-63a4a587-38de-4d8e-be65-0fd77c42b1d7 +STEP: Creating a pod to test consume secrets +Oct 26 04:51:49.696: INFO: Waiting up to 5m0s for pod "pod-secrets-6a85d0eb-6a3d-4538-ad24-8e1f33d74679" in namespace "secrets-9386" to be "Succeeded or Failed" +Oct 26 04:51:49.700: INFO: Pod "pod-secrets-6a85d0eb-6a3d-4538-ad24-8e1f33d74679": Phase="Pending", Reason="", readiness=false. Elapsed: 3.685594ms +Oct 26 04:51:51.708: INFO: Pod "pod-secrets-6a85d0eb-6a3d-4538-ad24-8e1f33d74679": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011595897s +Oct 26 04:51:53.717: INFO: Pod "pod-secrets-6a85d0eb-6a3d-4538-ad24-8e1f33d74679": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.021046391s +STEP: Saw pod success +Oct 26 04:51:53.717: INFO: Pod "pod-secrets-6a85d0eb-6a3d-4538-ad24-8e1f33d74679" satisfied condition "Succeeded or Failed" +Oct 26 04:51:53.721: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-secrets-6a85d0eb-6a3d-4538-ad24-8e1f33d74679 container secret-volume-test: +STEP: delete the pod +Oct 26 04:51:53.753: INFO: Waiting for pod pod-secrets-6a85d0eb-6a3d-4538-ad24-8e1f33d74679 to disappear +Oct 26 04:51:53.756: INFO: Pod pod-secrets-6a85d0eb-6a3d-4538-ad24-8e1f33d74679 no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/framework.go:188 +Oct 26 04:51:53.756: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-9386" for this suite. +•{"msg":"PASSED [sig-storage] Secrets should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":119,"skipped":2037,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] DisruptionController + should observe PodDisruptionBudget status updated [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:51:53.764: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename disruption +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:71 +[It] should observe PodDisruptionBudget status updated [Conformance] + test/e2e/framework/framework.go:652 +STEP: Waiting for the pdb to be processed +STEP: Waiting for all pods to be running +Oct 26 04:51:55.883: INFO: running pods: 0 < 3 +Oct 26 04:51:57.888: INFO: running pods: 0 < 3 +[AfterEach] [sig-apps] DisruptionController + test/e2e/framework/framework.go:188 +Oct 26 04:51:59.890: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "disruption-9544" for this suite. + +• [SLOW TEST:6.138 seconds] +[sig-apps] DisruptionController +test/e2e/apps/framework.go:23 + should observe PodDisruptionBudget status updated [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] DisruptionController should observe PodDisruptionBudget status updated [Conformance]","total":356,"completed":120,"skipped":2070,"failed":0} +[sig-storage] Subpath Atomic writer volumes + should support subpaths with configmap pod with mountPath of existing file [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Subpath + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:51:59.901: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename subpath +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 +STEP: Setting up data +[It] should support subpaths with configmap pod with mountPath of existing file [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating pod pod-subpath-test-configmap-cspm +STEP: Creating a pod to test atomic-volume-subpath +Oct 26 04:51:59.930: INFO: Waiting up to 5m0s for pod "pod-subpath-test-configmap-cspm" in namespace "subpath-31" to be "Succeeded or Failed" +Oct 26 04:51:59.933: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Pending", Reason="", readiness=false. Elapsed: 3.039433ms +Oct 26 04:52:01.940: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Running", Reason="", readiness=true. Elapsed: 2.009948588s +Oct 26 04:52:03.947: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Running", Reason="", readiness=true. Elapsed: 4.017352998s +Oct 26 04:52:05.957: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Running", Reason="", readiness=true. Elapsed: 6.027275137s +Oct 26 04:52:07.962: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Running", Reason="", readiness=true. Elapsed: 8.032382625s +Oct 26 04:52:09.970: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Running", Reason="", readiness=true. Elapsed: 10.039871818s +Oct 26 04:52:11.977: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Running", Reason="", readiness=true. Elapsed: 12.046669093s +Oct 26 04:52:13.984: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Running", Reason="", readiness=true. Elapsed: 14.053696253s +Oct 26 04:52:15.991: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Running", Reason="", readiness=true. Elapsed: 16.061273405s +Oct 26 04:52:17.996: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Running", Reason="", readiness=true. Elapsed: 18.066131169s +Oct 26 04:52:20.004: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Running", Reason="", readiness=true. Elapsed: 20.074062604s +Oct 26 04:52:22.011: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Running", Reason="", readiness=false. Elapsed: 22.080929139s +Oct 26 04:52:24.017: INFO: Pod "pod-subpath-test-configmap-cspm": Phase="Succeeded", Reason="", readiness=false. Elapsed: 24.086792517s +STEP: Saw pod success +Oct 26 04:52:24.017: INFO: Pod "pod-subpath-test-configmap-cspm" satisfied condition "Succeeded or Failed" +Oct 26 04:52:24.019: INFO: Trying to get logs from node i-098fc8365626c8e13 pod pod-subpath-test-configmap-cspm container test-container-subpath-configmap-cspm: +STEP: delete the pod +Oct 26 04:52:24.029: INFO: Waiting for pod pod-subpath-test-configmap-cspm to disappear +Oct 26 04:52:24.032: INFO: Pod pod-subpath-test-configmap-cspm no longer exists +STEP: Deleting pod pod-subpath-test-configmap-cspm +Oct 26 04:52:24.032: INFO: Deleting pod "pod-subpath-test-configmap-cspm" in namespace "subpath-31" +[AfterEach] [sig-storage] Subpath + test/e2e/framework/framework.go:188 +Oct 26 04:52:24.034: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "subpath-31" for this suite. + +• [SLOW TEST:24.138 seconds] +[sig-storage] Subpath +test/e2e/storage/utils/framework.go:23 + Atomic writer volumes + test/e2e/storage/subpath.go:36 + should support subpaths with configmap pod with mountPath of existing file [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Subpath Atomic writer volumes should support subpaths with configmap pod with mountPath of existing file [Conformance]","total":356,"completed":121,"skipped":2070,"failed":0} +SSSSSS +------------------------------ +[sig-storage] Projected secret + should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:52:24.039: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating projection with secret that has name projected-secret-test-map-da8229d3-df2c-4f1a-a612-5adb122d7b26 +STEP: Creating a pod to test consume secrets +Oct 26 04:52:24.063: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-318c2022-0159-4882-b762-8aa0df012e5b" in namespace "projected-5376" to be "Succeeded or Failed" +Oct 26 04:52:24.067: INFO: Pod "pod-projected-secrets-318c2022-0159-4882-b762-8aa0df012e5b": Phase="Pending", Reason="", readiness=false. Elapsed: 3.933363ms +Oct 26 04:52:26.074: INFO: Pod "pod-projected-secrets-318c2022-0159-4882-b762-8aa0df012e5b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011047837s +Oct 26 04:52:28.079: INFO: Pod "pod-projected-secrets-318c2022-0159-4882-b762-8aa0df012e5b": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015637178s +Oct 26 04:52:30.087: INFO: Pod "pod-projected-secrets-318c2022-0159-4882-b762-8aa0df012e5b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.024036445s +STEP: Saw pod success +Oct 26 04:52:30.087: INFO: Pod "pod-projected-secrets-318c2022-0159-4882-b762-8aa0df012e5b" satisfied condition "Succeeded or Failed" +Oct 26 04:52:30.089: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-projected-secrets-318c2022-0159-4882-b762-8aa0df012e5b container projected-secret-volume-test: +STEP: delete the pod +Oct 26 04:52:30.103: INFO: Waiting for pod pod-projected-secrets-318c2022-0159-4882-b762-8aa0df012e5b to disappear +Oct 26 04:52:30.106: INFO: Pod pod-projected-secrets-318c2022-0159-4882-b762-8aa0df012e5b no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:188 +Oct 26 04:52:30.106: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-5376" for this suite. + +• [SLOW TEST:6.074 seconds] +[sig-storage] Projected secret +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected secret should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":122,"skipped":2076,"failed":0} +SSSS +------------------------------ +[sig-node] Probing container + should *not* be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:52:30.115: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-probe +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:61 +[It] should *not* be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating pod busybox-f2b09bea-50e3-41d6-9e9f-361c57533e38 in namespace container-probe-3045 +Oct 26 04:52:34.151: INFO: Started pod busybox-f2b09bea-50e3-41d6-9e9f-361c57533e38 in namespace container-probe-3045 +STEP: checking the pod's current state and verifying that restartCount is present +Oct 26 04:52:34.154: INFO: Initial restart count of pod busybox-f2b09bea-50e3-41d6-9e9f-361c57533e38 is 0 +STEP: deleting the pod +[AfterEach] [sig-node] Probing container + test/e2e/framework/framework.go:188 +Oct 26 04:56:35.029: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-probe-3045" for this suite. + +• [SLOW TEST:244.940 seconds] +[sig-node] Probing container +test/e2e/common/node/framework.go:23 + should *not* be restarted with a exec "cat /tmp/health" liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Probing container should *not* be restarted with a exec \"cat /tmp/health\" liveness probe [NodeConformance] [Conformance]","total":356,"completed":123,"skipped":2080,"failed":0} +SS +------------------------------ +[sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] CustomResourceDefinition Watch + watch on custom resource definition objects [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:56:35.055: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-watch +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] watch on custom resource definition objects [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 04:56:35.082: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Creating first CR +Oct 26 04:56:37.692: INFO: Got : ADDED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2022-10-26T04:56:37Z generation:1 managedFields:[map[apiVersion:mygroup.example.com/v1beta1 fieldsType:FieldsV1 fieldsV1:map[f:content:map[.:map[] f:key:map[]] f:num:map[.:map[] f:num1:map[] f:num2:map[]]] manager:e2e.test operation:Update time:2022-10-26T04:56:37Z]] name:name1 resourceVersion:12150 uid:91804bdf-d1b4-43fd-b7bc-70e5b9dcb7de] num:map[num1:9223372036854775807 num2:1000000]]} +STEP: Creating second CR +Oct 26 04:56:47.698: INFO: Got : ADDED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2022-10-26T04:56:47Z generation:1 managedFields:[map[apiVersion:mygroup.example.com/v1beta1 fieldsType:FieldsV1 fieldsV1:map[f:content:map[.:map[] f:key:map[]] f:num:map[.:map[] f:num1:map[] f:num2:map[]]] manager:e2e.test operation:Update time:2022-10-26T04:56:47Z]] name:name2 resourceVersion:12195 uid:b4bfd86c-6a43-4ef4-b497-0d6a83dd8576] num:map[num1:9223372036854775807 num2:1000000]]} +STEP: Modifying first CR +Oct 26 04:56:57.709: INFO: Got : MODIFIED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2022-10-26T04:56:37Z generation:2 managedFields:[map[apiVersion:mygroup.example.com/v1beta1 fieldsType:FieldsV1 fieldsV1:map[f:content:map[.:map[] f:key:map[]] f:dummy:map[] f:num:map[.:map[] f:num1:map[] f:num2:map[]]] manager:e2e.test operation:Update time:2022-10-26T04:56:57Z]] name:name1 resourceVersion:12234 uid:91804bdf-d1b4-43fd-b7bc-70e5b9dcb7de] num:map[num1:9223372036854775807 num2:1000000]]} +STEP: Modifying second CR +Oct 26 04:57:07.715: INFO: Got : MODIFIED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2022-10-26T04:56:47Z generation:2 managedFields:[map[apiVersion:mygroup.example.com/v1beta1 fieldsType:FieldsV1 fieldsV1:map[f:content:map[.:map[] f:key:map[]] f:dummy:map[] f:num:map[.:map[] f:num1:map[] f:num2:map[]]] manager:e2e.test operation:Update time:2022-10-26T04:57:07Z]] name:name2 resourceVersion:12274 uid:b4bfd86c-6a43-4ef4-b497-0d6a83dd8576] num:map[num1:9223372036854775807 num2:1000000]]} +STEP: Deleting first CR +Oct 26 04:57:17.724: INFO: Got : DELETED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2022-10-26T04:56:37Z generation:2 managedFields:[map[apiVersion:mygroup.example.com/v1beta1 fieldsType:FieldsV1 fieldsV1:map[f:content:map[.:map[] f:key:map[]] f:dummy:map[] f:num:map[.:map[] f:num1:map[] f:num2:map[]]] manager:e2e.test operation:Update time:2022-10-26T04:56:57Z]] name:name1 resourceVersion:12314 uid:91804bdf-d1b4-43fd-b7bc-70e5b9dcb7de] num:map[num1:9223372036854775807 num2:1000000]]} +STEP: Deleting second CR +Oct 26 04:57:27.730: INFO: Got : DELETED &{map[apiVersion:mygroup.example.com/v1beta1 content:map[key:value] dummy:test kind:WishIHadChosenNoxu metadata:map[creationTimestamp:2022-10-26T04:56:47Z generation:2 managedFields:[map[apiVersion:mygroup.example.com/v1beta1 fieldsType:FieldsV1 fieldsV1:map[f:content:map[.:map[] f:key:map[]] f:dummy:map[] f:num:map[.:map[] f:num1:map[] f:num2:map[]]] manager:e2e.test operation:Update time:2022-10-26T04:57:07Z]] name:name2 resourceVersion:12354 uid:b4bfd86c-6a43-4ef4-b497-0d6a83dd8576] num:map[num1:9223372036854775807 num2:1000000]]} +[AfterEach] [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 04:57:38.248: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-watch-8174" for this suite. + +• [SLOW TEST:63.203 seconds] +[sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + CustomResourceDefinition Watch + test/e2e/apimachinery/crd_watch.go:44 + watch on custom resource definition objects [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] CustomResourceDefinition Watch watch on custom resource definition objects [Conformance]","total":356,"completed":124,"skipped":2082,"failed":0} +SSS +------------------------------ +[sig-storage] Projected downwardAPI + should update annotations on modification [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:57:38.260: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:43 +[It] should update annotations on modification [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating the pod +Oct 26 04:57:38.288: INFO: The status of Pod annotationupdatea3ae73f1-e768-42ef-a5fc-6d60ea37f716 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:57:40.294: INFO: The status of Pod annotationupdatea3ae73f1-e768-42ef-a5fc-6d60ea37f716 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 04:57:42.295: INFO: The status of Pod annotationupdatea3ae73f1-e768-42ef-a5fc-6d60ea37f716 is Running (Ready = true) +Oct 26 04:57:42.820: INFO: Successfully updated pod "annotationupdatea3ae73f1-e768-42ef-a5fc-6d60ea37f716" +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:188 +Oct 26 04:57:44.832: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-6176" for this suite. + +• [SLOW TEST:6.587 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should update annotations on modification [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected downwardAPI should update annotations on modification [NodeConformance] [Conformance]","total":356,"completed":125,"skipped":2085,"failed":0} +SSSSS +------------------------------ +[sig-network] Services + should be able to change the type from NodePort to ExternalName [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:57:44.849: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should be able to change the type from NodePort to ExternalName [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a service nodeport-service with the type=NodePort in namespace services-7389 +STEP: Creating active service to test reachability when its FQDN is referred as externalName for another service +STEP: creating service externalsvc in namespace services-7389 +STEP: creating replication controller externalsvc in namespace services-7389 +I1026 04:57:44.909882 20 runners.go:193] Created replication controller with name: externalsvc, namespace: services-7389, replica count: 2 +I1026 04:57:47.963405 20 runners.go:193] externalsvc Pods: 2 out of 2 created, 2 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +STEP: changing the NodePort service to type=ExternalName +Oct 26 04:57:47.980: INFO: Creating new exec pod +Oct 26 04:57:52.001: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-7389 exec execpodw8tfx -- /bin/sh -x -c nslookup nodeport-service.services-7389.svc.cluster.local' +Oct 26 04:57:52.161: INFO: stderr: "+ nslookup nodeport-service.services-7389.svc.cluster.local\n" +Oct 26 04:57:52.161: INFO: stdout: "Server:\t\t100.64.0.10\nAddress:\t100.64.0.10#53\n\nnodeport-service.services-7389.svc.cluster.local\tcanonical name = externalsvc.services-7389.svc.cluster.local.\nName:\texternalsvc.services-7389.svc.cluster.local\nAddress: 100.70.27.199\n\n" +STEP: deleting ReplicationController externalsvc in namespace services-7389, will wait for the garbage collector to delete the pods +Oct 26 04:57:52.224: INFO: Deleting ReplicationController externalsvc took: 9.533151ms +Oct 26 04:57:52.325: INFO: Terminating ReplicationController externalsvc pods took: 101.107141ms +Oct 26 04:57:54.139: INFO: Cleaning up the NodePort to ExternalName test service +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 04:57:54.149: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-7389" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:9.311 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should be able to change the type from NodePort to ExternalName [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should be able to change the type from NodePort to ExternalName [Conformance]","total":356,"completed":126,"skipped":2090,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] CronJob + should not schedule new jobs when ForbidConcurrent [Slow] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] CronJob + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 04:57:54.160: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename cronjob +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should not schedule new jobs when ForbidConcurrent [Slow] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a ForbidConcurrent cronjob +STEP: Ensuring a job is scheduled +STEP: Ensuring exactly one is scheduled +STEP: Ensuring exactly one running job exists by listing jobs explicitly +STEP: Ensuring no more jobs are scheduled +STEP: Removing cronjob +[AfterEach] [sig-apps] CronJob + test/e2e/framework/framework.go:188 +Oct 26 05:03:00.201: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "cronjob-4651" for this suite. + +• [SLOW TEST:306.063 seconds] +[sig-apps] CronJob +test/e2e/apps/framework.go:23 + should not schedule new jobs when ForbidConcurrent [Slow] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] CronJob should not schedule new jobs when ForbidConcurrent [Slow] [Conformance]","total":356,"completed":127,"skipped":2136,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] EndpointSlice + should support creating EndpointSlice API operations [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:03:00.224: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename endpointslice +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:51 +[It] should support creating EndpointSlice API operations [Conformance] + test/e2e/framework/framework.go:652 +STEP: getting /apis +STEP: getting /apis/discovery.k8s.io +STEP: getting /apis/discovery.k8s.iov1 +STEP: creating +STEP: getting +STEP: listing +STEP: watching +Oct 26 05:03:00.274: INFO: starting watch +STEP: cluster-wide listing +STEP: cluster-wide watching +Oct 26 05:03:00.277: INFO: starting watch +STEP: patching +STEP: updating +Oct 26 05:03:00.287: INFO: waiting for watch events with expected annotations +Oct 26 05:03:00.287: INFO: saw patched and updated annotations +STEP: deleting +STEP: deleting a collection +[AfterEach] [sig-network] EndpointSlice + test/e2e/framework/framework.go:188 +Oct 26 05:03:00.308: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "endpointslice-5167" for this suite. +•{"msg":"PASSED [sig-network] EndpointSlice should support creating EndpointSlice API operations [Conformance]","total":356,"completed":128,"skipped":2199,"failed":0} +SSSSSSS +------------------------------ +[sig-network] Services + should serve multiport endpoints from pods [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:03:00.316: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should serve multiport endpoints from pods [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating service multi-endpoint-test in namespace services-8793 +STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8793 to expose endpoints map[] +Oct 26 05:03:00.355: INFO: Failed go get Endpoints object: endpoints "multi-endpoint-test" not found +Oct 26 05:03:01.362: INFO: successfully validated that service multi-endpoint-test in namespace services-8793 exposes endpoints map[] +STEP: Creating pod pod1 in namespace services-8793 +Oct 26 05:03:01.374: INFO: The status of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:03:03.379: INFO: The status of Pod pod1 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:03:05.380: INFO: The status of Pod pod1 is Running (Ready = true) +STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8793 to expose endpoints map[pod1:[100]] +Oct 26 05:03:05.396: INFO: successfully validated that service multi-endpoint-test in namespace services-8793 exposes endpoints map[pod1:[100]] +STEP: Creating pod pod2 in namespace services-8793 +Oct 26 05:03:05.409: INFO: The status of Pod pod2 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:03:07.423: INFO: The status of Pod pod2 is Running (Ready = true) +STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8793 to expose endpoints map[pod1:[100] pod2:[101]] +Oct 26 05:03:07.436: INFO: successfully validated that service multi-endpoint-test in namespace services-8793 exposes endpoints map[pod1:[100] pod2:[101]] +STEP: Checking if the Service forwards traffic to pods +Oct 26 05:03:07.436: INFO: Creating new exec pod +Oct 26 05:03:12.447: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8793 exec execpod6g8gz -- /bin/sh -x -c echo hostName | nc -v -t -w 2 multi-endpoint-test 80' +Oct 26 05:03:12.589: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 multi-endpoint-test 80\nConnection to multi-endpoint-test 80 port [tcp/http] succeeded!\n" +Oct 26 05:03:12.589: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:03:12.589: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8793 exec execpod6g8gz -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.66.238.119 80' +Oct 26 05:03:12.744: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.66.238.119 80\nConnection to 100.66.238.119 80 port [tcp/http] succeeded!\n" +Oct 26 05:03:12.744: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:03:12.745: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8793 exec execpod6g8gz -- /bin/sh -x -c echo hostName | nc -v -t -w 2 multi-endpoint-test 81' +Oct 26 05:03:12.887: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 multi-endpoint-test 81\nConnection to multi-endpoint-test 81 port [tcp/*] succeeded!\n" +Oct 26 05:03:12.887: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:03:12.887: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8793 exec execpod6g8gz -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.66.238.119 81' +Oct 26 05:03:13.026: INFO: stderr: "+ nc -v -t -w 2 100.66.238.119 81\n+ echo hostName\nConnection to 100.66.238.119 81 port [tcp/*] succeeded!\n" +Oct 26 05:03:13.026: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +STEP: Deleting pod pod1 in namespace services-8793 +STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8793 to expose endpoints map[pod2:[101]] +Oct 26 05:03:13.069: INFO: successfully validated that service multi-endpoint-test in namespace services-8793 exposes endpoints map[pod2:[101]] +STEP: Deleting pod pod2 in namespace services-8793 +STEP: waiting up to 3m0s for service multi-endpoint-test in namespace services-8793 to expose endpoints map[] +Oct 26 05:03:14.122: INFO: successfully validated that service multi-endpoint-test in namespace services-8793 exposes endpoints map[] +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 05:03:14.139: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-8793" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:13.831 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should serve multiport endpoints from pods [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should serve multiport endpoints from pods [Conformance]","total":356,"completed":129,"skipped":2206,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and capture the life of a service. [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:03:14.147: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename resourcequota +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should create a ResourceQuota and capture the life of a service. [Conformance] + test/e2e/framework/framework.go:652 +STEP: Counting existing ResourceQuota +STEP: Creating a ResourceQuota +STEP: Ensuring resource quota status is calculated +STEP: Creating a Service +STEP: Creating a NodePort Service +STEP: Not allowing a LoadBalancer Service with NodePort to be created that exceeds remaining quota +STEP: Ensuring resource quota status captures service creation +STEP: Deleting Services +STEP: Ensuring resource quota status released usage +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:188 +Oct 26 05:03:25.438: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "resourcequota-8578" for this suite. + +• [SLOW TEST:11.297 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should create a ResourceQuota and capture the life of a service. [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a service. [Conformance]","total":356,"completed":130,"skipped":2235,"failed":0} +SS +------------------------------ +[sig-node] Kubelet when scheduling a busybox command that always fails in a pod + should be possible to delete [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Kubelet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:03:25.445: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubelet-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:40 +[BeforeEach] when scheduling a busybox command that always fails in a pod + test/e2e/common/node/kubelet.go:84 +[It] should be possible to delete [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-node] Kubelet + test/e2e/framework/framework.go:188 +Oct 26 05:03:25.497: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubelet-test-6498" for this suite. +•{"msg":"PASSED [sig-node] Kubelet when scheduling a busybox command that always fails in a pod should be possible to delete [NodeConformance] [Conformance]","total":356,"completed":131,"skipped":2237,"failed":0} +SSS +------------------------------ +[sig-api-machinery] Servers with support for Table transformation + should return a 406 for a backend which does not implement metadata [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Servers with support for Table transformation + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:03:25.509: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename tables +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] Servers with support for Table transformation + test/e2e/apimachinery/table_conversion.go:49 +[It] should return a 406 for a backend which does not implement metadata [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-api-machinery] Servers with support for Table transformation + test/e2e/framework/framework.go:188 +Oct 26 05:03:25.536: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "tables-3667" for this suite. +•{"msg":"PASSED [sig-api-machinery] Servers with support for Table transformation should return a 406 for a backend which does not implement metadata [Conformance]","total":356,"completed":132,"skipped":2240,"failed":0} +SSSSSSS +------------------------------ +[sig-scheduling] SchedulerPredicates [Serial] + validates that there exists conflict between pods with same hostPort and protocol but one using 0.0.0.0 hostIP [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:03:25.544: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sched-pred +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:92 +Oct 26 05:03:25.568: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready +Oct 26 05:03:25.574: INFO: Waiting for terminating namespaces to be deleted... +Oct 26 05:03:25.576: INFO: +Logging pods the apiserver thinks is on node i-066ef2cf0d4227da4 before test +Oct 26 05:03:25.582: INFO: etcd0 from default started at 2022-10-26 04:28:19 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.582: INFO: Container etcd0 ready: true, restart count 0 +Oct 26 05:03:25.582: INFO: cilium-79mzk from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.582: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 05:03:25.582: INFO: coredns-d8fb97fd8-fwb5g from kube-system started at 2022-10-26 04:26:26 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.582: INFO: Container coredns ready: true, restart count 0 +Oct 26 05:03:25.582: INFO: ebs-csi-node-sm5hp from kube-system started at 2022-10-26 04:25:47 +0000 UTC (3 container statuses recorded) +Oct 26 05:03:25.582: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 05:03:25.582: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 05:03:25.582: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 05:03:25.582: INFO: kube-proxy-i-066ef2cf0d4227da4 from kube-system started at 2022-10-26 04:25:36 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.582: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 05:03:25.582: INFO: bin-falseff231da5-9d5c-4a29-acef-42f2e5e82844 from kubelet-test-6498 started at 2022-10-26 05:03:25 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.582: INFO: Container bin-falseff231da5-9d5c-4a29-acef-42f2e5e82844 ready: false, restart count 0 +Oct 26 05:03:25.582: INFO: sonobuoy from sonobuoy started at 2022-10-26 04:28:25 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.582: INFO: Container kube-sonobuoy ready: true, restart count 0 +Oct 26 05:03:25.582: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-nmk9j from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 05:03:25.582: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 05:03:25.582: INFO: Container systemd-logs ready: true, restart count 0 +Oct 26 05:03:25.582: INFO: +Logging pods the apiserver thinks is on node i-098fc8365626c8e13 before test +Oct 26 05:03:25.588: INFO: etcd1 from default started at 2022-10-26 04:28:19 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.589: INFO: Container etcd1 ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: cilium-tbpd2 from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.589: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: coredns-autoscaler-676759bcc8-dkw76 from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.589: INFO: Container autoscaler ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: coredns-d8fb97fd8-wnwxh from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.589: INFO: Container coredns ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: ebs-csi-node-dj7n5 from kube-system started at 2022-10-26 04:25:44 +0000 UTC (3 container statuses recorded) +Oct 26 05:03:25.589: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: kube-proxy-i-098fc8365626c8e13 from kube-system started at 2022-10-26 04:25:33 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.589: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: metrics-server-574d756598-j2vpt from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.589: INFO: Container metrics-server ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: sonobuoy-e2e-job-1c1e2e71fcc04437 from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 05:03:25.589: INFO: Container e2e ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-kx8s5 from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 05:03:25.589: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: Container systemd-logs ready: true, restart count 0 +Oct 26 05:03:25.589: INFO: +Logging pods the apiserver thinks is on node i-0ac1bb196421f13a1 before test +Oct 26 05:03:25.621: INFO: csi-mockplugin-6dd69fdb8b-kpvbh from default started at 2022-10-26 04:27:51 +0000 UTC (7 container statuses recorded) +Oct 26 05:03:25.621: INFO: Container csi-attacher ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: Container csi-provisioner ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: Container csi-resizer ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: Container csi-snapshotter ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: Container mock-driver ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: etcd2 from default started at 2022-10-26 04:28:19 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.621: INFO: Container etcd2 ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: web-server from default started at 2022-10-26 04:28:03 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.621: INFO: Container web-server ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: cilium-cckk4 from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.621: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: ebs-csi-node-wdz24 from kube-system started at 2022-10-26 04:25:49 +0000 UTC (3 container statuses recorded) +Oct 26 05:03:25.621: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: kube-proxy-i-0ac1bb196421f13a1 from kube-system started at 2022-10-26 04:25:39 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.621: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: metrics-server-574d756598-dj6zd from kube-system started at 2022-10-26 04:26:10 +0000 UTC (1 container statuses recorded) +Oct 26 05:03:25.621: INFO: Container metrics-server ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-qx8md from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 05:03:25.621: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 05:03:25.621: INFO: Container systemd-logs ready: true, restart count 0 +[It] validates that there exists conflict between pods with same hostPort and protocol but one using 0.0.0.0 hostIP [Conformance] + test/e2e/framework/framework.go:652 +STEP: Trying to launch a pod without a label to get a node which can launch it. +STEP: Explicitly delete pod here to free the resource it takes. +STEP: Trying to apply a random label on the found node. +STEP: verifying the node has the label kubernetes.io/e2e-9a6dff3b-867d-474e-97eb-36700507765c 95 +STEP: Trying to create a pod(pod4) with hostport 54322 and hostIP 0.0.0.0(empty string here) and expect scheduled +STEP: Trying to create another pod(pod5) with hostport 54322 but hostIP 172.20.115.72 on the node which pod4 resides and expect not scheduled +STEP: removing the label kubernetes.io/e2e-9a6dff3b-867d-474e-97eb-36700507765c off the node i-066ef2cf0d4227da4 +STEP: verifying the node doesn't have the label kubernetes.io/e2e-9a6dff3b-867d-474e-97eb-36700507765c +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:08:33.743: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sched-pred-7723" for this suite. +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:83 + +• [SLOW TEST:308.211 seconds] +[sig-scheduling] SchedulerPredicates [Serial] +test/e2e/scheduling/framework.go:40 + validates that there exists conflict between pods with same hostPort and protocol but one using 0.0.0.0 hostIP [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-scheduling] SchedulerPredicates [Serial] validates that there exists conflict between pods with same hostPort and protocol but one using 0.0.0.0 hostIP [Conformance]","total":356,"completed":133,"skipped":2247,"failed":0} +SSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Security Context When creating a pod with privileged + should run the container as unprivileged when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:08:33.755: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename security-context-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:48 +[It] should run the container as unprivileged when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:08:33.783: INFO: Waiting up to 5m0s for pod "busybox-privileged-false-fc2c2c90-1353-40fa-99e4-a8a56ca45341" in namespace "security-context-test-1694" to be "Succeeded or Failed" +Oct 26 05:08:33.785: INFO: Pod "busybox-privileged-false-fc2c2c90-1353-40fa-99e4-a8a56ca45341": Phase="Pending", Reason="", readiness=false. Elapsed: 2.277507ms +Oct 26 05:08:35.793: INFO: Pod "busybox-privileged-false-fc2c2c90-1353-40fa-99e4-a8a56ca45341": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009993186s +Oct 26 05:08:37.798: INFO: Pod "busybox-privileged-false-fc2c2c90-1353-40fa-99e4-a8a56ca45341": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.01493104s +Oct 26 05:08:37.798: INFO: Pod "busybox-privileged-false-fc2c2c90-1353-40fa-99e4-a8a56ca45341" satisfied condition "Succeeded or Failed" +Oct 26 05:08:37.815: INFO: Got logs for pod "busybox-privileged-false-fc2c2c90-1353-40fa-99e4-a8a56ca45341": "ip: RTNETLINK answers: Operation not permitted\n" +[AfterEach] [sig-node] Security Context + test/e2e/framework/framework.go:188 +Oct 26 05:08:37.815: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "security-context-test-1694" for this suite. +•{"msg":"PASSED [sig-node] Security Context When creating a pod with privileged should run the container as unprivileged when false [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":134,"skipped":2263,"failed":0} +SSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + listing mutating webhooks should work [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:08:37.823: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:08:38.322: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Oct 26 05:08:40.330: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 8, 38, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 8, 38, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 8, 38, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 8, 38, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:08:43.344: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] listing mutating webhooks should work [Conformance] + test/e2e/framework/framework.go:652 +STEP: Listing all of the created validation webhooks +STEP: Creating a configMap that should be mutated +STEP: Deleting the collection of validation webhooks +STEP: Creating a configMap that should not be mutated +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:08:43.438: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-9789" for this suite. +STEP: Destroying namespace "webhook-9789-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:5.682 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + listing mutating webhooks should work [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] listing mutating webhooks should work [Conformance]","total":356,"completed":135,"skipped":2284,"failed":0} +SS +------------------------------ +[sig-node] ConfigMap + should run through a ConfigMap lifecycle [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:08:43.507: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should run through a ConfigMap lifecycle [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a ConfigMap +STEP: fetching the ConfigMap +STEP: patching the ConfigMap +STEP: listing all ConfigMaps in all namespaces with a label selector +STEP: deleting the ConfigMap by collection with a label selector +STEP: listing all ConfigMaps in test namespace +[AfterEach] [sig-node] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 05:08:43.585: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-4184" for this suite. +•{"msg":"PASSED [sig-node] ConfigMap should run through a ConfigMap lifecycle [Conformance]","total":356,"completed":136,"skipped":2286,"failed":0} +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should update pod when spec was updated and update strategy is RollingUpdate [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:08:43.591: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename daemonsets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:145 +[It] should update pod when spec was updated and update strategy is RollingUpdate [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:08:43.619: INFO: Creating simple daemon set daemon-set +STEP: Check that daemon pods launch on every node of the cluster. +Oct 26 05:08:43.630: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:43.637: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:08:43.637: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:08:44.643: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:44.645: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:08:44.646: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:08:45.641: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:45.643: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 +Oct 26 05:08:45.644: INFO: Node i-098fc8365626c8e13 is running 0 daemon pod, expected 1 +Oct 26 05:08:46.642: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:46.645: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Oct 26 05:08:46.645: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +STEP: Update daemon pods image. +STEP: Check that daemon pods images are updated. +Oct 26 05:08:46.693: INFO: Wrong image for pod: daemon-set-kdt9z. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:46.693: INFO: Wrong image for pod: daemon-set-nmd5d. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:46.693: INFO: Wrong image for pod: daemon-set-tnjrr. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:46.700: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:47.704: INFO: Wrong image for pod: daemon-set-kdt9z. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:47.704: INFO: Wrong image for pod: daemon-set-nmd5d. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:47.707: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:48.715: INFO: Pod daemon-set-gd2bn is not available +Oct 26 05:08:48.715: INFO: Wrong image for pod: daemon-set-kdt9z. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:48.715: INFO: Wrong image for pod: daemon-set-nmd5d. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:48.719: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:49.707: INFO: Pod daemon-set-gd2bn is not available +Oct 26 05:08:49.707: INFO: Wrong image for pod: daemon-set-kdt9z. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:49.707: INFO: Wrong image for pod: daemon-set-nmd5d. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:49.711: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:50.706: INFO: Wrong image for pod: daemon-set-kdt9z. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:50.710: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:51.706: INFO: Pod daemon-set-cx7xl is not available +Oct 26 05:08:51.706: INFO: Wrong image for pod: daemon-set-kdt9z. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:51.709: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:52.706: INFO: Pod daemon-set-cx7xl is not available +Oct 26 05:08:52.706: INFO: Wrong image for pod: daemon-set-kdt9z. Expected: k8s.gcr.io/e2e-test-images/agnhost:2.39, got: k8s.gcr.io/e2e-test-images/httpd:2.4.38-2. +Oct 26 05:08:52.713: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:53.710: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:54.706: INFO: Pod daemon-set-xk2k6 is not available +Oct 26 05:08:54.716: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +STEP: Check that daemon pods are still running on every node of the cluster. +Oct 26 05:08:54.720: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:54.723: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Oct 26 05:08:54.723: INFO: Node i-098fc8365626c8e13 is running 0 daemon pod, expected 1 +Oct 26 05:08:55.729: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:55.731: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Oct 26 05:08:55.731: INFO: Node i-098fc8365626c8e13 is running 0 daemon pod, expected 1 +Oct 26 05:08:56.732: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:08:56.735: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Oct 26 05:08:56.735: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:110 +STEP: Deleting DaemonSet "daemon-set" +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-2892, will wait for the garbage collector to delete the pods +Oct 26 05:08:56.819: INFO: Deleting DaemonSet.extensions daemon-set took: 16.257019ms +Oct 26 05:08:56.920: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.513473ms +Oct 26 05:08:59.130: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:08:59.130: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Oct 26 05:08:59.135: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"15537"},"items":null} + +Oct 26 05:08:59.139: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"15537"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:08:59.160: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "daemonsets-2892" for this suite. + +• [SLOW TEST:15.582 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should update pod when spec was updated and update strategy is RollingUpdate [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Daemon set [Serial] should update pod when spec was updated and update strategy is RollingUpdate [Conformance]","total":356,"completed":137,"skipped":2305,"failed":0} +SSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + patching/updating a mutating webhook should work [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:08:59.173: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:08:59.418: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Oct 26 05:09:01.427: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 8, 59, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 8, 59, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 8, 59, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 8, 59, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:09:04.444: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] patching/updating a mutating webhook should work [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a mutating webhook configuration +STEP: Updating a mutating webhook configuration's rules to not include the create operation +STEP: Creating a configMap that should not be mutated +STEP: Patching a mutating webhook configuration's rules to include the create operation +STEP: Creating a configMap that should be mutated +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:09:04.488: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-2350" for this suite. +STEP: Destroying namespace "webhook-2350-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:5.382 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + patching/updating a mutating webhook should work [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] patching/updating a mutating webhook should work [Conformance]","total":356,"completed":138,"skipped":2308,"failed":0} +SSS +------------------------------ +[sig-storage] Projected combined + should project all components that make up the projection API [Projection][NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected combined + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:09:04.567: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should project all components that make up the projection API [Projection][NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name configmap-projected-all-test-volume-0eb57ca3-0474-4780-b2a4-b8a236d55781 +STEP: Creating secret with name secret-projected-all-test-volume-f877e832-92a3-4213-991c-45e77274b168 +STEP: Creating a pod to test Check all projections for projected volume plugin +Oct 26 05:09:04.615: INFO: Waiting up to 5m0s for pod "projected-volume-76a981de-866d-4453-bfb2-187c0dec1d5d" in namespace "projected-3905" to be "Succeeded or Failed" +Oct 26 05:09:04.620: INFO: Pod "projected-volume-76a981de-866d-4453-bfb2-187c0dec1d5d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.752462ms +Oct 26 05:09:06.628: INFO: Pod "projected-volume-76a981de-866d-4453-bfb2-187c0dec1d5d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012527452s +Oct 26 05:09:08.634: INFO: Pod "projected-volume-76a981de-866d-4453-bfb2-187c0dec1d5d": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.018700973s +STEP: Saw pod success +Oct 26 05:09:08.634: INFO: Pod "projected-volume-76a981de-866d-4453-bfb2-187c0dec1d5d" satisfied condition "Succeeded or Failed" +Oct 26 05:09:08.637: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod projected-volume-76a981de-866d-4453-bfb2-187c0dec1d5d container projected-all-volume-test: +STEP: delete the pod +Oct 26 05:09:08.649: INFO: Waiting for pod projected-volume-76a981de-866d-4453-bfb2-187c0dec1d5d to disappear +Oct 26 05:09:08.651: INFO: Pod projected-volume-76a981de-866d-4453-bfb2-187c0dec1d5d no longer exists +[AfterEach] [sig-storage] Projected combined + test/e2e/framework/framework.go:188 +Oct 26 05:09:08.651: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-3905" for this suite. +•{"msg":"PASSED [sig-storage] Projected combined should project all components that make up the projection API [Projection][NodeConformance] [Conformance]","total":356,"completed":139,"skipped":2311,"failed":0} +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-instrumentation] Events API + should ensure that an event can be fetched, patched, deleted, and listed [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-instrumentation] Events API + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:09:08.663: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename events +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-instrumentation] Events API + test/e2e/instrumentation/events.go:84 +[It] should ensure that an event can be fetched, patched, deleted, and listed [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a test event +STEP: listing events in all namespaces +STEP: listing events in test namespace +STEP: listing events with field selection filtering on source +STEP: listing events with field selection filtering on reportingController +STEP: getting the test event +STEP: patching the test event +STEP: getting the test event +STEP: updating the test event +STEP: getting the test event +STEP: deleting the test event +STEP: listing events in all namespaces +STEP: listing events in test namespace +[AfterEach] [sig-instrumentation] Events API + test/e2e/framework/framework.go:188 +Oct 26 05:09:08.753: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "events-189" for this suite. +•{"msg":"PASSED [sig-instrumentation] Events API should ensure that an event can be fetched, patched, deleted, and listed [Conformance]","total":356,"completed":140,"skipped":2331,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] EndpointSliceMirroring + should mirror a custom Endpoints resource through create update and delete [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] EndpointSliceMirroring + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:09:08.765: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename endpointslicemirroring +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] EndpointSliceMirroring + test/e2e/network/endpointslicemirroring.go:41 +[It] should mirror a custom Endpoints resource through create update and delete [Conformance] + test/e2e/framework/framework.go:652 +STEP: mirroring a new custom Endpoint +Oct 26 05:09:08.799: INFO: Waiting for at least 1 EndpointSlice to exist, got 0 +STEP: mirroring an update to a custom Endpoint +Oct 26 05:09:10.822: INFO: Expected EndpointSlice to have 10.2.3.4 as address, got 10.1.2.3 +STEP: mirroring deletion of a custom Endpoint +Oct 26 05:09:12.838: INFO: Waiting for 0 EndpointSlices to exist, got 1 +[AfterEach] [sig-network] EndpointSliceMirroring + test/e2e/framework/framework.go:188 +Oct 26 05:09:14.845: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "endpointslicemirroring-7887" for this suite. + +• [SLOW TEST:6.087 seconds] +[sig-network] EndpointSliceMirroring +test/e2e/network/common/framework.go:23 + should mirror a custom Endpoints resource through create update and delete [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] EndpointSliceMirroring should mirror a custom Endpoints resource through create update and delete [Conformance]","total":356,"completed":141,"skipped":2414,"failed":0} +SSSSSSSS +------------------------------ +[sig-storage] ConfigMap + updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:09:14.856: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name configmap-test-upd-42b264d0-dbb0-4d23-bafe-38fc20d69467 +STEP: Creating the pod +Oct 26 05:09:14.888: INFO: The status of Pod pod-configmaps-ace7f286-078d-487b-97b1-23775f263588 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:09:16.897: INFO: The status of Pod pod-configmaps-ace7f286-078d-487b-97b1-23775f263588 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:09:18.896: INFO: The status of Pod pod-configmaps-ace7f286-078d-487b-97b1-23775f263588 is Running (Ready = true) +STEP: Updating configmap configmap-test-upd-42b264d0-dbb0-4d23-bafe-38fc20d69467 +STEP: waiting to observe update in volume +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 05:10:21.113: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-3992" for this suite. + +• [SLOW TEST:66.268 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] ConfigMap updates should be reflected in volume [NodeConformance] [Conformance]","total":356,"completed":142,"skipped":2422,"failed":0} +SSS +------------------------------ +[sig-api-machinery] Aggregator + Should be able to support the 1.17 Sample API Server using the current Aggregator [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Aggregator + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:10:21.127: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename aggregator +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] Aggregator + test/e2e/apimachinery/aggregator.go:79 +Oct 26 05:10:21.144: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +[It] Should be able to support the 1.17 Sample API Server using the current Aggregator [Conformance] + test/e2e/framework/framework.go:652 +STEP: Registering the sample API server. +Oct 26 05:10:21.484: INFO: deployment "sample-apiserver-deployment" doesn't have the required revision set +Oct 26 05:10:23.530: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-d9646c97b\" is progressing."}}, CollisionCount:(*int32)(nil)} +Oct 26 05:10:25.535: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-d9646c97b\" is progressing."}}, CollisionCount:(*int32)(nil)} +Oct 26 05:10:27.535: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-d9646c97b\" is progressing."}}, CollisionCount:(*int32)(nil)} +Oct 26 05:10:29.541: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 10, 21, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-apiserver-deployment-d9646c97b\" is progressing."}}, CollisionCount:(*int32)(nil)} +Oct 26 05:10:33.366: INFO: Waited 1.824307464s for the sample-apiserver to be ready to handle requests. +STEP: Read Status for v1alpha1.wardle.example.com +STEP: kubectl patch apiservice v1alpha1.wardle.example.com -p '{"spec":{"versionPriority": 400}}' +STEP: List APIServices +Oct 26 05:10:33.449: INFO: Found v1alpha1.wardle.example.com in APIServiceList +[AfterEach] [sig-api-machinery] Aggregator + test/e2e/apimachinery/aggregator.go:69 +[AfterEach] [sig-api-machinery] Aggregator + test/e2e/framework/framework.go:188 +Oct 26 05:10:33.998: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "aggregator-8478" for this suite. + +• [SLOW TEST:12.973 seconds] +[sig-api-machinery] Aggregator +test/e2e/apimachinery/framework.go:23 + Should be able to support the 1.17 Sample API Server using the current Aggregator [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] Aggregator Should be able to support the 1.17 Sample API Server using the current Aggregator [Conformance]","total":356,"completed":143,"skipped":2425,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] NoExecuteTaintManager Single Pod [Serial] + removing taint cancels eviction [Disruptive] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] NoExecuteTaintManager Single Pod [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:10:34.101: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename taint-single-pod +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] NoExecuteTaintManager Single Pod [Serial] + test/e2e/node/taints.go:166 +Oct 26 05:10:34.117: INFO: Waiting up to 1m0s for all nodes to be ready +Oct 26 05:11:34.151: INFO: Waiting for terminating namespaces to be deleted... +[It] removing taint cancels eviction [Disruptive] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:11:34.154: INFO: Starting informer... +STEP: Starting pod... +Oct 26 05:11:34.369: INFO: Pod is running on i-066ef2cf0d4227da4. Tainting Node +STEP: Trying to apply a taint on the Node +STEP: verifying the node has the taint kubernetes.io/e2e-evict-taint-key=evictTaintVal:NoExecute +STEP: Waiting short time to make sure Pod is queued for deletion +Oct 26 05:11:34.390: INFO: Pod wasn't evicted. Proceeding +Oct 26 05:11:34.390: INFO: Removing taint from Node +STEP: verifying the node doesn't have the taint kubernetes.io/e2e-evict-taint-key=evictTaintVal:NoExecute +STEP: Waiting some time to make sure that toleration time passed. +Oct 26 05:12:49.504: INFO: Pod wasn't evicted. Test successful +[AfterEach] [sig-node] NoExecuteTaintManager Single Pod [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:12:49.504: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "taint-single-pod-4650" for this suite. + +• [SLOW TEST:135.416 seconds] +[sig-node] NoExecuteTaintManager Single Pod [Serial] +test/e2e/node/framework.go:23 + removing taint cancels eviction [Disruptive] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] NoExecuteTaintManager Single Pod [Serial] removing taint cancels eviction [Disruptive] [Conformance]","total":356,"completed":144,"skipped":2473,"failed":0} +SSSSSSS +------------------------------ +[sig-scheduling] SchedulerPredicates [Serial] + validates that NodeSelector is respected if matching [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:12:49.518: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sched-pred +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:92 +Oct 26 05:12:49.538: INFO: Waiting up to 1m0s for all (but 0) nodes to be ready +Oct 26 05:12:49.543: INFO: Waiting for terminating namespaces to be deleted... +Oct 26 05:12:49.548: INFO: +Logging pods the apiserver thinks is on node i-066ef2cf0d4227da4 before test +Oct 26 05:12:49.554: INFO: cilium-79mzk from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.554: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 05:12:49.554: INFO: coredns-d8fb97fd8-8m92m from kube-system started at 2022-10-26 05:11:34 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.554: INFO: Container coredns ready: true, restart count 0 +Oct 26 05:12:49.554: INFO: ebs-csi-node-sm5hp from kube-system started at 2022-10-26 04:25:47 +0000 UTC (3 container statuses recorded) +Oct 26 05:12:49.554: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 05:12:49.554: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 05:12:49.554: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 05:12:49.554: INFO: kube-proxy-i-066ef2cf0d4227da4 from kube-system started at 2022-10-26 04:25:36 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.554: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 05:12:49.554: INFO: sonobuoy from sonobuoy started at 2022-10-26 04:28:25 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.554: INFO: Container kube-sonobuoy ready: true, restart count 0 +Oct 26 05:12:49.554: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-nmk9j from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 05:12:49.554: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 05:12:49.554: INFO: Container systemd-logs ready: true, restart count 0 +Oct 26 05:12:49.554: INFO: taint-eviction-4 from taint-single-pod-4650 started at 2022-10-26 05:11:34 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.554: INFO: Container pause ready: true, restart count 0 +Oct 26 05:12:49.554: INFO: +Logging pods the apiserver thinks is on node i-098fc8365626c8e13 before test +Oct 26 05:12:49.560: INFO: etcd1 from default started at 2022-10-26 04:28:19 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.560: INFO: Container etcd1 ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: cilium-tbpd2 from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.560: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: coredns-autoscaler-676759bcc8-dkw76 from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.560: INFO: Container autoscaler ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: coredns-d8fb97fd8-wnwxh from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.560: INFO: Container coredns ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: ebs-csi-node-dj7n5 from kube-system started at 2022-10-26 04:25:44 +0000 UTC (3 container statuses recorded) +Oct 26 05:12:49.560: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: kube-proxy-i-098fc8365626c8e13 from kube-system started at 2022-10-26 04:25:33 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.560: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: metrics-server-574d756598-j2vpt from kube-system started at 2022-10-26 04:26:03 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.560: INFO: Container metrics-server ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: sonobuoy-e2e-job-1c1e2e71fcc04437 from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 05:12:49.560: INFO: Container e2e ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-kx8s5 from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 05:12:49.560: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: Container systemd-logs ready: true, restart count 0 +Oct 26 05:12:49.560: INFO: +Logging pods the apiserver thinks is on node i-0ac1bb196421f13a1 before test +Oct 26 05:12:49.566: INFO: csi-mockplugin-6dd69fdb8b-kpvbh from default started at 2022-10-26 04:27:51 +0000 UTC (7 container statuses recorded) +Oct 26 05:12:49.566: INFO: Container csi-attacher ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: Container csi-provisioner ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: Container csi-resizer ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: Container csi-snapshotter ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: Container mock-driver ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: etcd2 from default started at 2022-10-26 04:28:19 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.566: INFO: Container etcd2 ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: web-server from default started at 2022-10-26 04:28:03 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.566: INFO: Container web-server ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: cilium-cckk4 from kube-system started at 2022-10-26 04:26:14 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.566: INFO: Container cilium-agent ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: ebs-csi-node-wdz24 from kube-system started at 2022-10-26 04:25:49 +0000 UTC (3 container statuses recorded) +Oct 26 05:12:49.566: INFO: Container ebs-plugin ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: Container liveness-probe ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: Container node-driver-registrar ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: kube-proxy-i-0ac1bb196421f13a1 from kube-system started at 2022-10-26 04:25:39 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.566: INFO: Container kube-proxy ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: metrics-server-574d756598-dj6zd from kube-system started at 2022-10-26 04:26:10 +0000 UTC (1 container statuses recorded) +Oct 26 05:12:49.566: INFO: Container metrics-server ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-qx8md from sonobuoy started at 2022-10-26 04:28:29 +0000 UTC (2 container statuses recorded) +Oct 26 05:12:49.566: INFO: Container sonobuoy-worker ready: true, restart count 0 +Oct 26 05:12:49.566: INFO: Container systemd-logs ready: true, restart count 0 +[It] validates that NodeSelector is respected if matching [Conformance] + test/e2e/framework/framework.go:652 +STEP: Trying to launch a pod without a label to get a node which can launch it. +STEP: Explicitly delete pod here to free the resource it takes. +STEP: Trying to apply a random label on the found node. +STEP: verifying the node has the label kubernetes.io/e2e-b98259d3-3206-44c7-9c88-569770a9f8b7 42 +STEP: Trying to relaunch the pod, now with labels. +STEP: removing the label kubernetes.io/e2e-b98259d3-3206-44c7-9c88-569770a9f8b7 off the node i-066ef2cf0d4227da4 +STEP: verifying the node doesn't have the label kubernetes.io/e2e-b98259d3-3206-44c7-9c88-569770a9f8b7 +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:12:57.686: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sched-pred-6921" for this suite. +[AfterEach] [sig-scheduling] SchedulerPredicates [Serial] + test/e2e/scheduling/predicates.go:83 + +• [SLOW TEST:8.180 seconds] +[sig-scheduling] SchedulerPredicates [Serial] +test/e2e/scheduling/framework.go:40 + validates that NodeSelector is respected if matching [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-scheduling] SchedulerPredicates [Serial] validates that NodeSelector is respected if matching [Conformance]","total":356,"completed":145,"skipped":2480,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:12:57.704: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name projected-configmap-test-volume-da5c7659-bfd4-4fdb-8abd-f84116c3707a +STEP: Creating a pod to test consume configMaps +Oct 26 05:12:57.733: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-bbf1076a-3cc5-47ae-8c3e-30fd4b415e6f" in namespace "projected-7926" to be "Succeeded or Failed" +Oct 26 05:12:57.735: INFO: Pod "pod-projected-configmaps-bbf1076a-3cc5-47ae-8c3e-30fd4b415e6f": Phase="Pending", Reason="", readiness=false. Elapsed: 2.339829ms +Oct 26 05:12:59.746: INFO: Pod "pod-projected-configmaps-bbf1076a-3cc5-47ae-8c3e-30fd4b415e6f": Phase="Pending", Reason="", readiness=false. Elapsed: 2.01340361s +Oct 26 05:13:01.756: INFO: Pod "pod-projected-configmaps-bbf1076a-3cc5-47ae-8c3e-30fd4b415e6f": Phase="Pending", Reason="", readiness=false. Elapsed: 4.022980832s +Oct 26 05:13:03.761: INFO: Pod "pod-projected-configmaps-bbf1076a-3cc5-47ae-8c3e-30fd4b415e6f": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.02767139s +STEP: Saw pod success +Oct 26 05:13:03.761: INFO: Pod "pod-projected-configmaps-bbf1076a-3cc5-47ae-8c3e-30fd4b415e6f" satisfied condition "Succeeded or Failed" +Oct 26 05:13:03.765: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-projected-configmaps-bbf1076a-3cc5-47ae-8c3e-30fd4b415e6f container agnhost-container: +STEP: delete the pod +Oct 26 05:13:03.784: INFO: Waiting for pod pod-projected-configmaps-bbf1076a-3cc5-47ae-8c3e-30fd4b415e6f to disappear +Oct 26 05:13:03.787: INFO: Pod pod-projected-configmaps-bbf1076a-3cc5-47ae-8c3e-30fd4b415e6f no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:188 +Oct 26 05:13:03.787: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-7926" for this suite. + +• [SLOW TEST:6.091 seconds] +[sig-storage] Projected configMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected configMap should be consumable from pods in volume as non-root [NodeConformance] [Conformance]","total":356,"completed":146,"skipped":2513,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:13:03.799: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:43 +[It] should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 05:13:03.822: INFO: Waiting up to 5m0s for pod "downwardapi-volume-c2a53c07-2959-4f01-a07f-f6e44ffe617a" in namespace "projected-153" to be "Succeeded or Failed" +Oct 26 05:13:03.828: INFO: Pod "downwardapi-volume-c2a53c07-2959-4f01-a07f-f6e44ffe617a": Phase="Pending", Reason="", readiness=false. Elapsed: 5.680738ms +Oct 26 05:13:05.837: INFO: Pod "downwardapi-volume-c2a53c07-2959-4f01-a07f-f6e44ffe617a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.014309169s +Oct 26 05:13:07.841: INFO: Pod "downwardapi-volume-c2a53c07-2959-4f01-a07f-f6e44ffe617a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.018682299s +Oct 26 05:13:09.849: INFO: Pod "downwardapi-volume-c2a53c07-2959-4f01-a07f-f6e44ffe617a": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.026796924s +STEP: Saw pod success +Oct 26 05:13:09.850: INFO: Pod "downwardapi-volume-c2a53c07-2959-4f01-a07f-f6e44ffe617a" satisfied condition "Succeeded or Failed" +Oct 26 05:13:09.853: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-c2a53c07-2959-4f01-a07f-f6e44ffe617a container client-container: +STEP: delete the pod +Oct 26 05:13:09.867: INFO: Waiting for pod downwardapi-volume-c2a53c07-2959-4f01-a07f-f6e44ffe617a to disappear +Oct 26 05:13:09.869: INFO: Pod downwardapi-volume-c2a53c07-2959-4f01-a07f-f6e44ffe617a no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:188 +Oct 26 05:13:09.869: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-153" for this suite. + +• [SLOW TEST:6.078 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected downwardAPI should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance]","total":356,"completed":147,"skipped":2541,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition + listing custom resource definition objects works [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:13:09.881: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename custom-resource-definition +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] listing custom resource definition objects works [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:13:09.899: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +[AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:13:16.321: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "custom-resource-definition-7436" for this suite. + +• [SLOW TEST:6.448 seconds] +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + Simple CustomResourceDefinition + test/e2e/apimachinery/custom_resource_definition.go:50 + listing custom resource definition objects works [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition listing custom resource definition objects works [Conformance]","total":356,"completed":148,"skipped":2570,"failed":0} +SSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Update Demo + should create and stop a replication controller [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:13:16.330: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[BeforeEach] Update Demo + test/e2e/kubectl/kubectl.go:297 +[It] should create and stop a replication controller [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a replication controller +Oct 26 05:13:16.352: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6912 create -f -' +Oct 26 05:13:17.518: INFO: stderr: "" +Oct 26 05:13:17.518: INFO: stdout: "replicationcontroller/update-demo-nautilus created\n" +STEP: waiting for all containers in name=update-demo pods to come up. +Oct 26 05:13:17.518: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6912 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Oct 26 05:13:17.601: INFO: stderr: "" +Oct 26 05:13:17.601: INFO: stdout: "update-demo-nautilus-2rbbg update-demo-nautilus-zt4jp " +Oct 26 05:13:17.601: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6912 get pods update-demo-nautilus-2rbbg -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Oct 26 05:13:17.659: INFO: stderr: "" +Oct 26 05:13:17.659: INFO: stdout: "" +Oct 26 05:13:17.659: INFO: update-demo-nautilus-2rbbg is created but not running +Oct 26 05:13:22.661: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6912 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Oct 26 05:13:22.729: INFO: stderr: "" +Oct 26 05:13:22.729: INFO: stdout: "update-demo-nautilus-2rbbg update-demo-nautilus-zt4jp " +Oct 26 05:13:22.729: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6912 get pods update-demo-nautilus-2rbbg -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Oct 26 05:13:22.796: INFO: stderr: "" +Oct 26 05:13:22.796: INFO: stdout: "true" +Oct 26 05:13:22.796: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6912 get pods update-demo-nautilus-2rbbg -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Oct 26 05:13:22.862: INFO: stderr: "" +Oct 26 05:13:22.862: INFO: stdout: "k8s.gcr.io/e2e-test-images/nautilus:1.5" +Oct 26 05:13:22.862: INFO: validating pod update-demo-nautilus-2rbbg +Oct 26 05:13:22.865: INFO: got data: { + "image": "nautilus.jpg" +} + +Oct 26 05:13:22.865: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Oct 26 05:13:22.865: INFO: update-demo-nautilus-2rbbg is verified up and running +Oct 26 05:13:22.865: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6912 get pods update-demo-nautilus-zt4jp -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Oct 26 05:13:22.922: INFO: stderr: "" +Oct 26 05:13:22.922: INFO: stdout: "true" +Oct 26 05:13:22.923: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6912 get pods update-demo-nautilus-zt4jp -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Oct 26 05:13:22.993: INFO: stderr: "" +Oct 26 05:13:22.993: INFO: stdout: "k8s.gcr.io/e2e-test-images/nautilus:1.5" +Oct 26 05:13:22.993: INFO: validating pod update-demo-nautilus-zt4jp +Oct 26 05:13:22.997: INFO: got data: { + "image": "nautilus.jpg" +} + +Oct 26 05:13:22.997: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Oct 26 05:13:22.997: INFO: update-demo-nautilus-zt4jp is verified up and running +STEP: using delete to clean up resources +Oct 26 05:13:22.997: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6912 delete --grace-period=0 --force -f -' +Oct 26 05:13:23.053: INFO: stderr: "warning: Immediate deletion does not wait for confirmation that the running resource has been terminated. The resource may continue to run on the cluster indefinitely.\n" +Oct 26 05:13:23.053: INFO: stdout: "replicationcontroller \"update-demo-nautilus\" force deleted\n" +Oct 26 05:13:23.054: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6912 get rc,svc -l name=update-demo --no-headers' +Oct 26 05:13:23.138: INFO: stderr: "No resources found in kubectl-6912 namespace.\n" +Oct 26 05:13:23.138: INFO: stdout: "" +Oct 26 05:13:23.138: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6912 get pods -l name=update-demo -o go-template={{ range .items }}{{ if not .metadata.deletionTimestamp }}{{ .metadata.name }}{{ "\n" }}{{ end }}{{ end }}' +Oct 26 05:13:23.196: INFO: stderr: "" +Oct 26 05:13:23.196: INFO: stdout: "" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 05:13:23.196: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-6912" for this suite. + +• [SLOW TEST:6.875 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Update Demo + test/e2e/kubectl/kubectl.go:295 + should create and stop a replication controller [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-cli] Kubectl client Update Demo should create and stop a replication controller [Conformance]","total":356,"completed":149,"skipped":2586,"failed":0} +SSSS +------------------------------ +[sig-api-machinery] Watchers + should be able to start watching from a specific resource version [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:13:23.205: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename watch +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be able to start watching from a specific resource version [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a new configmap +STEP: modifying the configmap once +STEP: modifying the configmap a second time +STEP: deleting the configmap +STEP: creating a watch on configmaps from the resource version returned by the first update +STEP: Expecting to observe notifications for all changes to the configmap after the first update +Oct 26 05:13:23.249: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-resource-version watch-9807 3d6ffcc0-be3d-4604-9b5f-9b2a27ee1628 17027 0 2022-10-26 05:13:23 +0000 UTC map[watch-this-configmap:from-resource-version] map[] [] [] [{e2e.test Update v1 2022-10-26 05:13:23 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 2,},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 05:13:23.250: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-resource-version watch-9807 3d6ffcc0-be3d-4604-9b5f-9b2a27ee1628 17028 0 2022-10-26 05:13:23 +0000 UTC map[watch-this-configmap:from-resource-version] map[] [] [] [{e2e.test Update v1 2022-10-26 05:13:23 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 2,},BinaryData:map[string][]byte{},Immutable:nil,} +[AfterEach] [sig-api-machinery] Watchers + test/e2e/framework/framework.go:188 +Oct 26 05:13:23.250: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "watch-9807" for this suite. +•{"msg":"PASSED [sig-api-machinery] Watchers should be able to start watching from a specific resource version [Conformance]","total":356,"completed":150,"skipped":2590,"failed":0} +SSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:13:23.257: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name configmap-test-volume-map-145dfff2-26fb-4c89-b4e5-ae58501bd42d +STEP: Creating a pod to test consume configMaps +Oct 26 05:13:23.280: INFO: Waiting up to 5m0s for pod "pod-configmaps-687d068c-335f-420d-b021-a924d4fea4d9" in namespace "configmap-9879" to be "Succeeded or Failed" +Oct 26 05:13:23.288: INFO: Pod "pod-configmaps-687d068c-335f-420d-b021-a924d4fea4d9": Phase="Pending", Reason="", readiness=false. Elapsed: 7.790483ms +Oct 26 05:13:25.292: INFO: Pod "pod-configmaps-687d068c-335f-420d-b021-a924d4fea4d9": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011816495s +Oct 26 05:13:27.298: INFO: Pod "pod-configmaps-687d068c-335f-420d-b021-a924d4fea4d9": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.017829058s +STEP: Saw pod success +Oct 26 05:13:27.298: INFO: Pod "pod-configmaps-687d068c-335f-420d-b021-a924d4fea4d9" satisfied condition "Succeeded or Failed" +Oct 26 05:13:27.301: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-configmaps-687d068c-335f-420d-b021-a924d4fea4d9 container agnhost-container: +STEP: delete the pod +Oct 26 05:13:27.313: INFO: Waiting for pod pod-configmaps-687d068c-335f-420d-b021-a924d4fea4d9 to disappear +Oct 26 05:13:27.316: INFO: Pod pod-configmaps-687d068c-335f-420d-b021-a924d4fea4d9 no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 05:13:27.317: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-9879" for this suite. +•{"msg":"PASSED [sig-storage] ConfigMap should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance]","total":356,"completed":151,"skipped":2598,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-scheduling] SchedulerPreemption [Serial] PriorityClass endpoints + verify PriorityClass endpoints can be operated with different HTTP methods [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:13:27.328: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sched-preemption +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:92 +Oct 26 05:13:27.404: INFO: Waiting up to 1m0s for all nodes to be ready +Oct 26 05:14:27.446: INFO: Waiting for terminating namespaces to be deleted... +[BeforeEach] PriorityClass endpoints + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:14:27.450: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sched-preemption-path +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] PriorityClass endpoints + test/e2e/scheduling/preemption.go:690 +[It] verify PriorityClass endpoints can be operated with different HTTP methods [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:14:27.483: INFO: PriorityClass.scheduling.k8s.io "p1" is invalid: Value: Forbidden: may not be changed in an update. +Oct 26 05:14:27.485: INFO: PriorityClass.scheduling.k8s.io "p2" is invalid: Value: Forbidden: may not be changed in an update. +[AfterEach] PriorityClass endpoints + test/e2e/framework/framework.go:188 +Oct 26 05:14:27.506: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sched-preemption-path-6877" for this suite. +[AfterEach] PriorityClass endpoints + test/e2e/scheduling/preemption.go:706 +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:14:27.529: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sched-preemption-6836" for this suite. +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:80 + +• [SLOW TEST:60.258 seconds] +[sig-scheduling] SchedulerPreemption [Serial] +test/e2e/scheduling/framework.go:40 + PriorityClass endpoints + test/e2e/scheduling/preemption.go:683 + verify PriorityClass endpoints can be operated with different HTTP methods [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-scheduling] SchedulerPreemption [Serial] PriorityClass endpoints verify PriorityClass endpoints can be operated with different HTTP methods [Conformance]","total":356,"completed":152,"skipped":2613,"failed":0} +SS +------------------------------ +[sig-network] EndpointSlice + should create and delete Endpoints and EndpointSlices for a Service with a selector specified [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:14:27.586: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename endpointslice +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:51 +[It] should create and delete Endpoints and EndpointSlices for a Service with a selector specified [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-network] EndpointSlice + test/e2e/framework/framework.go:188 +Oct 26 05:14:31.689: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "endpointslice-3469" for this suite. +•{"msg":"PASSED [sig-network] EndpointSlice should create and delete Endpoints and EndpointSlices for a Service with a selector specified [Conformance]","total":356,"completed":153,"skipped":2615,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Kubelet when scheduling a busybox command in a pod + should print the output to logs [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Kubelet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:14:31.697: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubelet-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Kubelet + test/e2e/common/node/kubelet.go:40 +[It] should print the output to logs [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:14:31.723: INFO: The status of Pod busybox-scheduling-7c6b85d6-4764-430c-a658-2a72f5306ebe is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:14:33.728: INFO: The status of Pod busybox-scheduling-7c6b85d6-4764-430c-a658-2a72f5306ebe is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:14:35.731: INFO: The status of Pod busybox-scheduling-7c6b85d6-4764-430c-a658-2a72f5306ebe is Running (Ready = true) +[AfterEach] [sig-node] Kubelet + test/e2e/framework/framework.go:188 +Oct 26 05:14:35.746: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubelet-test-8719" for this suite. +•{"msg":"PASSED [sig-node] Kubelet when scheduling a busybox command in a pod should print the output to logs [NodeConformance] [Conformance]","total":356,"completed":154,"skipped":2675,"failed":0} +SSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir wrapper volumes + should not cause race condition when used for configmaps [Serial] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:14:35.756: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir-wrapper +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should not cause race condition when used for configmaps [Serial] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating 50 configmaps +STEP: Creating RC which spawns configmap-volume pods +Oct 26 05:14:36.123: INFO: Pod name wrapped-volume-race-f34d4a92-ed51-4350-a1ed-fd33bad49012: Found 3 pods out of 5 +Oct 26 05:14:41.137: INFO: Pod name wrapped-volume-race-f34d4a92-ed51-4350-a1ed-fd33bad49012: Found 5 pods out of 5 +STEP: Ensuring each pod is running +STEP: deleting ReplicationController wrapped-volume-race-f34d4a92-ed51-4350-a1ed-fd33bad49012 in namespace emptydir-wrapper-8652, will wait for the garbage collector to delete the pods +Oct 26 05:14:55.247: INFO: Deleting ReplicationController wrapped-volume-race-f34d4a92-ed51-4350-a1ed-fd33bad49012 took: 16.503477ms +Oct 26 05:14:55.351: INFO: Terminating ReplicationController wrapped-volume-race-f34d4a92-ed51-4350-a1ed-fd33bad49012 pods took: 103.658724ms +STEP: Creating RC which spawns configmap-volume pods +Oct 26 05:14:58.071: INFO: Pod name wrapped-volume-race-ddc9e15c-2aba-4fd2-9448-b8f7f4c4e69c: Found 0 pods out of 5 +Oct 26 05:15:03.080: INFO: Pod name wrapped-volume-race-ddc9e15c-2aba-4fd2-9448-b8f7f4c4e69c: Found 5 pods out of 5 +STEP: Ensuring each pod is running +STEP: deleting ReplicationController wrapped-volume-race-ddc9e15c-2aba-4fd2-9448-b8f7f4c4e69c in namespace emptydir-wrapper-8652, will wait for the garbage collector to delete the pods +Oct 26 05:15:15.171: INFO: Deleting ReplicationController wrapped-volume-race-ddc9e15c-2aba-4fd2-9448-b8f7f4c4e69c took: 4.178395ms +Oct 26 05:15:15.271: INFO: Terminating ReplicationController wrapped-volume-race-ddc9e15c-2aba-4fd2-9448-b8f7f4c4e69c pods took: 100.446728ms +STEP: Creating RC which spawns configmap-volume pods +Oct 26 05:15:20.201: INFO: Pod name wrapped-volume-race-3fd51760-cf48-470c-9dcd-d15a09e2c15a: Found 0 pods out of 5 +Oct 26 05:15:25.211: INFO: Pod name wrapped-volume-race-3fd51760-cf48-470c-9dcd-d15a09e2c15a: Found 5 pods out of 5 +STEP: Ensuring each pod is running +STEP: deleting ReplicationController wrapped-volume-race-3fd51760-cf48-470c-9dcd-d15a09e2c15a in namespace emptydir-wrapper-8652, will wait for the garbage collector to delete the pods +Oct 26 05:15:39.287: INFO: Deleting ReplicationController wrapped-volume-race-3fd51760-cf48-470c-9dcd-d15a09e2c15a took: 4.697413ms +Oct 26 05:15:39.387: INFO: Terminating ReplicationController wrapped-volume-race-3fd51760-cf48-470c-9dcd-d15a09e2c15a pods took: 100.50126ms +STEP: Cleaning up the configMaps +[AfterEach] [sig-storage] EmptyDir wrapper volumes + test/e2e/framework/framework.go:188 +Oct 26 05:15:42.540: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-wrapper-8652" for this suite. + +• [SLOW TEST:66.790 seconds] +[sig-storage] EmptyDir wrapper volumes +test/e2e/storage/utils/framework.go:23 + should not cause race condition when used for configmaps [Serial] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] EmptyDir wrapper volumes should not cause race condition when used for configmaps [Serial] [Conformance]","total":356,"completed":155,"skipped":2688,"failed":0} +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should be able to change the type from ExternalName to NodePort [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:15:42.547: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should be able to change the type from ExternalName to NodePort [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a service externalname-service with the type=ExternalName in namespace services-2047 +STEP: changing the ExternalName service to type=NodePort +STEP: creating replication controller externalname-service in namespace services-2047 +I1026 05:15:42.607545 20 runners.go:193] Created replication controller with name: externalname-service, namespace: services-2047, replica count: 2 +I1026 05:15:45.659884 20 runners.go:193] externalname-service Pods: 2 out of 2 created, 2 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Oct 26 05:15:45.660: INFO: Creating new exec pod +Oct 26 05:15:48.686: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-2047 exec execpod4fqqc -- /bin/sh -x -c echo hostName | nc -v -t -w 2 externalname-service 80' +Oct 26 05:15:48.855: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 externalname-service 80\nConnection to externalname-service 80 port [tcp/http] succeeded!\n" +Oct 26 05:15:48.855: INFO: stdout: "externalname-service-jsp2q" +Oct 26 05:15:48.855: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-2047 exec execpod4fqqc -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.71.38.120 80' +Oct 26 05:15:49.018: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.71.38.120 80\nConnection to 100.71.38.120 80 port [tcp/http] succeeded!\n" +Oct 26 05:15:49.018: INFO: stdout: "externalname-service-4lbmw" +Oct 26 05:15:49.018: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-2047 exec execpod4fqqc -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.86.64 31341' +Oct 26 05:15:49.171: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.86.64 31341\nConnection to 172.20.86.64 31341 port [tcp/*] succeeded!\n" +Oct 26 05:15:49.171: INFO: stdout: "externalname-service-jsp2q" +Oct 26 05:15:49.171: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-2047 exec execpod4fqqc -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.115.72 31341' +Oct 26 05:15:49.292: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.115.72 31341\nConnection to 172.20.115.72 31341 port [tcp/*] succeeded!\n" +Oct 26 05:15:49.292: INFO: stdout: "" +Oct 26 05:15:50.293: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-2047 exec execpod4fqqc -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.115.72 31341' +Oct 26 05:15:50.429: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.115.72 31341\nConnection to 172.20.115.72 31341 port [tcp/*] succeeded!\n" +Oct 26 05:15:50.429: INFO: stdout: "" +Oct 26 05:15:51.293: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-2047 exec execpod4fqqc -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.115.72 31341' +Oct 26 05:15:51.432: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.115.72 31341\nConnection to 172.20.115.72 31341 port [tcp/*] succeeded!\n" +Oct 26 05:15:51.432: INFO: stdout: "externalname-service-4lbmw" +Oct 26 05:15:51.432: INFO: Cleaning up the ExternalName to NodePort test service +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 05:15:51.464: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-2047" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:8.928 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should be able to change the type from ExternalName to NodePort [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should be able to change the type from ExternalName to NodePort [Conformance]","total":356,"completed":156,"skipped":2705,"failed":0} +SSSSSSSS +------------------------------ +[sig-node] RuntimeClass + should schedule a Pod requesting a RuntimeClass and initialize its Overhead [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:15:51.476: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename runtimeclass +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should schedule a Pod requesting a RuntimeClass and initialize its Overhead [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-node] RuntimeClass + test/e2e/framework/framework.go:188 +Oct 26 05:15:51.559: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "runtimeclass-8867" for this suite. +•{"msg":"PASSED [sig-node] RuntimeClass should schedule a Pod requesting a RuntimeClass and initialize its Overhead [NodeConformance] [Conformance]","total":356,"completed":157,"skipped":2713,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition + creating/deleting custom resource definition objects works [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:15:51.569: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename custom-resource-definition +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] creating/deleting custom resource definition objects works [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:15:51.585: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +[AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:15:52.605: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "custom-resource-definition-8870" for this suite. +•{"msg":"PASSED [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition creating/deleting custom resource definition objects works [Conformance]","total":356,"completed":158,"skipped":2724,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl replace + should update a single-container pod's image [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:15:52.613: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[BeforeEach] Kubectl replace + test/e2e/kubectl/kubectl.go:1574 +[It] should update a single-container pod's image [Conformance] + test/e2e/framework/framework.go:652 +STEP: running the image k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 +Oct 26 05:15:52.632: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-4355 run e2e-test-httpd-pod --image=k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 --pod-running-timeout=2m0s --labels=run=e2e-test-httpd-pod' +Oct 26 05:15:52.738: INFO: stderr: "" +Oct 26 05:15:52.738: INFO: stdout: "pod/e2e-test-httpd-pod created\n" +STEP: verifying the pod e2e-test-httpd-pod is running +STEP: verifying the pod e2e-test-httpd-pod was created +Oct 26 05:15:57.790: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-4355 get pod e2e-test-httpd-pod -o json' +Oct 26 05:15:57.916: INFO: stderr: "" +Oct 26 05:15:57.916: INFO: stdout: "{\n \"apiVersion\": \"v1\",\n \"kind\": \"Pod\",\n \"metadata\": {\n \"creationTimestamp\": \"2022-10-26T05:15:52Z\",\n \"labels\": {\n \"run\": \"e2e-test-httpd-pod\"\n },\n \"name\": \"e2e-test-httpd-pod\",\n \"namespace\": \"kubectl-4355\",\n \"resourceVersion\": \"18090\",\n \"uid\": \"fa3201c9-0e71-4444-87ef-97d617813f0b\"\n },\n \"spec\": {\n \"containers\": [\n {\n \"image\": \"k8s.gcr.io/e2e-test-images/httpd:2.4.38-2\",\n \"imagePullPolicy\": \"IfNotPresent\",\n \"name\": \"e2e-test-httpd-pod\",\n \"resources\": {},\n \"terminationMessagePath\": \"/dev/termination-log\",\n \"terminationMessagePolicy\": \"File\",\n \"volumeMounts\": [\n {\n \"mountPath\": \"/var/run/secrets/kubernetes.io/serviceaccount\",\n \"name\": \"kube-api-access-8rqtz\",\n \"readOnly\": true\n }\n ]\n }\n ],\n \"dnsPolicy\": \"ClusterFirst\",\n \"enableServiceLinks\": true,\n \"nodeName\": \"i-066ef2cf0d4227da4\",\n \"preemptionPolicy\": \"PreemptLowerPriority\",\n \"priority\": 0,\n \"restartPolicy\": \"Always\",\n \"schedulerName\": \"default-scheduler\",\n \"securityContext\": {},\n \"serviceAccount\": \"default\",\n \"serviceAccountName\": \"default\",\n \"terminationGracePeriodSeconds\": 30,\n \"tolerations\": [\n {\n \"effect\": \"NoExecute\",\n \"key\": \"node.kubernetes.io/not-ready\",\n \"operator\": \"Exists\",\n \"tolerationSeconds\": 300\n },\n {\n \"effect\": \"NoExecute\",\n \"key\": \"node.kubernetes.io/unreachable\",\n \"operator\": \"Exists\",\n \"tolerationSeconds\": 300\n }\n ],\n \"volumes\": [\n {\n \"name\": \"kube-api-access-8rqtz\",\n \"projected\": {\n \"defaultMode\": 420,\n \"sources\": [\n {\n \"serviceAccountToken\": {\n \"expirationSeconds\": 3607,\n \"path\": \"token\"\n }\n },\n {\n \"configMap\": {\n \"items\": [\n {\n \"key\": \"ca.crt\",\n \"path\": \"ca.crt\"\n }\n ],\n \"name\": \"kube-root-ca.crt\"\n }\n },\n {\n \"downwardAPI\": {\n \"items\": [\n {\n \"fieldRef\": {\n \"apiVersion\": \"v1\",\n \"fieldPath\": \"metadata.namespace\"\n },\n \"path\": \"namespace\"\n }\n ]\n }\n }\n ]\n }\n }\n ]\n },\n \"status\": {\n \"conditions\": [\n {\n \"lastProbeTime\": null,\n \"lastTransitionTime\": \"2022-10-26T05:15:52Z\",\n \"status\": \"True\",\n \"type\": \"Initialized\"\n },\n {\n \"lastProbeTime\": null,\n \"lastTransitionTime\": \"2022-10-26T05:15:54Z\",\n \"status\": \"True\",\n \"type\": \"Ready\"\n },\n {\n \"lastProbeTime\": null,\n \"lastTransitionTime\": \"2022-10-26T05:15:54Z\",\n \"status\": \"True\",\n \"type\": \"ContainersReady\"\n },\n {\n \"lastProbeTime\": null,\n \"lastTransitionTime\": \"2022-10-26T05:15:52Z\",\n \"status\": \"True\",\n \"type\": \"PodScheduled\"\n }\n ],\n \"containerStatuses\": [\n {\n \"containerID\": \"containerd://44a96b76a9adb0139a0977c784968d5f691cc6094a9b729ff7fbf1f64302de86\",\n \"image\": \"k8s.gcr.io/e2e-test-images/httpd:2.4.38-2\",\n \"imageID\": \"k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3\",\n \"lastState\": {},\n \"name\": \"e2e-test-httpd-pod\",\n \"ready\": true,\n \"restartCount\": 0,\n \"started\": true,\n \"state\": {\n \"running\": {\n \"startedAt\": \"2022-10-26T05:15:54Z\"\n }\n }\n }\n ],\n \"hostIP\": \"172.20.115.72\",\n \"phase\": \"Running\",\n \"podIP\": \"100.96.2.130\",\n \"podIPs\": [\n {\n \"ip\": \"100.96.2.130\"\n }\n ],\n \"qosClass\": \"BestEffort\",\n \"startTime\": \"2022-10-26T05:15:52Z\"\n }\n}\n" +STEP: replace the image in the pod +Oct 26 05:15:57.916: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-4355 replace -f -' +Oct 26 05:15:59.120: INFO: stderr: "" +Oct 26 05:15:59.120: INFO: stdout: "pod/e2e-test-httpd-pod replaced\n" +STEP: verifying the pod e2e-test-httpd-pod has the right image k8s.gcr.io/e2e-test-images/busybox:1.29-2 +[AfterEach] Kubectl replace + test/e2e/kubectl/kubectl.go:1578 +Oct 26 05:15:59.123: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-4355 delete pods e2e-test-httpd-pod' +Oct 26 05:16:00.669: INFO: stderr: "" +Oct 26 05:16:00.669: INFO: stdout: "pod \"e2e-test-httpd-pod\" deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 05:16:00.669: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-4355" for this suite. + +• [SLOW TEST:8.068 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl replace + test/e2e/kubectl/kubectl.go:1571 + should update a single-container pod's image [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-cli] Kubectl client Kubectl replace should update a single-container pod's image [Conformance]","total":356,"completed":159,"skipped":2749,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for multiple CRDs of same group but different versions [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:16:00.681: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-publish-openapi +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] works for multiple CRDs of same group but different versions [Conformance] + test/e2e/framework/framework.go:652 +STEP: CRs in the same group but different versions (one multiversion CRD) show up in OpenAPI documentation +Oct 26 05:16:00.702: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: CRs in the same group but different versions (two CRDs) show up in OpenAPI documentation +Oct 26 05:16:12.663: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 05:16:15.963: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:16:29.263: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-publish-openapi-3475" for this suite. + +• [SLOW TEST:28.593 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + works for multiple CRDs of same group but different versions [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for multiple CRDs of same group but different versions [Conformance]","total":356,"completed":160,"skipped":2776,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-scheduling] LimitRange + should create a LimitRange with defaults and ensure pod has those defaults applied. [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-scheduling] LimitRange + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:16:29.275: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename limitrange +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should create a LimitRange with defaults and ensure pod has those defaults applied. [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a LimitRange +STEP: Setting up watch +STEP: Submitting a LimitRange +Oct 26 05:16:29.301: INFO: observed the limitRanges list +STEP: Verifying LimitRange creation was observed +STEP: Fetching the LimitRange to ensure it has proper values +Oct 26 05:16:29.304: INFO: Verifying requests: expected map[cpu:{{100 -3} {} 100m DecimalSI} ephemeral-storage:{{214748364800 0} {} BinarySI} memory:{{209715200 0} {} BinarySI}] with actual map[cpu:{{100 -3} {} 100m DecimalSI} ephemeral-storage:{{214748364800 0} {} BinarySI} memory:{{209715200 0} {} BinarySI}] +Oct 26 05:16:29.304: INFO: Verifying limits: expected map[cpu:{{500 -3} {} 500m DecimalSI} ephemeral-storage:{{536870912000 0} {} 500Gi BinarySI} memory:{{524288000 0} {} 500Mi BinarySI}] with actual map[cpu:{{500 -3} {} 500m DecimalSI} ephemeral-storage:{{536870912000 0} {} 500Gi BinarySI} memory:{{524288000 0} {} 500Mi BinarySI}] +STEP: Creating a Pod with no resource requirements +STEP: Ensuring Pod has resource requirements applied from LimitRange +Oct 26 05:16:29.311: INFO: Verifying requests: expected map[cpu:{{100 -3} {} 100m DecimalSI} ephemeral-storage:{{214748364800 0} {} BinarySI} memory:{{209715200 0} {} BinarySI}] with actual map[cpu:{{100 -3} {} 100m DecimalSI} ephemeral-storage:{{214748364800 0} {} BinarySI} memory:{{209715200 0} {} BinarySI}] +Oct 26 05:16:29.311: INFO: Verifying limits: expected map[cpu:{{500 -3} {} 500m DecimalSI} ephemeral-storage:{{536870912000 0} {} 500Gi BinarySI} memory:{{524288000 0} {} 500Mi BinarySI}] with actual map[cpu:{{500 -3} {} 500m DecimalSI} ephemeral-storage:{{536870912000 0} {} 500Gi BinarySI} memory:{{524288000 0} {} 500Mi BinarySI}] +STEP: Creating a Pod with partial resource requirements +STEP: Ensuring Pod has merged resource requirements applied from LimitRange +Oct 26 05:16:29.323: INFO: Verifying requests: expected map[cpu:{{300 -3} {} 300m DecimalSI} ephemeral-storage:{{161061273600 0} {} 150Gi BinarySI} memory:{{157286400 0} {} 150Mi BinarySI}] with actual map[cpu:{{300 -3} {} 300m DecimalSI} ephemeral-storage:{{161061273600 0} {} 150Gi BinarySI} memory:{{157286400 0} {} 150Mi BinarySI}] +Oct 26 05:16:29.323: INFO: Verifying limits: expected map[cpu:{{300 -3} {} 300m DecimalSI} ephemeral-storage:{{536870912000 0} {} 500Gi BinarySI} memory:{{524288000 0} {} 500Mi BinarySI}] with actual map[cpu:{{300 -3} {} 300m DecimalSI} ephemeral-storage:{{536870912000 0} {} 500Gi BinarySI} memory:{{524288000 0} {} 500Mi BinarySI}] +STEP: Failing to create a Pod with less than min resources +STEP: Failing to create a Pod with more than max resources +STEP: Updating a LimitRange +STEP: Verifying LimitRange updating is effective +STEP: Creating a Pod with less than former min resources +STEP: Failing to create a Pod with more than max resources +STEP: Deleting a LimitRange +STEP: Verifying the LimitRange was deleted +Oct 26 05:16:36.390: INFO: limitRange is already deleted +STEP: Creating a Pod with more than former max resources +[AfterEach] [sig-scheduling] LimitRange + test/e2e/framework/framework.go:188 +Oct 26 05:16:36.399: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "limitrange-4170" for this suite. + +• [SLOW TEST:7.134 seconds] +[sig-scheduling] LimitRange +test/e2e/scheduling/framework.go:40 + should create a LimitRange with defaults and ensure pod has those defaults applied. [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-scheduling] LimitRange should create a LimitRange with defaults and ensure pod has those defaults applied. [Conformance]","total":356,"completed":161,"skipped":2791,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Discovery + should validate PreferredVersion for each APIGroup [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Discovery + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:16:36.410: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename discovery +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] Discovery + test/e2e/apimachinery/discovery.go:43 +STEP: Setting up server cert +[It] should validate PreferredVersion for each APIGroup [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:16:37.093: INFO: Checking APIGroup: apiregistration.k8s.io +Oct 26 05:16:37.094: INFO: PreferredVersion.GroupVersion: apiregistration.k8s.io/v1 +Oct 26 05:16:37.094: INFO: Versions found [{apiregistration.k8s.io/v1 v1}] +Oct 26 05:16:37.094: INFO: apiregistration.k8s.io/v1 matches apiregistration.k8s.io/v1 +Oct 26 05:16:37.094: INFO: Checking APIGroup: apps +Oct 26 05:16:37.095: INFO: PreferredVersion.GroupVersion: apps/v1 +Oct 26 05:16:37.095: INFO: Versions found [{apps/v1 v1}] +Oct 26 05:16:37.095: INFO: apps/v1 matches apps/v1 +Oct 26 05:16:37.095: INFO: Checking APIGroup: events.k8s.io +Oct 26 05:16:37.096: INFO: PreferredVersion.GroupVersion: events.k8s.io/v1 +Oct 26 05:16:37.096: INFO: Versions found [{events.k8s.io/v1 v1} {events.k8s.io/v1beta1 v1beta1}] +Oct 26 05:16:37.096: INFO: events.k8s.io/v1 matches events.k8s.io/v1 +Oct 26 05:16:37.096: INFO: Checking APIGroup: authentication.k8s.io +Oct 26 05:16:37.097: INFO: PreferredVersion.GroupVersion: authentication.k8s.io/v1 +Oct 26 05:16:37.097: INFO: Versions found [{authentication.k8s.io/v1 v1}] +Oct 26 05:16:37.097: INFO: authentication.k8s.io/v1 matches authentication.k8s.io/v1 +Oct 26 05:16:37.097: INFO: Checking APIGroup: authorization.k8s.io +Oct 26 05:16:37.098: INFO: PreferredVersion.GroupVersion: authorization.k8s.io/v1 +Oct 26 05:16:37.098: INFO: Versions found [{authorization.k8s.io/v1 v1}] +Oct 26 05:16:37.098: INFO: authorization.k8s.io/v1 matches authorization.k8s.io/v1 +Oct 26 05:16:37.098: INFO: Checking APIGroup: autoscaling +Oct 26 05:16:37.099: INFO: PreferredVersion.GroupVersion: autoscaling/v2 +Oct 26 05:16:37.099: INFO: Versions found [{autoscaling/v2 v2} {autoscaling/v1 v1} {autoscaling/v2beta1 v2beta1} {autoscaling/v2beta2 v2beta2}] +Oct 26 05:16:37.099: INFO: autoscaling/v2 matches autoscaling/v2 +Oct 26 05:16:37.099: INFO: Checking APIGroup: batch +Oct 26 05:16:37.100: INFO: PreferredVersion.GroupVersion: batch/v1 +Oct 26 05:16:37.100: INFO: Versions found [{batch/v1 v1} {batch/v1beta1 v1beta1}] +Oct 26 05:16:37.100: INFO: batch/v1 matches batch/v1 +Oct 26 05:16:37.100: INFO: Checking APIGroup: certificates.k8s.io +Oct 26 05:16:37.101: INFO: PreferredVersion.GroupVersion: certificates.k8s.io/v1 +Oct 26 05:16:37.101: INFO: Versions found [{certificates.k8s.io/v1 v1}] +Oct 26 05:16:37.101: INFO: certificates.k8s.io/v1 matches certificates.k8s.io/v1 +Oct 26 05:16:37.101: INFO: Checking APIGroup: networking.k8s.io +Oct 26 05:16:37.101: INFO: PreferredVersion.GroupVersion: networking.k8s.io/v1 +Oct 26 05:16:37.101: INFO: Versions found [{networking.k8s.io/v1 v1}] +Oct 26 05:16:37.102: INFO: networking.k8s.io/v1 matches networking.k8s.io/v1 +Oct 26 05:16:37.102: INFO: Checking APIGroup: policy +Oct 26 05:16:37.102: INFO: PreferredVersion.GroupVersion: policy/v1 +Oct 26 05:16:37.102: INFO: Versions found [{policy/v1 v1} {policy/v1beta1 v1beta1}] +Oct 26 05:16:37.102: INFO: policy/v1 matches policy/v1 +Oct 26 05:16:37.102: INFO: Checking APIGroup: rbac.authorization.k8s.io +Oct 26 05:16:37.103: INFO: PreferredVersion.GroupVersion: rbac.authorization.k8s.io/v1 +Oct 26 05:16:37.103: INFO: Versions found [{rbac.authorization.k8s.io/v1 v1}] +Oct 26 05:16:37.103: INFO: rbac.authorization.k8s.io/v1 matches rbac.authorization.k8s.io/v1 +Oct 26 05:16:37.103: INFO: Checking APIGroup: storage.k8s.io +Oct 26 05:16:37.104: INFO: PreferredVersion.GroupVersion: storage.k8s.io/v1 +Oct 26 05:16:37.104: INFO: Versions found [{storage.k8s.io/v1 v1} {storage.k8s.io/v1beta1 v1beta1}] +Oct 26 05:16:37.104: INFO: storage.k8s.io/v1 matches storage.k8s.io/v1 +Oct 26 05:16:37.104: INFO: Checking APIGroup: admissionregistration.k8s.io +Oct 26 05:16:37.104: INFO: PreferredVersion.GroupVersion: admissionregistration.k8s.io/v1 +Oct 26 05:16:37.104: INFO: Versions found [{admissionregistration.k8s.io/v1 v1}] +Oct 26 05:16:37.104: INFO: admissionregistration.k8s.io/v1 matches admissionregistration.k8s.io/v1 +Oct 26 05:16:37.104: INFO: Checking APIGroup: apiextensions.k8s.io +Oct 26 05:16:37.105: INFO: PreferredVersion.GroupVersion: apiextensions.k8s.io/v1 +Oct 26 05:16:37.105: INFO: Versions found [{apiextensions.k8s.io/v1 v1}] +Oct 26 05:16:37.105: INFO: apiextensions.k8s.io/v1 matches apiextensions.k8s.io/v1 +Oct 26 05:16:37.105: INFO: Checking APIGroup: scheduling.k8s.io +Oct 26 05:16:37.106: INFO: PreferredVersion.GroupVersion: scheduling.k8s.io/v1 +Oct 26 05:16:37.106: INFO: Versions found [{scheduling.k8s.io/v1 v1}] +Oct 26 05:16:37.106: INFO: scheduling.k8s.io/v1 matches scheduling.k8s.io/v1 +Oct 26 05:16:37.106: INFO: Checking APIGroup: coordination.k8s.io +Oct 26 05:16:37.106: INFO: PreferredVersion.GroupVersion: coordination.k8s.io/v1 +Oct 26 05:16:37.106: INFO: Versions found [{coordination.k8s.io/v1 v1}] +Oct 26 05:16:37.106: INFO: coordination.k8s.io/v1 matches coordination.k8s.io/v1 +Oct 26 05:16:37.106: INFO: Checking APIGroup: node.k8s.io +Oct 26 05:16:37.107: INFO: PreferredVersion.GroupVersion: node.k8s.io/v1 +Oct 26 05:16:37.107: INFO: Versions found [{node.k8s.io/v1 v1} {node.k8s.io/v1beta1 v1beta1}] +Oct 26 05:16:37.107: INFO: node.k8s.io/v1 matches node.k8s.io/v1 +Oct 26 05:16:37.107: INFO: Checking APIGroup: discovery.k8s.io +Oct 26 05:16:37.108: INFO: PreferredVersion.GroupVersion: discovery.k8s.io/v1 +Oct 26 05:16:37.108: INFO: Versions found [{discovery.k8s.io/v1 v1} {discovery.k8s.io/v1beta1 v1beta1}] +Oct 26 05:16:37.108: INFO: discovery.k8s.io/v1 matches discovery.k8s.io/v1 +Oct 26 05:16:37.108: INFO: Checking APIGroup: flowcontrol.apiserver.k8s.io +Oct 26 05:16:37.108: INFO: PreferredVersion.GroupVersion: flowcontrol.apiserver.k8s.io/v1beta2 +Oct 26 05:16:37.108: INFO: Versions found [{flowcontrol.apiserver.k8s.io/v1beta2 v1beta2} {flowcontrol.apiserver.k8s.io/v1beta1 v1beta1}] +Oct 26 05:16:37.108: INFO: flowcontrol.apiserver.k8s.io/v1beta2 matches flowcontrol.apiserver.k8s.io/v1beta2 +Oct 26 05:16:37.108: INFO: Checking APIGroup: iamauthenticator.k8s.aws +Oct 26 05:16:37.109: INFO: PreferredVersion.GroupVersion: iamauthenticator.k8s.aws/v1alpha1 +Oct 26 05:16:37.109: INFO: Versions found [{iamauthenticator.k8s.aws/v1alpha1 v1alpha1}] +Oct 26 05:16:37.109: INFO: iamauthenticator.k8s.aws/v1alpha1 matches iamauthenticator.k8s.aws/v1alpha1 +Oct 26 05:16:37.109: INFO: Checking APIGroup: cilium.io +Oct 26 05:16:37.109: INFO: PreferredVersion.GroupVersion: cilium.io/v2 +Oct 26 05:16:37.109: INFO: Versions found [{cilium.io/v2 v2}] +Oct 26 05:16:37.109: INFO: cilium.io/v2 matches cilium.io/v2 +Oct 26 05:16:37.109: INFO: Checking APIGroup: metrics.k8s.io +Oct 26 05:16:37.110: INFO: PreferredVersion.GroupVersion: metrics.k8s.io/v1beta1 +Oct 26 05:16:37.110: INFO: Versions found [{metrics.k8s.io/v1beta1 v1beta1}] +Oct 26 05:16:37.110: INFO: metrics.k8s.io/v1beta1 matches metrics.k8s.io/v1beta1 +[AfterEach] [sig-api-machinery] Discovery + test/e2e/framework/framework.go:188 +Oct 26 05:16:37.110: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "discovery-993" for this suite. +•{"msg":"PASSED [sig-api-machinery] Discovery should validate PreferredVersion for each APIGroup [Conformance]","total":356,"completed":162,"skipped":2862,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for multiple CRDs of same group and version but different kinds [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:16:37.116: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-publish-openapi +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] works for multiple CRDs of same group and version but different kinds [Conformance] + test/e2e/framework/framework.go:652 +STEP: CRs in the same group and version but different kinds (two CRDs) show up in OpenAPI documentation +Oct 26 05:16:37.132: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 05:16:39.414: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:16:50.796: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-publish-openapi-7097" for this suite. + +• [SLOW TEST:13.691 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + works for multiple CRDs of same group and version but different kinds [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for multiple CRDs of same group and version but different kinds [Conformance]","total":356,"completed":163,"skipped":2873,"failed":0} +[sig-network] Services + should be able to switch session affinity for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:16:50.807: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should be able to switch session affinity for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating service in namespace services-9329 +STEP: creating service affinity-clusterip-transition in namespace services-9329 +STEP: creating replication controller affinity-clusterip-transition in namespace services-9329 +I1026 05:16:50.851003 20 runners.go:193] Created replication controller with name: affinity-clusterip-transition, namespace: services-9329, replica count: 3 +I1026 05:16:53.902216 20 runners.go:193] affinity-clusterip-transition Pods: 3 out of 3 created, 3 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Oct 26 05:16:53.910: INFO: Creating new exec pod +Oct 26 05:16:56.925: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-9329 exec execpod-affinityj78fc -- /bin/sh -x -c echo hostName | nc -v -t -w 2 affinity-clusterip-transition 80' +Oct 26 05:16:57.066: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 affinity-clusterip-transition 80\nConnection to affinity-clusterip-transition 80 port [tcp/http] succeeded!\n" +Oct 26 05:16:57.066: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:16:57.066: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-9329 exec execpod-affinityj78fc -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.67.152.250 80' +Oct 26 05:16:57.191: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.67.152.250 80\nConnection to 100.67.152.250 80 port [tcp/http] succeeded!\n" +Oct 26 05:16:57.191: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:16:57.205: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-9329 exec execpod-affinityj78fc -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://100.67.152.250:80/ ; done' +Oct 26 05:16:57.473: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n" +Oct 26 05:16:57.473: INFO: stdout: "\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-269g2\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-269g2\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-zns6j\naffinity-clusterip-transition-zns6j\naffinity-clusterip-transition-269g2\naffinity-clusterip-transition-zns6j\naffinity-clusterip-transition-zns6j\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-zns6j\naffinity-clusterip-transition-269g2\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-269g2" +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-269g2 +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-269g2 +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-zns6j +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-zns6j +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-269g2 +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-zns6j +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-zns6j +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-zns6j +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-269g2 +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.473: INFO: Received response from host: affinity-clusterip-transition-269g2 +Oct 26 05:16:57.482: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-9329 exec execpod-affinityj78fc -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://100.67.152.250:80/ ; done' +Oct 26 05:16:57.757: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n+ echo\n+ curl -q -s --connect-timeout 2 http://100.67.152.250:80/\n" +Oct 26 05:16:57.757: INFO: stdout: "\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw\naffinity-clusterip-transition-gtkhw" +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Received response from host: affinity-clusterip-transition-gtkhw +Oct 26 05:16:57.757: INFO: Cleaning up the exec pod +STEP: deleting ReplicationController affinity-clusterip-transition in namespace services-9329, will wait for the garbage collector to delete the pods +Oct 26 05:16:57.824: INFO: Deleting ReplicationController affinity-clusterip-transition took: 4.41608ms +Oct 26 05:16:57.926: INFO: Terminating ReplicationController affinity-clusterip-transition pods took: 101.082471ms +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 05:17:00.275: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-9329" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:9.481 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should be able to switch session affinity for service with type clusterIP [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should be able to switch session affinity for service with type clusterIP [LinuxOnly] [Conformance]","total":356,"completed":164,"skipped":2873,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Pods + should support retrieving logs from the container over websockets [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Pods + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:17:00.291: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pods +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:191 +[It] should support retrieving logs from the container over websockets [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:17:00.317: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: creating the pod +STEP: submitting the pod to kubernetes +Oct 26 05:17:00.347: INFO: The status of Pod pod-logs-websocket-8770adcd-0a4b-4d42-beea-81ba43bcb89c is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:17:02.359: INFO: The status of Pod pod-logs-websocket-8770adcd-0a4b-4d42-beea-81ba43bcb89c is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:17:04.354: INFO: The status of Pod pod-logs-websocket-8770adcd-0a4b-4d42-beea-81ba43bcb89c is Running (Ready = true) +[AfterEach] [sig-node] Pods + test/e2e/framework/framework.go:188 +Oct 26 05:17:04.372: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pods-3042" for this suite. +•{"msg":"PASSED [sig-node] Pods should support retrieving logs from the container over websockets [NodeConformance] [Conformance]","total":356,"completed":165,"skipped":2904,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Pods + should get a host IP [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Pods + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:17:04.395: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pods +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:191 +[It] should get a host IP [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating pod +Oct 26 05:17:04.431: INFO: The status of Pod pod-hostip-d8ae1f2f-685d-451b-8af7-28714552c93e is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:17:06.437: INFO: The status of Pod pod-hostip-d8ae1f2f-685d-451b-8af7-28714552c93e is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:17:08.440: INFO: The status of Pod pod-hostip-d8ae1f2f-685d-451b-8af7-28714552c93e is Running (Ready = true) +Oct 26 05:17:08.445: INFO: Pod pod-hostip-d8ae1f2f-685d-451b-8af7-28714552c93e has hostIP: 172.20.115.72 +[AfterEach] [sig-node] Pods + test/e2e/framework/framework.go:188 +Oct 26 05:17:08.445: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pods-1314" for this suite. +•{"msg":"PASSED [sig-node] Pods should get a host IP [NodeConformance] [Conformance]","total":356,"completed":166,"skipped":2947,"failed":0} +SS +------------------------------ +[sig-api-machinery] Garbage collector + should keep the rc around until all its pods are deleted if the deleteOptions says so [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:17:08.453: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename gc +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should keep the rc around until all its pods are deleted if the deleteOptions says so [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the rc +STEP: delete the rc +STEP: wait for the rc to be deleted +Oct 26 05:17:15.171: INFO: 82 pods remaining +Oct 26 05:17:15.185: INFO: 76 pods has nil DeletionTimestamp +Oct 26 05:17:15.186: INFO: +Oct 26 05:17:15.555: INFO: 78 pods remaining +Oct 26 05:17:15.555: INFO: 71 pods has nil DeletionTimestamp +Oct 26 05:17:15.555: INFO: +Oct 26 05:17:17.192: INFO: 68 pods remaining +Oct 26 05:17:17.192: INFO: 59 pods has nil DeletionTimestamp +Oct 26 05:17:17.192: INFO: +Oct 26 05:17:18.709: INFO: 56 pods remaining +Oct 26 05:17:18.730: INFO: 40 pods has nil DeletionTimestamp +Oct 26 05:17:18.730: INFO: +Oct 26 05:17:21.648: INFO: 35 pods remaining +Oct 26 05:17:21.661: INFO: 11 pods has nil DeletionTimestamp +Oct 26 05:17:21.670: INFO: +Oct 26 05:17:22.747: INFO: 16 pods remaining +Oct 26 05:17:22.747: INFO: 0 pods has nil DeletionTimestamp +Oct 26 05:17:22.747: INFO: +Oct 26 05:17:23.504: INFO: 9 pods remaining +Oct 26 05:17:23.504: INFO: 0 pods has nil DeletionTimestamp +Oct 26 05:17:23.504: INFO: +Oct 26 05:17:24.506: INFO: 4 pods remaining +Oct 26 05:17:24.506: INFO: 0 pods has nil DeletionTimestamp +Oct 26 05:17:24.506: INFO: +STEP: Gathering metrics +Oct 26 05:17:25.538: INFO: The status of Pod kube-controller-manager-i-01a506a1cd9f42b49 is Running (Ready = true) +Oct 26 05:17:25.645: INFO: For apiserver_request_total: +For apiserver_request_latency_seconds: +For apiserver_init_events_total: +For garbage_collector_attempt_to_delete_queue_latency: +For garbage_collector_attempt_to_delete_work_duration: +For garbage_collector_attempt_to_orphan_queue_latency: +For garbage_collector_attempt_to_orphan_work_duration: +For garbage_collector_dirty_processing_latency_microseconds: +For garbage_collector_event_processing_latency_microseconds: +For garbage_collector_graph_changes_queue_latency: +For garbage_collector_graph_changes_work_duration: +For garbage_collector_orphan_processing_latency_microseconds: +For namespace_queue_latency: +For namespace_queue_latency_sum: +For namespace_queue_latency_count: +For namespace_retries: +For namespace_work_duration: +For namespace_work_duration_sum: +For namespace_work_duration_count: +For function_duration_seconds: +For errors_total: +For evicted_pods_total: + +[AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:188 +Oct 26 05:17:25.645: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "gc-5576" for this suite. + +• [SLOW TEST:17.201 seconds] +[sig-api-machinery] Garbage collector +test/e2e/apimachinery/framework.go:23 + should keep the rc around until all its pods are deleted if the deleteOptions says so [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] Garbage collector should keep the rc around until all its pods are deleted if the deleteOptions says so [Conformance]","total":356,"completed":167,"skipped":2949,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-instrumentation] Events + should delete a collection of events [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-instrumentation] Events + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:17:25.654: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename events +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should delete a collection of events [Conformance] + test/e2e/framework/framework.go:652 +STEP: Create set of events +Oct 26 05:17:25.673: INFO: created test-event-1 +Oct 26 05:17:25.676: INFO: created test-event-2 +Oct 26 05:17:25.678: INFO: created test-event-3 +STEP: get a list of Events with a label in the current namespace +STEP: delete collection of events +Oct 26 05:17:25.680: INFO: requesting DeleteCollection of events +STEP: check that the list of events matches the requested quantity +Oct 26 05:17:25.688: INFO: requesting list of events to confirm quantity +[AfterEach] [sig-instrumentation] Events + test/e2e/framework/framework.go:188 +Oct 26 05:17:25.690: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "events-7941" for this suite. +•{"msg":"PASSED [sig-instrumentation] Events should delete a collection of events [Conformance]","total":356,"completed":168,"skipped":2988,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Security Context When creating a container with runAsUser + should run the container with uid 65534 [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:17:25.698: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename security-context-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:48 +[It] should run the container with uid 65534 [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:17:25.767: INFO: Waiting up to 5m0s for pod "busybox-user-65534-d80cacef-47dd-4a18-98c3-e69928bdad5d" in namespace "security-context-test-4025" to be "Succeeded or Failed" +Oct 26 05:17:25.781: INFO: Pod "busybox-user-65534-d80cacef-47dd-4a18-98c3-e69928bdad5d": Phase="Pending", Reason="", readiness=false. Elapsed: 13.507589ms +Oct 26 05:17:27.785: INFO: Pod "busybox-user-65534-d80cacef-47dd-4a18-98c3-e69928bdad5d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.017834391s +Oct 26 05:17:29.793: INFO: Pod "busybox-user-65534-d80cacef-47dd-4a18-98c3-e69928bdad5d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.026031668s +Oct 26 05:17:31.800: INFO: Pod "busybox-user-65534-d80cacef-47dd-4a18-98c3-e69928bdad5d": Phase="Pending", Reason="", readiness=false. Elapsed: 6.032462843s +Oct 26 05:17:33.806: INFO: Pod "busybox-user-65534-d80cacef-47dd-4a18-98c3-e69928bdad5d": Phase="Pending", Reason="", readiness=false. Elapsed: 8.038650445s +Oct 26 05:17:35.812: INFO: Pod "busybox-user-65534-d80cacef-47dd-4a18-98c3-e69928bdad5d": Phase="Pending", Reason="", readiness=false. Elapsed: 10.044328437s +Oct 26 05:17:37.815: INFO: Pod "busybox-user-65534-d80cacef-47dd-4a18-98c3-e69928bdad5d": Phase="Pending", Reason="", readiness=false. Elapsed: 12.047896122s +Oct 26 05:17:39.819: INFO: Pod "busybox-user-65534-d80cacef-47dd-4a18-98c3-e69928bdad5d": Phase="Succeeded", Reason="", readiness=false. Elapsed: 14.051735403s +Oct 26 05:17:39.819: INFO: Pod "busybox-user-65534-d80cacef-47dd-4a18-98c3-e69928bdad5d" satisfied condition "Succeeded or Failed" +[AfterEach] [sig-node] Security Context + test/e2e/framework/framework.go:188 +Oct 26 05:17:39.819: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "security-context-test-4025" for this suite. + +• [SLOW TEST:14.132 seconds] +[sig-node] Security Context +test/e2e/common/node/framework.go:23 + When creating a container with runAsUser + test/e2e/common/node/security_context.go:52 + should run the container with uid 65534 [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Security Context When creating a container with runAsUser should run the container with uid 65534 [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":169,"skipped":3023,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] CronJob + should replace jobs when ReplaceConcurrent [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] CronJob + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:17:39.831: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename cronjob +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should replace jobs when ReplaceConcurrent [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a ReplaceConcurrent cronjob +STEP: Ensuring a job is scheduled +STEP: Ensuring exactly one is scheduled +STEP: Ensuring exactly one running job exists by listing jobs explicitly +STEP: Ensuring the job is replaced with a new one +STEP: Removing cronjob +[AfterEach] [sig-apps] CronJob + test/e2e/framework/framework.go:188 +Oct 26 05:19:01.879: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "cronjob-166" for this suite. + +• [SLOW TEST:82.057 seconds] +[sig-apps] CronJob +test/e2e/apps/framework.go:23 + should replace jobs when ReplaceConcurrent [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] CronJob should replace jobs when ReplaceConcurrent [Conformance]","total":356,"completed":170,"skipped":3049,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Secrets + should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:19:01.889: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating secret secrets-7640/secret-test-dc1b095a-166f-4997-956f-9b5dcee5d572 +STEP: Creating a pod to test consume secrets +Oct 26 05:19:01.920: INFO: Waiting up to 5m0s for pod "pod-configmaps-86a919ca-f168-4e85-8b84-cab6133a8c06" in namespace "secrets-7640" to be "Succeeded or Failed" +Oct 26 05:19:01.924: INFO: Pod "pod-configmaps-86a919ca-f168-4e85-8b84-cab6133a8c06": Phase="Pending", Reason="", readiness=false. Elapsed: 3.907869ms +Oct 26 05:19:03.930: INFO: Pod "pod-configmaps-86a919ca-f168-4e85-8b84-cab6133a8c06": Phase="Running", Reason="", readiness=true. Elapsed: 2.010472092s +Oct 26 05:19:05.937: INFO: Pod "pod-configmaps-86a919ca-f168-4e85-8b84-cab6133a8c06": Phase="Running", Reason="", readiness=false. Elapsed: 4.017641131s +Oct 26 05:19:07.942: INFO: Pod "pod-configmaps-86a919ca-f168-4e85-8b84-cab6133a8c06": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.022139984s +STEP: Saw pod success +Oct 26 05:19:07.942: INFO: Pod "pod-configmaps-86a919ca-f168-4e85-8b84-cab6133a8c06" satisfied condition "Succeeded or Failed" +Oct 26 05:19:07.944: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-configmaps-86a919ca-f168-4e85-8b84-cab6133a8c06 container env-test: +STEP: delete the pod +Oct 26 05:19:07.963: INFO: Waiting for pod pod-configmaps-86a919ca-f168-4e85-8b84-cab6133a8c06 to disappear +Oct 26 05:19:07.965: INFO: Pod pod-configmaps-86a919ca-f168-4e85-8b84-cab6133a8c06 no longer exists +[AfterEach] [sig-node] Secrets + test/e2e/framework/framework.go:188 +Oct 26 05:19:07.965: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-7640" for this suite. + +• [SLOW TEST:6.083 seconds] +[sig-node] Secrets +test/e2e/common/node/framework.go:23 + should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Secrets should be consumable via the environment [NodeConformance] [Conformance]","total":356,"completed":171,"skipped":3072,"failed":0} +SSSSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should allow composing env vars into new env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:19:07.972: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename var-expansion +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should allow composing env vars into new env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test env composition +Oct 26 05:19:07.998: INFO: Waiting up to 5m0s for pod "var-expansion-c2316c1c-4252-4c39-a467-aab46a9fda79" in namespace "var-expansion-8470" to be "Succeeded or Failed" +Oct 26 05:19:08.004: INFO: Pod "var-expansion-c2316c1c-4252-4c39-a467-aab46a9fda79": Phase="Pending", Reason="", readiness=false. Elapsed: 5.618929ms +Oct 26 05:19:10.012: INFO: Pod "var-expansion-c2316c1c-4252-4c39-a467-aab46a9fda79": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013889132s +Oct 26 05:19:12.019: INFO: Pod "var-expansion-c2316c1c-4252-4c39-a467-aab46a9fda79": Phase="Pending", Reason="", readiness=false. Elapsed: 4.020979985s +Oct 26 05:19:14.025: INFO: Pod "var-expansion-c2316c1c-4252-4c39-a467-aab46a9fda79": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.027356686s +STEP: Saw pod success +Oct 26 05:19:14.026: INFO: Pod "var-expansion-c2316c1c-4252-4c39-a467-aab46a9fda79" satisfied condition "Succeeded or Failed" +Oct 26 05:19:14.031: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod var-expansion-c2316c1c-4252-4c39-a467-aab46a9fda79 container dapi-container: +STEP: delete the pod +Oct 26 05:19:14.044: INFO: Waiting for pod var-expansion-c2316c1c-4252-4c39-a467-aab46a9fda79 to disappear +Oct 26 05:19:14.046: INFO: Pod var-expansion-c2316c1c-4252-4c39-a467-aab46a9fda79 no longer exists +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:188 +Oct 26 05:19:14.046: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "var-expansion-8470" for this suite. + +• [SLOW TEST:6.080 seconds] +[sig-node] Variable Expansion +test/e2e/common/node/framework.go:23 + should allow composing env vars into new env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Variable Expansion should allow composing env vars into new env vars [NodeConformance] [Conformance]","total":356,"completed":172,"skipped":3082,"failed":0} +S +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:19:14.053: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0666 on tmpfs +Oct 26 05:19:14.089: INFO: Waiting up to 5m0s for pod "pod-582a89a9-25a7-4cbd-98cb-9552075dea65" in namespace "emptydir-949" to be "Succeeded or Failed" +Oct 26 05:19:14.092: INFO: Pod "pod-582a89a9-25a7-4cbd-98cb-9552075dea65": Phase="Pending", Reason="", readiness=false. Elapsed: 2.235556ms +Oct 26 05:19:16.099: INFO: Pod "pod-582a89a9-25a7-4cbd-98cb-9552075dea65": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009507732s +Oct 26 05:19:18.104: INFO: Pod "pod-582a89a9-25a7-4cbd-98cb-9552075dea65": Phase="Pending", Reason="", readiness=false. Elapsed: 4.0141226s +Oct 26 05:19:20.115: INFO: Pod "pod-582a89a9-25a7-4cbd-98cb-9552075dea65": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.025325105s +STEP: Saw pod success +Oct 26 05:19:20.115: INFO: Pod "pod-582a89a9-25a7-4cbd-98cb-9552075dea65" satisfied condition "Succeeded or Failed" +Oct 26 05:19:20.117: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-582a89a9-25a7-4cbd-98cb-9552075dea65 container test-container: +STEP: delete the pod +Oct 26 05:19:20.131: INFO: Waiting for pod pod-582a89a9-25a7-4cbd-98cb-9552075dea65 to disappear +Oct 26 05:19:20.134: INFO: Pod pod-582a89a9-25a7-4cbd-98cb-9552075dea65 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 05:19:20.134: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-949" for this suite. + +• [SLOW TEST:6.095 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] EmptyDir volumes should support (root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":173,"skipped":3083,"failed":0} +S +------------------------------ +[sig-node] Containers + should use the image defaults if command and args are blank [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Containers + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:19:20.148: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename containers +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should use the image defaults if command and args are blank [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-node] Containers + test/e2e/framework/framework.go:188 +Oct 26 05:19:24.192: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "containers-9321" for this suite. +•{"msg":"PASSED [sig-node] Containers should use the image defaults if command and args are blank [NodeConformance] [Conformance]","total":356,"completed":174,"skipped":3084,"failed":0} +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Security Context + should support pod.Spec.SecurityContext.RunAsUser And pod.Spec.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:19:24.200: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename security-context +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support pod.Spec.SecurityContext.RunAsUser And pod.Spec.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test pod.Spec.SecurityContext.RunAsUser +Oct 26 05:19:24.227: INFO: Waiting up to 5m0s for pod "security-context-77a1ff78-b1f2-4036-a4d0-8f0bda7cb3c8" in namespace "security-context-5832" to be "Succeeded or Failed" +Oct 26 05:19:24.230: INFO: Pod "security-context-77a1ff78-b1f2-4036-a4d0-8f0bda7cb3c8": Phase="Pending", Reason="", readiness=false. Elapsed: 2.66612ms +Oct 26 05:19:26.240: INFO: Pod "security-context-77a1ff78-b1f2-4036-a4d0-8f0bda7cb3c8": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012266164s +Oct 26 05:19:28.247: INFO: Pod "security-context-77a1ff78-b1f2-4036-a4d0-8f0bda7cb3c8": Phase="Pending", Reason="", readiness=false. Elapsed: 4.019362251s +Oct 26 05:19:30.259: INFO: Pod "security-context-77a1ff78-b1f2-4036-a4d0-8f0bda7cb3c8": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.031776303s +STEP: Saw pod success +Oct 26 05:19:30.259: INFO: Pod "security-context-77a1ff78-b1f2-4036-a4d0-8f0bda7cb3c8" satisfied condition "Succeeded or Failed" +Oct 26 05:19:30.262: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod security-context-77a1ff78-b1f2-4036-a4d0-8f0bda7cb3c8 container test-container: +STEP: delete the pod +Oct 26 05:19:30.273: INFO: Waiting for pod security-context-77a1ff78-b1f2-4036-a4d0-8f0bda7cb3c8 to disappear +Oct 26 05:19:30.276: INFO: Pod security-context-77a1ff78-b1f2-4036-a4d0-8f0bda7cb3c8 no longer exists +[AfterEach] [sig-node] Security Context + test/e2e/framework/framework.go:188 +Oct 26 05:19:30.277: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "security-context-5832" for this suite. + +• [SLOW TEST:6.084 seconds] +[sig-node] Security Context +test/e2e/node/framework.go:23 + should support pod.Spec.SecurityContext.RunAsUser And pod.Spec.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Security Context should support pod.Spec.SecurityContext.RunAsUser And pod.Spec.SecurityContext.RunAsGroup [LinuxOnly] [Conformance]","total":356,"completed":175,"skipped":3104,"failed":0} +SSSS +------------------------------ +[sig-network] EndpointSlice + should have Endpoints and EndpointSlices pointing to API Server [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] EndpointSlice + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:19:30.287: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename endpointslice +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] EndpointSlice + test/e2e/network/endpointslice.go:51 +[It] should have Endpoints and EndpointSlices pointing to API Server [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:19:30.311: INFO: Endpoints addresses: [172.20.51.117] , ports: [443] +Oct 26 05:19:30.311: INFO: EndpointSlices addresses: [172.20.51.117] , ports: [443] +[AfterEach] [sig-network] EndpointSlice + test/e2e/framework/framework.go:188 +Oct 26 05:19:30.311: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "endpointslice-4694" for this suite. +•{"msg":"PASSED [sig-network] EndpointSlice should have Endpoints and EndpointSlices pointing to API Server [Conformance]","total":356,"completed":176,"skipped":3108,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + works for multiple CRDs of different groups [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:19:30.330: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-publish-openapi +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] works for multiple CRDs of different groups [Conformance] + test/e2e/framework/framework.go:652 +STEP: CRs in different groups (two CRDs) show up in OpenAPI documentation +Oct 26 05:19:30.347: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 05:19:32.863: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:19:44.998: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-publish-openapi-172" for this suite. + +• [SLOW TEST:14.679 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + works for multiple CRDs of different groups [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for multiple CRDs of different groups [Conformance]","total":356,"completed":177,"skipped":3141,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:19:45.010: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name configmap-test-volume-903e6343-a3a5-4207-a731-64dba2ddc1f6 +STEP: Creating a pod to test consume configMaps +Oct 26 05:19:45.034: INFO: Waiting up to 5m0s for pod "pod-configmaps-8dacf76e-6bf2-42de-bac4-45a749f2ca4b" in namespace "configmap-1320" to be "Succeeded or Failed" +Oct 26 05:19:45.040: INFO: Pod "pod-configmaps-8dacf76e-6bf2-42de-bac4-45a749f2ca4b": Phase="Pending", Reason="", readiness=false. Elapsed: 6.575585ms +Oct 26 05:19:47.045: INFO: Pod "pod-configmaps-8dacf76e-6bf2-42de-bac4-45a749f2ca4b": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011413215s +Oct 26 05:19:49.051: INFO: Pod "pod-configmaps-8dacf76e-6bf2-42de-bac4-45a749f2ca4b": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.017404257s +STEP: Saw pod success +Oct 26 05:19:49.052: INFO: Pod "pod-configmaps-8dacf76e-6bf2-42de-bac4-45a749f2ca4b" satisfied condition "Succeeded or Failed" +Oct 26 05:19:49.054: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-configmaps-8dacf76e-6bf2-42de-bac4-45a749f2ca4b container agnhost-container: +STEP: delete the pod +Oct 26 05:19:49.069: INFO: Waiting for pod pod-configmaps-8dacf76e-6bf2-42de-bac4-45a749f2ca4b to disappear +Oct 26 05:19:49.071: INFO: Pod pod-configmaps-8dacf76e-6bf2-42de-bac4-45a749f2ca4b no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 05:19:49.071: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-1320" for this suite. +•{"msg":"PASSED [sig-storage] ConfigMap should be consumable from pods in volume [NodeConformance] [Conformance]","total":356,"completed":178,"skipped":3164,"failed":0} +S +------------------------------ +[sig-node] InitContainer [NodeConformance] + should invoke init containers on a RestartAlways pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:19:49.078: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename init-container +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:164 +[It] should invoke init containers on a RestartAlways pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating the pod +Oct 26 05:19:49.099: INFO: PodSpec: initContainers in spec.initContainers +[AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/framework.go:188 +Oct 26 05:19:53.704: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "init-container-2215" for this suite. +•{"msg":"PASSED [sig-node] InitContainer [NodeConformance] should invoke init containers on a RestartAlways pod [Conformance]","total":356,"completed":179,"skipped":3165,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should be able to deny custom resource creation, update and deletion [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:19:53.715: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:19:54.233: INFO: new replicaset for deployment "sample-webhook-deployment" is yet to be created +Oct 26 05:19:56.260: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 19, 54, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 19, 54, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 19, 54, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 19, 54, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:19:59.280: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should be able to deny custom resource creation, update and deletion [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:19:59.285: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Registering the custom resource webhook via the AdmissionRegistration API +STEP: Creating a custom resource that should be denied by the webhook +STEP: Creating a custom resource whose deletion would be denied by the webhook +STEP: Updating the custom resource with disallowed data should be denied +STEP: Deleting the custom resource should be denied +STEP: Remove the offending key and value from the custom resource data +STEP: Deleting the updated custom resource should be successful +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:20:02.422: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-4085" for this suite. +STEP: Destroying namespace "webhook-4085-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:8.818 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should be able to deny custom resource creation, update and deletion [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to deny custom resource creation, update and deletion [Conformance]","total":356,"completed":180,"skipped":3189,"failed":0} +S +------------------------------ +[sig-storage] Secrets + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:20:02.545: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating secret with name secret-test-b08288e7-a0a1-4c10-9f74-20d889048485 +STEP: Creating a pod to test consume secrets +Oct 26 05:20:02.672: INFO: Waiting up to 5m0s for pod "pod-secrets-1ede9351-eaf7-4237-96a8-8ab5b0800e2a" in namespace "secrets-1198" to be "Succeeded or Failed" +Oct 26 05:20:02.681: INFO: Pod "pod-secrets-1ede9351-eaf7-4237-96a8-8ab5b0800e2a": Phase="Pending", Reason="", readiness=false. Elapsed: 8.624104ms +Oct 26 05:20:04.685: INFO: Pod "pod-secrets-1ede9351-eaf7-4237-96a8-8ab5b0800e2a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012670084s +Oct 26 05:20:06.693: INFO: Pod "pod-secrets-1ede9351-eaf7-4237-96a8-8ab5b0800e2a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.020637297s +Oct 26 05:20:08.697: INFO: Pod "pod-secrets-1ede9351-eaf7-4237-96a8-8ab5b0800e2a": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.025070204s +STEP: Saw pod success +Oct 26 05:20:08.697: INFO: Pod "pod-secrets-1ede9351-eaf7-4237-96a8-8ab5b0800e2a" satisfied condition "Succeeded or Failed" +Oct 26 05:20:08.699: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-secrets-1ede9351-eaf7-4237-96a8-8ab5b0800e2a container secret-volume-test: +STEP: delete the pod +Oct 26 05:20:08.711: INFO: Waiting for pod pod-secrets-1ede9351-eaf7-4237-96a8-8ab5b0800e2a to disappear +Oct 26 05:20:08.713: INFO: Pod pod-secrets-1ede9351-eaf7-4237-96a8-8ab5b0800e2a no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/framework.go:188 +Oct 26 05:20:08.713: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-1198" for this suite. + +• [SLOW TEST:6.178 seconds] +[sig-storage] Secrets +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Secrets should be consumable from pods in volume [NodeConformance] [Conformance]","total":356,"completed":181,"skipped":3190,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Job + should delete a job [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Job + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:20:08.723: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename job +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should delete a job [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a job +STEP: Ensuring active pods == parallelism +STEP: delete a job +STEP: deleting Job.batch foo in namespace job-1425, will wait for the garbage collector to delete the pods +Oct 26 05:20:12.810: INFO: Deleting Job.batch foo took: 3.863566ms +Oct 26 05:20:12.913: INFO: Terminating Job.batch foo pods took: 102.496128ms +STEP: Ensuring job was deleted +[AfterEach] [sig-apps] Job + test/e2e/framework/framework.go:188 +Oct 26 05:20:44.921: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "job-1425" for this suite. + +• [SLOW TEST:36.205 seconds] +[sig-apps] Job +test/e2e/apps/framework.go:23 + should delete a job [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Job should delete a job [Conformance]","total":356,"completed":182,"skipped":3205,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Container Runtime blackbox test on terminated container + should report termination message from file when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Container Runtime + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:20:44.932: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-runtime +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should report termination message from file when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the container +STEP: wait for the container to reach Succeeded +STEP: get the container status +STEP: the container should be terminated +STEP: the termination message should be set +Oct 26 05:20:48.978: INFO: Expected: &{OK} to match Container's Termination Message: OK -- +STEP: delete the container +[AfterEach] [sig-node] Container Runtime + test/e2e/framework/framework.go:188 +Oct 26 05:20:48.988: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-runtime-5303" for this suite. +•{"msg":"PASSED [sig-node] Container Runtime blackbox test on terminated container should report termination message from file when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance]","total":356,"completed":183,"skipped":3281,"failed":0} +SSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:20:48.995: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:43 +[It] should provide container's cpu request [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 05:20:49.027: INFO: Waiting up to 5m0s for pod "downwardapi-volume-e7d68699-fc68-4e32-b0e8-9ed11571daab" in namespace "projected-6871" to be "Succeeded or Failed" +Oct 26 05:20:49.030: INFO: Pod "downwardapi-volume-e7d68699-fc68-4e32-b0e8-9ed11571daab": Phase="Pending", Reason="", readiness=false. Elapsed: 2.093418ms +Oct 26 05:20:51.036: INFO: Pod "downwardapi-volume-e7d68699-fc68-4e32-b0e8-9ed11571daab": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008068955s +Oct 26 05:20:53.041: INFO: Pod "downwardapi-volume-e7d68699-fc68-4e32-b0e8-9ed11571daab": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.013060316s +STEP: Saw pod success +Oct 26 05:20:53.041: INFO: Pod "downwardapi-volume-e7d68699-fc68-4e32-b0e8-9ed11571daab" satisfied condition "Succeeded or Failed" +Oct 26 05:20:53.043: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-e7d68699-fc68-4e32-b0e8-9ed11571daab container client-container: +STEP: delete the pod +Oct 26 05:20:53.055: INFO: Waiting for pod downwardapi-volume-e7d68699-fc68-4e32-b0e8-9ed11571daab to disappear +Oct 26 05:20:53.058: INFO: Pod downwardapi-volume-e7d68699-fc68-4e32-b0e8-9ed11571daab no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:188 +Oct 26 05:20:53.058: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-6871" for this suite. +•{"msg":"PASSED [sig-storage] Projected downwardAPI should provide container's cpu request [NodeConformance] [Conformance]","total":356,"completed":184,"skipped":3286,"failed":0} +SSSSSSSSS +------------------------------ +[sig-auth] ServiceAccounts + should run through the lifecycle of a ServiceAccount [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:20:53.071: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename svcaccounts +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should run through the lifecycle of a ServiceAccount [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a ServiceAccount +STEP: watching for the ServiceAccount to be added +STEP: patching the ServiceAccount +STEP: finding ServiceAccount in list of all ServiceAccounts (by LabelSelector) +STEP: deleting the ServiceAccount +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:188 +Oct 26 05:20:53.108: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "svcaccounts-665" for this suite. +•{"msg":"PASSED [sig-auth] ServiceAccounts should run through the lifecycle of a ServiceAccount [Conformance]","total":356,"completed":185,"skipped":3295,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Job + should adopt matching orphans and release non-matching pods [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Job + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:20:53.119: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename job +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should adopt matching orphans and release non-matching pods [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a job +STEP: Ensuring active pods == parallelism +STEP: Orphaning one of the Job's Pods +Oct 26 05:20:57.658: INFO: Successfully updated pod "adopt-release-m5gj7" +STEP: Checking that the Job readopts the Pod +Oct 26 05:20:57.658: INFO: Waiting up to 15m0s for pod "adopt-release-m5gj7" in namespace "job-9074" to be "adopted" +Oct 26 05:20:57.662: INFO: Pod "adopt-release-m5gj7": Phase="Running", Reason="", readiness=true. Elapsed: 3.65617ms +Oct 26 05:20:59.670: INFO: Pod "adopt-release-m5gj7": Phase="Running", Reason="", readiness=true. Elapsed: 2.012140847s +Oct 26 05:20:59.670: INFO: Pod "adopt-release-m5gj7" satisfied condition "adopted" +STEP: Removing the labels from the Job's Pod +Oct 26 05:21:00.182: INFO: Successfully updated pod "adopt-release-m5gj7" +STEP: Checking that the Job releases the Pod +Oct 26 05:21:00.182: INFO: Waiting up to 15m0s for pod "adopt-release-m5gj7" in namespace "job-9074" to be "released" +Oct 26 05:21:00.190: INFO: Pod "adopt-release-m5gj7": Phase="Running", Reason="", readiness=true. Elapsed: 7.816394ms +Oct 26 05:21:02.197: INFO: Pod "adopt-release-m5gj7": Phase="Running", Reason="", readiness=true. Elapsed: 2.014867615s +Oct 26 05:21:02.197: INFO: Pod "adopt-release-m5gj7" satisfied condition "released" +[AfterEach] [sig-apps] Job + test/e2e/framework/framework.go:188 +Oct 26 05:21:02.197: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "job-9074" for this suite. + +• [SLOW TEST:9.085 seconds] +[sig-apps] Job +test/e2e/apps/framework.go:23 + should adopt matching orphans and release non-matching pods [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Job should adopt matching orphans and release non-matching pods [Conformance]","total":356,"completed":186,"skipped":3343,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-api-machinery] Watchers + should observe add, update, and delete watch notifications on configmaps [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:21:02.206: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename watch +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should observe add, update, and delete watch notifications on configmaps [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a watch on configmaps with label A +STEP: creating a watch on configmaps with label B +STEP: creating a watch on configmaps with label A or B +STEP: creating a configmap with label A and ensuring the correct watchers observe the notification +Oct 26 05:21:02.234: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-5975 71f37f8d-915e-4681-8106-669e76aca2ff 20601 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 05:21:02.234: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-5975 71f37f8d-915e-4681-8106-669e76aca2ff 20601 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +STEP: modifying configmap A and ensuring the correct watchers observe the notification +Oct 26 05:21:02.238: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-5975 71f37f8d-915e-4681-8106-669e76aca2ff 20602 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 1,},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 05:21:02.239: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-5975 71f37f8d-915e-4681-8106-669e76aca2ff 20602 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 1,},BinaryData:map[string][]byte{},Immutable:nil,} +STEP: modifying configmap A again and ensuring the correct watchers observe the notification +Oct 26 05:21:02.245: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-5975 71f37f8d-915e-4681-8106-669e76aca2ff 20603 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 2,},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 05:21:02.246: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-5975 71f37f8d-915e-4681-8106-669e76aca2ff 20603 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 2,},BinaryData:map[string][]byte{},Immutable:nil,} +STEP: deleting configmap A and ensuring the correct watchers observe the notification +Oct 26 05:21:02.250: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-5975 71f37f8d-915e-4681-8106-669e76aca2ff 20604 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 2,},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 05:21:02.250: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-a watch-5975 71f37f8d-915e-4681-8106-669e76aca2ff 20604 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-A] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 2,},BinaryData:map[string][]byte{},Immutable:nil,} +STEP: creating a configmap with label B and ensuring the correct watchers observe the notification +Oct 26 05:21:02.257: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-5975 e8d62031-a2fe-4529-80f6-19e70d262990 20605 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 05:21:02.258: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-5975 e8d62031-a2fe-4529-80f6-19e70d262990 20605 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +STEP: deleting configmap B and ensuring the correct watchers observe the notification +Oct 26 05:21:12.264: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-5975 e8d62031-a2fe-4529-80f6-19e70d262990 20660 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 05:21:12.264: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-configmap-b watch-5975 e8d62031-a2fe-4529-80f6-19e70d262990 20660 0 2022-10-26 05:21:02 +0000 UTC map[watch-this-configmap:multiple-watchers-B] map[] [] [] [{e2e.test Update v1 2022-10-26 05:21:02 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +[AfterEach] [sig-api-machinery] Watchers + test/e2e/framework/framework.go:188 +Oct 26 05:21:22.268: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "watch-5975" for this suite. + +• [SLOW TEST:20.077 seconds] +[sig-api-machinery] Watchers +test/e2e/apimachinery/framework.go:23 + should observe add, update, and delete watch notifications on configmaps [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] Watchers should observe add, update, and delete watch notifications on configmaps [Conformance]","total":356,"completed":187,"skipped":3354,"failed":0} +[sig-node] Secrets + should patch a secret [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:21:22.283: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should patch a secret [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a secret +STEP: listing secrets in all namespaces to ensure that there are more than zero +STEP: patching the secret +STEP: deleting the secret using a LabelSelector +STEP: listing secrets in all namespaces, searching for label name and value in patch +[AfterEach] [sig-node] Secrets + test/e2e/framework/framework.go:188 +Oct 26 05:21:22.329: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-3546" for this suite. +•{"msg":"PASSED [sig-node] Secrets should patch a secret [Conformance]","total":356,"completed":188,"skipped":3354,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] RuntimeClass + should support RuntimeClasses API operations [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:21:22.338: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename runtimeclass +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support RuntimeClasses API operations [Conformance] + test/e2e/framework/framework.go:652 +STEP: getting /apis +STEP: getting /apis/node.k8s.io +STEP: getting /apis/node.k8s.io/v1 +STEP: creating +STEP: watching +Oct 26 05:21:22.367: INFO: starting watch +STEP: getting +STEP: listing +STEP: patching +STEP: updating +Oct 26 05:21:22.381: INFO: waiting for watch events with expected annotations +STEP: deleting +STEP: deleting a collection +[AfterEach] [sig-node] RuntimeClass + test/e2e/framework/framework.go:188 +Oct 26 05:21:22.395: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "runtimeclass-7586" for this suite. +•{"msg":"PASSED [sig-node] RuntimeClass should support RuntimeClasses API operations [Conformance]","total":356,"completed":189,"skipped":3395,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl logs + should be able to retrieve and filter logs [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:21:22.403: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[BeforeEach] Kubectl logs + test/e2e/kubectl/kubectl.go:1412 +STEP: creating an pod +Oct 26 05:21:22.422: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-7563 run logs-generator --image=k8s.gcr.io/e2e-test-images/agnhost:2.39 --restart=Never --pod-running-timeout=2m0s -- logs-generator --log-lines-total 100 --run-duration 20s' +Oct 26 05:21:22.491: INFO: stderr: "" +Oct 26 05:21:22.491: INFO: stdout: "pod/logs-generator created\n" +[It] should be able to retrieve and filter logs [Conformance] + test/e2e/framework/framework.go:652 +STEP: Waiting for log generator to start. +Oct 26 05:21:22.491: INFO: Waiting up to 5m0s for 1 pods to be running and ready, or succeeded: [logs-generator] +Oct 26 05:21:22.491: INFO: Waiting up to 5m0s for pod "logs-generator" in namespace "kubectl-7563" to be "running and ready, or succeeded" +Oct 26 05:21:22.498: INFO: Pod "logs-generator": Phase="Pending", Reason="", readiness=false. Elapsed: 6.766952ms +Oct 26 05:21:24.505: INFO: Pod "logs-generator": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013812181s +Oct 26 05:21:26.512: INFO: Pod "logs-generator": Phase="Running", Reason="", readiness=true. Elapsed: 4.021160345s +Oct 26 05:21:26.512: INFO: Pod "logs-generator" satisfied condition "running and ready, or succeeded" +Oct 26 05:21:26.512: INFO: Wanted all 1 pods to be running and ready, or succeeded. Result: true. Pods: [logs-generator] +STEP: checking for a matching strings +Oct 26 05:21:26.512: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-7563 logs logs-generator logs-generator' +Oct 26 05:21:26.580: INFO: stderr: "" +Oct 26 05:21:26.580: INFO: stdout: "I1026 05:21:24.146850 1 logs_generator.go:76] 0 POST /api/v1/namespaces/ns/pods/wz7t 510\nI1026 05:21:24.346945 1 logs_generator.go:76] 1 POST /api/v1/namespaces/ns/pods/pzpp 466\nI1026 05:21:24.547611 1 logs_generator.go:76] 2 GET /api/v1/namespaces/kube-system/pods/bvq 359\nI1026 05:21:24.746955 1 logs_generator.go:76] 3 PUT /api/v1/namespaces/kube-system/pods/cvvb 535\nI1026 05:21:24.947271 1 logs_generator.go:76] 4 PUT /api/v1/namespaces/default/pods/hpxs 230\nI1026 05:21:25.147686 1 logs_generator.go:76] 5 GET /api/v1/namespaces/default/pods/qxr 426\nI1026 05:21:25.346954 1 logs_generator.go:76] 6 POST /api/v1/namespaces/default/pods/qnq7 479\nI1026 05:21:25.547347 1 logs_generator.go:76] 7 GET /api/v1/namespaces/kube-system/pods/sdv 219\nI1026 05:21:25.747673 1 logs_generator.go:76] 8 GET /api/v1/namespaces/ns/pods/qr9 232\nI1026 05:21:25.946932 1 logs_generator.go:76] 9 GET /api/v1/namespaces/default/pods/jpcb 408\nI1026 05:21:26.147367 1 logs_generator.go:76] 10 POST /api/v1/namespaces/kube-system/pods/knd 586\nI1026 05:21:26.347770 1 logs_generator.go:76] 11 PUT /api/v1/namespaces/ns/pods/lf5 313\nI1026 05:21:26.547060 1 logs_generator.go:76] 12 PUT /api/v1/namespaces/default/pods/4rkz 428\n" +STEP: limiting log lines +Oct 26 05:21:26.580: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-7563 logs logs-generator logs-generator --tail=1' +Oct 26 05:21:26.657: INFO: stderr: "" +Oct 26 05:21:26.657: INFO: stdout: "I1026 05:21:26.547060 1 logs_generator.go:76] 12 PUT /api/v1/namespaces/default/pods/4rkz 428\n" +Oct 26 05:21:26.657: INFO: got output "I1026 05:21:26.547060 1 logs_generator.go:76] 12 PUT /api/v1/namespaces/default/pods/4rkz 428\n" +STEP: limiting log bytes +Oct 26 05:21:26.657: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-7563 logs logs-generator logs-generator --limit-bytes=1' +Oct 26 05:21:26.729: INFO: stderr: "" +Oct 26 05:21:26.729: INFO: stdout: "I" +Oct 26 05:21:26.729: INFO: got output "I" +STEP: exposing timestamps +Oct 26 05:21:26.729: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-7563 logs logs-generator logs-generator --tail=1 --timestamps' +Oct 26 05:21:26.805: INFO: stderr: "" +Oct 26 05:21:26.805: INFO: stdout: "2022-10-26T05:21:26.747554376Z I1026 05:21:26.747405 1 logs_generator.go:76] 13 PUT /api/v1/namespaces/kube-system/pods/nvnn 435\n" +Oct 26 05:21:26.805: INFO: got output "2022-10-26T05:21:26.747554376Z I1026 05:21:26.747405 1 logs_generator.go:76] 13 PUT /api/v1/namespaces/kube-system/pods/nvnn 435\n" +STEP: restricting to a time range +Oct 26 05:21:29.306: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-7563 logs logs-generator logs-generator --since=1s' +Oct 26 05:21:29.380: INFO: stderr: "" +Oct 26 05:21:29.380: INFO: stdout: "I1026 05:21:28.547758 1 logs_generator.go:76] 22 POST /api/v1/namespaces/default/pods/l4qv 316\nI1026 05:21:28.747048 1 logs_generator.go:76] 23 POST /api/v1/namespaces/kube-system/pods/w5v7 237\nI1026 05:21:28.947414 1 logs_generator.go:76] 24 PUT /api/v1/namespaces/kube-system/pods/r77j 273\nI1026 05:21:29.147850 1 logs_generator.go:76] 25 PUT /api/v1/namespaces/kube-system/pods/cl58 385\nI1026 05:21:29.347329 1 logs_generator.go:76] 26 GET /api/v1/namespaces/kube-system/pods/hdlc 504\n" +Oct 26 05:21:29.380: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-7563 logs logs-generator logs-generator --since=24h' +Oct 26 05:21:29.457: INFO: stderr: "" +Oct 26 05:21:29.457: INFO: stdout: "I1026 05:21:24.146850 1 logs_generator.go:76] 0 POST /api/v1/namespaces/ns/pods/wz7t 510\nI1026 05:21:24.346945 1 logs_generator.go:76] 1 POST /api/v1/namespaces/ns/pods/pzpp 466\nI1026 05:21:24.547611 1 logs_generator.go:76] 2 GET /api/v1/namespaces/kube-system/pods/bvq 359\nI1026 05:21:24.746955 1 logs_generator.go:76] 3 PUT /api/v1/namespaces/kube-system/pods/cvvb 535\nI1026 05:21:24.947271 1 logs_generator.go:76] 4 PUT /api/v1/namespaces/default/pods/hpxs 230\nI1026 05:21:25.147686 1 logs_generator.go:76] 5 GET /api/v1/namespaces/default/pods/qxr 426\nI1026 05:21:25.346954 1 logs_generator.go:76] 6 POST /api/v1/namespaces/default/pods/qnq7 479\nI1026 05:21:25.547347 1 logs_generator.go:76] 7 GET /api/v1/namespaces/kube-system/pods/sdv 219\nI1026 05:21:25.747673 1 logs_generator.go:76] 8 GET /api/v1/namespaces/ns/pods/qr9 232\nI1026 05:21:25.946932 1 logs_generator.go:76] 9 GET /api/v1/namespaces/default/pods/jpcb 408\nI1026 05:21:26.147367 1 logs_generator.go:76] 10 POST /api/v1/namespaces/kube-system/pods/knd 586\nI1026 05:21:26.347770 1 logs_generator.go:76] 11 PUT /api/v1/namespaces/ns/pods/lf5 313\nI1026 05:21:26.547060 1 logs_generator.go:76] 12 PUT /api/v1/namespaces/default/pods/4rkz 428\nI1026 05:21:26.747405 1 logs_generator.go:76] 13 PUT /api/v1/namespaces/kube-system/pods/nvnn 435\nI1026 05:21:26.947768 1 logs_generator.go:76] 14 PUT /api/v1/namespaces/ns/pods/2zpf 355\nI1026 05:21:27.147066 1 logs_generator.go:76] 15 PUT /api/v1/namespaces/default/pods/nl5s 328\nI1026 05:21:27.347453 1 logs_generator.go:76] 16 PUT /api/v1/namespaces/ns/pods/mpn 384\nI1026 05:21:27.547822 1 logs_generator.go:76] 17 POST /api/v1/namespaces/ns/pods/cgpz 503\nI1026 05:21:27.747180 1 logs_generator.go:76] 18 POST /api/v1/namespaces/default/pods/mzfm 228\nI1026 05:21:27.947526 1 logs_generator.go:76] 19 PUT /api/v1/namespaces/ns/pods/htq 265\nI1026 05:21:28.147909 1 logs_generator.go:76] 20 GET /api/v1/namespaces/default/pods/42f 575\nI1026 05:21:28.347348 1 logs_generator.go:76] 21 POST /api/v1/namespaces/ns/pods/v55w 405\nI1026 05:21:28.547758 1 logs_generator.go:76] 22 POST /api/v1/namespaces/default/pods/l4qv 316\nI1026 05:21:28.747048 1 logs_generator.go:76] 23 POST /api/v1/namespaces/kube-system/pods/w5v7 237\nI1026 05:21:28.947414 1 logs_generator.go:76] 24 PUT /api/v1/namespaces/kube-system/pods/r77j 273\nI1026 05:21:29.147850 1 logs_generator.go:76] 25 PUT /api/v1/namespaces/kube-system/pods/cl58 385\nI1026 05:21:29.347329 1 logs_generator.go:76] 26 GET /api/v1/namespaces/kube-system/pods/hdlc 504\n" +[AfterEach] Kubectl logs + test/e2e/kubectl/kubectl.go:1417 +Oct 26 05:21:29.457: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-7563 delete pod logs-generator' +Oct 26 05:21:29.975: INFO: stderr: "" +Oct 26 05:21:29.975: INFO: stdout: "pod \"logs-generator\" deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 05:21:29.975: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-7563" for this suite. + +• [SLOW TEST:7.579 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl logs + test/e2e/kubectl/kubectl.go:1409 + should be able to retrieve and filter logs [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-cli] Kubectl client Kubectl logs should be able to retrieve and filter logs [Conformance]","total":356,"completed":190,"skipped":3436,"failed":0} +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and capture the life of a replica set. [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:21:29.983: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename resourcequota +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should create a ResourceQuota and capture the life of a replica set. [Conformance] + test/e2e/framework/framework.go:652 +STEP: Counting existing ResourceQuota +STEP: Creating a ResourceQuota +STEP: Ensuring resource quota status is calculated +STEP: Creating a ReplicaSet +STEP: Ensuring resource quota status captures replicaset creation +STEP: Deleting a ReplicaSet +STEP: Ensuring resource quota status released usage +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:188 +Oct 26 05:21:41.056: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "resourcequota-7952" for this suite. + +• [SLOW TEST:11.080 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should create a ResourceQuota and capture the life of a replica set. [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a replica set. [Conformance]","total":356,"completed":191,"skipped":3454,"failed":0} +SSSSS +------------------------------ +[sig-storage] Downward API volume + should update labels on modification [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:21:41.063: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:43 +[It] should update labels on modification [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating the pod +Oct 26 05:21:41.091: INFO: The status of Pod labelsupdatedf2bded3-8a31-4f39-a9d7-62f0d6e94528 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:21:43.095: INFO: The status of Pod labelsupdatedf2bded3-8a31-4f39-a9d7-62f0d6e94528 is Running (Ready = true) +Oct 26 05:21:43.620: INFO: Successfully updated pod "labelsupdatedf2bded3-8a31-4f39-a9d7-62f0d6e94528" +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:188 +Oct 26 05:21:45.636: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-59" for this suite. +•{"msg":"PASSED [sig-storage] Downward API volume should update labels on modification [NodeConformance] [Conformance]","total":356,"completed":192,"skipped":3459,"failed":0} +SSSS +------------------------------ +[sig-storage] EmptyDir volumes + pod should support shared volumes between containers [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:21:45.648: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] pod should support shared volumes between containers [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating Pod +STEP: Reading file content from the nginx-container +Oct 26 05:21:49.678: INFO: ExecWithOptions {Command:[/bin/sh -c cat /usr/share/volumeshare/shareddata.txt] Namespace:emptydir-5921 PodName:pod-sharedvolume-ed3de54c-b023-4027-875a-146c387193cc ContainerName:busybox-main-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 05:21:49.678: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 05:21:49.679: INFO: ExecWithOptions: Clientset creation +Oct 26 05:21:49.679: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/emptydir-5921/pods/pod-sharedvolume-ed3de54c-b023-4027-875a-146c387193cc/exec?command=%2Fbin%2Fsh&command=-c&command=cat+%2Fusr%2Fshare%2Fvolumeshare%2Fshareddata.txt&container=busybox-main-container&container=busybox-main-container&stderr=true&stdout=true) +Oct 26 05:21:49.735: INFO: Exec stderr: "" +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 05:21:49.735: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-5921" for this suite. +•{"msg":"PASSED [sig-storage] EmptyDir volumes pod should support shared volumes between containers [Conformance]","total":356,"completed":193,"skipped":3463,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should succeed in writing subpaths in container [Slow] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:21:49.742: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename var-expansion +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should succeed in writing subpaths in container [Slow] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating the pod +STEP: waiting for pod running +STEP: creating a file in subpath +Oct 26 05:21:53.778: INFO: ExecWithOptions {Command:[/bin/sh -c touch /volume_mount/mypath/foo/test.log] Namespace:var-expansion-9890 PodName:var-expansion-b3af93cd-e28c-4470-b52f-e81d9697978c ContainerName:dapi-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 05:21:53.778: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 05:21:53.779: INFO: ExecWithOptions: Clientset creation +Oct 26 05:21:53.779: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/var-expansion-9890/pods/var-expansion-b3af93cd-e28c-4470-b52f-e81d9697978c/exec?command=%2Fbin%2Fsh&command=-c&command=touch+%2Fvolume_mount%2Fmypath%2Ffoo%2Ftest.log&container=dapi-container&container=dapi-container&stderr=true&stdout=true) +STEP: test for file in mounted path +Oct 26 05:21:53.848: INFO: ExecWithOptions {Command:[/bin/sh -c test -f /subpath_mount/test.log] Namespace:var-expansion-9890 PodName:var-expansion-b3af93cd-e28c-4470-b52f-e81d9697978c ContainerName:dapi-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 05:21:53.848: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 05:21:53.849: INFO: ExecWithOptions: Clientset creation +Oct 26 05:21:53.849: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/var-expansion-9890/pods/var-expansion-b3af93cd-e28c-4470-b52f-e81d9697978c/exec?command=%2Fbin%2Fsh&command=-c&command=test+-f+%2Fsubpath_mount%2Ftest.log&container=dapi-container&container=dapi-container&stderr=true&stdout=true) +STEP: updating the annotation value +Oct 26 05:21:54.422: INFO: Successfully updated pod "var-expansion-b3af93cd-e28c-4470-b52f-e81d9697978c" +STEP: waiting for annotated pod running +STEP: deleting the pod gracefully +Oct 26 05:21:54.425: INFO: Deleting pod "var-expansion-b3af93cd-e28c-4470-b52f-e81d9697978c" in namespace "var-expansion-9890" +Oct 26 05:21:54.437: INFO: Wait up to 5m0s for pod "var-expansion-b3af93cd-e28c-4470-b52f-e81d9697978c" to be fully deleted +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:188 +Oct 26 05:22:26.448: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "var-expansion-9890" for this suite. + +• [SLOW TEST:36.712 seconds] +[sig-node] Variable Expansion +test/e2e/common/node/framework.go:23 + should succeed in writing subpaths in container [Slow] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Variable Expansion should succeed in writing subpaths in container [Slow] [Conformance]","total":356,"completed":194,"skipped":3486,"failed":0} +SSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should be able to deny pod and configmap creation [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:22:26.455: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:22:26.836: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Oct 26 05:22:28.847: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 22, 26, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 22, 26, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 22, 26, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 22, 26, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:22:31.873: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should be able to deny pod and configmap creation [Conformance] + test/e2e/framework/framework.go:652 +STEP: Registering the webhook via the AdmissionRegistration API +STEP: create a pod that should be denied by the webhook +STEP: create a pod that causes the webhook to hang +STEP: create a configmap that should be denied by the webhook +STEP: create a configmap that should be admitted by the webhook +STEP: update (PUT) the admitted configmap to a non-compliant one should be rejected by the webhook +STEP: update (PATCH) the admitted configmap to a non-compliant one should be rejected by the webhook +STEP: create a namespace that bypass the webhook +STEP: create a configmap that violates the webhook policy but is in a whitelisted namespace +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:22:41.993: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-4417" for this suite. +STEP: Destroying namespace "webhook-4417-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:15.611 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should be able to deny pod and configmap creation [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to deny pod and configmap creation [Conformance]","total":356,"completed":195,"skipped":3491,"failed":0} +SSSS +------------------------------ +[sig-network] Proxy version v1 + A set of valid responses are returned for both pod and service Proxy [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] version v1 + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:22:42.066: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename proxy +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] A set of valid responses are returned for both pod and service Proxy [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:22:42.118: INFO: Creating pod... +Oct 26 05:22:46.138: INFO: Creating service... +Oct 26 05:22:46.149: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/pods/agnhost/proxy?method=DELETE +Oct 26 05:22:46.168: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE +Oct 26 05:22:46.168: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/pods/agnhost/proxy?method=OPTIONS +Oct 26 05:22:46.172: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS +Oct 26 05:22:46.172: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/pods/agnhost/proxy?method=PATCH +Oct 26 05:22:46.175: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH +Oct 26 05:22:46.176: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/pods/agnhost/proxy?method=POST +Oct 26 05:22:46.180: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST +Oct 26 05:22:46.180: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/pods/agnhost/proxy?method=PUT +Oct 26 05:22:46.187: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT +Oct 26 05:22:46.188: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/services/e2e-proxy-test-service/proxy?method=DELETE +Oct 26 05:22:46.194: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE +Oct 26 05:22:46.194: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/services/e2e-proxy-test-service/proxy?method=OPTIONS +Oct 26 05:22:46.198: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS +Oct 26 05:22:46.198: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/services/e2e-proxy-test-service/proxy?method=PATCH +Oct 26 05:22:46.204: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH +Oct 26 05:22:46.204: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/services/e2e-proxy-test-service/proxy?method=POST +Oct 26 05:22:46.208: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST +Oct 26 05:22:46.209: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/services/e2e-proxy-test-service/proxy?method=PUT +Oct 26 05:22:46.217: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT +Oct 26 05:22:46.217: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/pods/agnhost/proxy?method=GET +Oct 26 05:22:46.221: INFO: http.Client request:GET StatusCode:301 +Oct 26 05:22:46.222: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/services/e2e-proxy-test-service/proxy?method=GET +Oct 26 05:22:46.227: INFO: http.Client request:GET StatusCode:301 +Oct 26 05:22:46.227: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/pods/agnhost/proxy?method=HEAD +Oct 26 05:22:46.231: INFO: http.Client request:HEAD StatusCode:301 +Oct 26 05:22:46.231: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-284/services/e2e-proxy-test-service/proxy?method=HEAD +Oct 26 05:22:46.237: INFO: http.Client request:HEAD StatusCode:301 +[AfterEach] version v1 + test/e2e/framework/framework.go:188 +Oct 26 05:22:46.238: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "proxy-284" for this suite. +•{"msg":"PASSED [sig-network] Proxy version v1 A set of valid responses are returned for both pod and service Proxy [Conformance]","total":356,"completed":196,"skipped":3495,"failed":0} +SSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should mutate configmap [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:22:46.258: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:22:46.841: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Oct 26 05:22:48.848: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 22, 46, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 22, 46, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 22, 46, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 22, 46, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:22:51.869: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should mutate configmap [Conformance] + test/e2e/framework/framework.go:652 +STEP: Registering the mutating configmap webhook via the AdmissionRegistration API +STEP: create a configmap that should be updated by the webhook +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:22:51.899: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-6910" for this suite. +STEP: Destroying namespace "webhook-6910-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:5.723 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should mutate configmap [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate configmap [Conformance]","total":356,"completed":197,"skipped":3501,"failed":0} +SSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] CronJob + should support CronJob API operations [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] CronJob + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:22:51.983: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename cronjob +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support CronJob API operations [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a cronjob +STEP: creating +STEP: getting +STEP: listing +STEP: watching +Oct 26 05:22:52.023: INFO: starting watch +STEP: cluster-wide listing +STEP: cluster-wide watching +Oct 26 05:22:52.026: INFO: starting watch +STEP: patching +STEP: updating +Oct 26 05:22:52.039: INFO: waiting for watch events with expected annotations +Oct 26 05:22:52.039: INFO: saw patched and updated annotations +STEP: patching /status +STEP: updating /status +STEP: get /status +STEP: deleting +STEP: deleting a collection +[AfterEach] [sig-apps] CronJob + test/e2e/framework/framework.go:188 +Oct 26 05:22:52.062: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "cronjob-6766" for this suite. +•{"msg":"PASSED [sig-apps] CronJob should support CronJob API operations [Conformance]","total":356,"completed":198,"skipped":3522,"failed":0} +SSSSS +------------------------------ +[sig-api-machinery] Namespaces [Serial] + should ensure that all pods are removed when a namespace is deleted [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:22:52.068: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename namespaces +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should ensure that all pods are removed when a namespace is deleted [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a test namespace +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Creating a pod in the namespace +STEP: Waiting for the pod to have running status +STEP: Deleting the namespace +STEP: Waiting for the namespace to be removed. +STEP: Recreating the namespace +STEP: Verifying there are no pods in the namespace +[AfterEach] [sig-api-machinery] Namespaces [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:23:07.184: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "namespaces-6634" for this suite. +STEP: Destroying namespace "nsdeletetest-4844" for this suite. +Oct 26 05:23:07.191: INFO: Namespace nsdeletetest-4844 was already deleted +STEP: Destroying namespace "nsdeletetest-2855" for this suite. + +• [SLOW TEST:15.125 seconds] +[sig-api-machinery] Namespaces [Serial] +test/e2e/apimachinery/framework.go:23 + should ensure that all pods are removed when a namespace is deleted [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] Namespaces [Serial] should ensure that all pods are removed when a namespace is deleted [Conformance]","total":356,"completed":199,"skipped":3527,"failed":0} +SSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should unconditionally reject operations on fail closed webhook [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:23:07.196: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:23:07.739: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:23:10.766: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should unconditionally reject operations on fail closed webhook [Conformance] + test/e2e/framework/framework.go:652 +STEP: Registering a webhook that server cannot talk to, with fail closed policy, via the AdmissionRegistration API +Oct 26 05:23:10.782: INFO: Waiting for webhook configuration to be ready... +STEP: create a namespace for the webhook +STEP: create a configmap should be unconditionally rejected by the webhook +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:23:10.915: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-6509" for this suite. +STEP: Destroying namespace "webhook-6509-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 +•{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should unconditionally reject operations on fail closed webhook [Conformance]","total":356,"completed":200,"skipped":3531,"failed":0} +SSSSSSSSSSSS +------------------------------ +[sig-network] Services + should be able to create a functioning NodePort service [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:23:10.994: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should be able to create a functioning NodePort service [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating service nodeport-test with type=NodePort in namespace services-5189 +STEP: creating replication controller nodeport-test in namespace services-5189 +I1026 05:23:11.039654 20 runners.go:193] Created replication controller with name: nodeport-test, namespace: services-5189, replica count: 2 +Oct 26 05:23:14.091: INFO: Creating new exec pod +I1026 05:23:14.091200 20 runners.go:193] nodeport-test Pods: 2 out of 2 created, 2 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Oct 26 05:23:19.111: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-5189 exec execpodgf75s -- /bin/sh -x -c echo hostName | nc -v -t -w 2 nodeport-test 80' +Oct 26 05:23:19.294: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 nodeport-test 80\nConnection to nodeport-test 80 port [tcp/http] succeeded!\n" +Oct 26 05:23:19.294: INFO: stdout: "" +Oct 26 05:23:20.294: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-5189 exec execpodgf75s -- /bin/sh -x -c echo hostName | nc -v -t -w 2 nodeport-test 80' +Oct 26 05:23:20.481: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 nodeport-test 80\nConnection to nodeport-test 80 port [tcp/http] succeeded!\n" +Oct 26 05:23:20.481: INFO: stdout: "" +Oct 26 05:23:21.295: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-5189 exec execpodgf75s -- /bin/sh -x -c echo hostName | nc -v -t -w 2 nodeport-test 80' +Oct 26 05:23:21.449: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 nodeport-test 80\nConnection to nodeport-test 80 port [tcp/http] succeeded!\n" +Oct 26 05:23:21.449: INFO: stdout: "" +Oct 26 05:23:22.295: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-5189 exec execpodgf75s -- /bin/sh -x -c echo hostName | nc -v -t -w 2 nodeport-test 80' +Oct 26 05:23:22.415: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 nodeport-test 80\nConnection to nodeport-test 80 port [tcp/http] succeeded!\n" +Oct 26 05:23:22.415: INFO: stdout: "" +Oct 26 05:23:23.294: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-5189 exec execpodgf75s -- /bin/sh -x -c echo hostName | nc -v -t -w 2 nodeport-test 80' +Oct 26 05:23:23.458: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 nodeport-test 80\nConnection to nodeport-test 80 port [tcp/http] succeeded!\n" +Oct 26 05:23:23.458: INFO: stdout: "nodeport-test-fz95s" +Oct 26 05:23:23.458: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-5189 exec execpodgf75s -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.69.51.43 80' +Oct 26 05:23:23.622: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.69.51.43 80\nConnection to 100.69.51.43 80 port [tcp/http] succeeded!\n" +Oct 26 05:23:23.622: INFO: stdout: "nodeport-test-fz95s" +Oct 26 05:23:23.622: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-5189 exec execpodgf75s -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.115.72 32217' +Oct 26 05:23:23.755: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.115.72 32217\nConnection to 172.20.115.72 32217 port [tcp/*] succeeded!\n" +Oct 26 05:23:23.755: INFO: stdout: "" +Oct 26 05:23:24.756: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-5189 exec execpodgf75s -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.115.72 32217' +Oct 26 05:23:24.891: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.115.72 32217\nConnection to 172.20.115.72 32217 port [tcp/*] succeeded!\n" +Oct 26 05:23:24.891: INFO: stdout: "nodeport-test-fz95s" +Oct 26 05:23:24.891: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-5189 exec execpodgf75s -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.54.156 32217' +Oct 26 05:23:25.010: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.54.156 32217\nConnection to 172.20.54.156 32217 port [tcp/*] succeeded!\n" +Oct 26 05:23:25.010: INFO: stdout: "" +Oct 26 05:23:26.012: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-5189 exec execpodgf75s -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.54.156 32217' +Oct 26 05:23:26.165: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.54.156 32217\nConnection to 172.20.54.156 32217 port [tcp/*] succeeded!\n" +Oct 26 05:23:26.165: INFO: stdout: "nodeport-test-fz95s" +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 05:23:26.165: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-5189" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:15.181 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should be able to create a functioning NodePort service [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should be able to create a functioning NodePort service [Conformance]","total":356,"completed":201,"skipped":3543,"failed":0} +S +------------------------------ +[sig-apps] Deployment + deployment should delete old replica sets [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:23:26.175: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename deployment +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] deployment should delete old replica sets [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:23:26.212: INFO: Pod name cleanup-pod: Found 0 pods out of 1 +Oct 26 05:23:31.227: INFO: Pod name cleanup-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running +Oct 26 05:23:31.227: INFO: Creating deployment test-cleanup-deployment +STEP: Waiting for deployment test-cleanup-deployment history to be cleaned up +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Oct 26 05:23:31.251: INFO: Deployment "test-cleanup-deployment": +&Deployment{ObjectMeta:{test-cleanup-deployment deployment-1182 e985de30-1a92-4f6d-9ff5-4b5dece5bb7f 21660 1 2022-10-26 05:23:31 +0000 UTC map[name:cleanup-pod] map[] [] [] [{e2e.test Update apps/v1 2022-10-26 05:23:31 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:progressDeadlineSeconds":{},"f:replicas":{},"f:revisionHistoryLimit":{},"f:selector":{},"f:strategy":{"f:rollingUpdate":{".":{},"f:maxSurge":{},"f:maxUnavailable":{}},"f:type":{}},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"agnhost\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} }]},Spec:DeploymentSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: cleanup-pod,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:cleanup-pod] map[] [] [] []} {[] [] [{agnhost k8s.gcr.io/e2e-test-images/agnhost:2.39 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc004ec37f8 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},Strategy:DeploymentStrategy{Type:RollingUpdate,RollingUpdate:&RollingUpdateDeployment{MaxUnavailable:25%!,(MISSING)MaxSurge:25%!,(MISSING)},},MinReadySeconds:0,RevisionHistoryLimit:*0,Paused:false,ProgressDeadlineSeconds:*600,},Status:DeploymentStatus{ObservedGeneration:0,Replicas:0,UpdatedReplicas:0,AvailableReplicas:0,UnavailableReplicas:0,Conditions:[]DeploymentCondition{},ReadyReplicas:0,CollisionCount:nil,},} + +Oct 26 05:23:31.258: INFO: New ReplicaSet of Deployment "test-cleanup-deployment" is nil. +Oct 26 05:23:31.258: INFO: All old ReplicaSets of Deployment "test-cleanup-deployment": +Oct 26 05:23:31.258: INFO: &ReplicaSet{ObjectMeta:{test-cleanup-controller deployment-1182 68260ca5-449a-485c-9a28-a249f4b5648b 21661 1 2022-10-26 05:23:26 +0000 UTC map[name:cleanup-pod pod:httpd] map[] [{apps/v1 Deployment test-cleanup-deployment e985de30-1a92-4f6d-9ff5-4b5dece5bb7f 0xc006def157 0xc006def158}] [] [{e2e.test Update apps/v1 2022-10-26 05:23:26 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod":{}}},"f:spec":{"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:23:28 +0000 UTC FieldsV1 {"f:status":{"f:availableReplicas":{},"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{}}} status} {kube-controller-manager Update apps/v1 2022-10-26 05:23:31 +0000 UTC FieldsV1 {"f:metadata":{"f:ownerReferences":{".":{},"k:{\"uid\":\"e985de30-1a92-4f6d-9ff5-4b5dece5bb7f\"}":{}}}} }]},Spec:ReplicaSetSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: cleanup-pod,pod: httpd,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:cleanup-pod pod:httpd] map[] [] [] []} {[] [] [{httpd k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent nil false false false}] [] Always 0xc006def218 ClusterFirst map[] false false false PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:1,FullyLabeledReplicas:1,ObservedGeneration:1,ReadyReplicas:1,AvailableReplicas:1,Conditions:[]ReplicaSetCondition{},},} +Oct 26 05:23:31.270: INFO: Pod "test-cleanup-controller-bz5mn" is available: +&Pod{ObjectMeta:{test-cleanup-controller-bz5mn test-cleanup-controller- deployment-1182 50c7baaa-b769-4f57-bbde-53bf9ca221bf 21642 0 2022-10-26 05:23:26 +0000 UTC map[name:cleanup-pod pod:httpd] map[] [{apps/v1 ReplicaSet test-cleanup-controller 68260ca5-449a-485c-9a28-a249f4b5648b 0xc006def657 0xc006def658}] [] [{kube-controller-manager Update v1 2022-10-26 05:23:26 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"68260ca5-449a-485c-9a28-a249f4b5648b\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:23:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.2.57\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-prxwd,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-prxwd,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:nil,Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:23:26 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:23:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:23:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:23:26 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:100.96.2.57,StartTime:2022-10-26 05:23:26 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:23:27 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://0a88ec49f26ffb5bc4b64c4ec02a27c187169a77fd10dc6f0f22588fe4dbcdd7,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.2.57,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/framework.go:188 +Oct 26 05:23:31.270: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "deployment-1182" for this suite. + +• [SLOW TEST:5.157 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + deployment should delete old replica sets [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Deployment deployment should delete old replica sets [Conformance]","total":356,"completed":202,"skipped":3544,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Secrets + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:23:31.334: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating secret with name s-test-opt-del-eb57a29c-c306-427f-9269-e7c0dbc36e60 +STEP: Creating secret with name s-test-opt-upd-7b214f43-9e11-4d31-be96-55e45ded0e8a +STEP: Creating the pod +Oct 26 05:23:31.402: INFO: The status of Pod pod-secrets-953ab1ab-f2b3-43d2-b783-e14867f1bc14 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:23:33.406: INFO: The status of Pod pod-secrets-953ab1ab-f2b3-43d2-b783-e14867f1bc14 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:23:35.411: INFO: The status of Pod pod-secrets-953ab1ab-f2b3-43d2-b783-e14867f1bc14 is Running (Ready = true) +STEP: Deleting secret s-test-opt-del-eb57a29c-c306-427f-9269-e7c0dbc36e60 +STEP: Updating secret s-test-opt-upd-7b214f43-9e11-4d31-be96-55e45ded0e8a +STEP: Creating secret with name s-test-opt-create-21ec3328-7b9e-4d3f-b411-06c326a4ac8e +STEP: waiting to observe update in volume +[AfterEach] [sig-storage] Secrets + test/e2e/framework/framework.go:188 +Oct 26 05:23:37.467: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-1202" for this suite. + +• [SLOW TEST:6.140 seconds] +[sig-storage] Secrets +test/e2e/common/storage/framework.go:23 + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Secrets optional updates should be reflected in volume [NodeConformance] [Conformance]","total":356,"completed":203,"skipped":3584,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl server-side dry-run + should check if kubectl can dry-run update Pods [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:23:37.474: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[It] should check if kubectl can dry-run update Pods [Conformance] + test/e2e/framework/framework.go:652 +STEP: running the image k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 +Oct 26 05:23:37.494: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-2889 run e2e-test-httpd-pod --image=k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 --pod-running-timeout=2m0s --labels=run=e2e-test-httpd-pod' +Oct 26 05:23:37.561: INFO: stderr: "" +Oct 26 05:23:37.561: INFO: stdout: "pod/e2e-test-httpd-pod created\n" +STEP: replace the image in the pod with server-side dry-run +Oct 26 05:23:37.561: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-2889 patch pod e2e-test-httpd-pod -p {"spec":{"containers":[{"name": "e2e-test-httpd-pod","image": "k8s.gcr.io/e2e-test-images/busybox:1.29-2"}]}} --dry-run=server' +Oct 26 05:23:38.585: INFO: stderr: "" +Oct 26 05:23:38.585: INFO: stdout: "pod/e2e-test-httpd-pod patched\n" +STEP: verifying the pod e2e-test-httpd-pod has the right image k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 +Oct 26 05:23:38.588: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-2889 delete pods e2e-test-httpd-pod' +Oct 26 05:23:40.408: INFO: stderr: "" +Oct 26 05:23:40.408: INFO: stdout: "pod \"e2e-test-httpd-pod\" deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 05:23:40.408: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-2889" for this suite. +•{"msg":"PASSED [sig-cli] Kubectl client Kubectl server-side dry-run should check if kubectl can dry-run update Pods [Conformance]","total":356,"completed":204,"skipped":3625,"failed":0} +SSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + should be able to convert a non homogeneous list of CRs [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:23:40.419: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:128 +STEP: Setting up server cert +STEP: Create role binding to let cr conversion webhook read extension-apiserver-authentication +STEP: Deploying the custom resource conversion webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:23:41.302: INFO: deployment "sample-crd-conversion-webhook-deployment" doesn't have the required revision set +Oct 26 05:23:43.311: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 23, 41, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 23, 41, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 23, 41, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 23, 41, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-crd-conversion-webhook-deployment-656754656d\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:23:46.330: INFO: Waiting for amount of service:e2e-test-crd-conversion-webhook endpoints to be 1 +[It] should be able to convert a non homogeneous list of CRs [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:23:46.334: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Creating a v1 custom resource +STEP: Create a v2 custom resource +STEP: List CRs in v1 +STEP: List CRs in v2 +[AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:23:49.582: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-webhook-7934" for this suite. +[AfterEach] [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/crd_conversion_webhook.go:139 + +• [SLOW TEST:9.216 seconds] +[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should be able to convert a non homogeneous list of CRs [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] should be able to convert a non homogeneous list of CRs [Conformance]","total":356,"completed":205,"skipped":3641,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + should have a working scale subresource [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:23:49.645: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename statefulset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:96 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:111 +STEP: Creating service test in namespace statefulset-2376 +[It] should have a working scale subresource [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating statefulset ss in namespace statefulset-2376 +Oct 26 05:23:49.724: INFO: Found 0 stateful pods, waiting for 1 +Oct 26 05:23:59.738: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true +STEP: getting scale subresource +STEP: updating a scale subresource +STEP: verifying the statefulset Spec.Replicas was modified +STEP: Patch a scale subresource +STEP: verifying the statefulset Spec.Replicas was modified +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:122 +Oct 26 05:23:59.762: INFO: Deleting all statefulset in ns statefulset-2376 +Oct 26 05:23:59.772: INFO: Scaling statefulset ss to 0 +Oct 26 05:24:09.804: INFO: Waiting for statefulset status.replicas updated to 0 +Oct 26 05:24:09.808: INFO: Deleting statefulset ss +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:188 +Oct 26 05:24:09.838: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "statefulset-2376" for this suite. + +• [SLOW TEST:20.221 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:101 + should have a working scale subresource [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should have a working scale subresource [Conformance]","total":356,"completed":206,"skipped":3697,"failed":0} +S +------------------------------ +[sig-network] DNS + should provide DNS for services [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] DNS + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:24:09.870: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename dns +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should provide DNS for services [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a test headless service +STEP: Running these commands on wheezy: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search dns-test-service.dns-6858.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_udp@dns-test-service.dns-6858.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-6858.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-6858.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.dns-test-service.dns-6858.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-6858.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.dns-test-service.dns-6858.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-6858.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_udp@_http._tcp.test-service-2.dns-6858.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-6858.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/wheezy_tcp@_http._tcp.test-service-2.dns-6858.svc.cluster.local;check="$$(dig +notcp +noall +answer +search 30.101.70.100.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/100.70.101.30_udp@PTR;check="$$(dig +tcp +noall +answer +search 30.101.70.100.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/100.70.101.30_tcp@PTR;sleep 1; done + +STEP: Running these commands on jessie: for i in `seq 1 600`; do check="$$(dig +notcp +noall +answer +search dns-test-service.dns-6858.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_udp@dns-test-service.dns-6858.svc.cluster.local;check="$$(dig +tcp +noall +answer +search dns-test-service.dns-6858.svc.cluster.local A)" && test -n "$$check" && echo OK > /results/jessie_tcp@dns-test-service.dns-6858.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.dns-test-service.dns-6858.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.dns-test-service.dns-6858.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.dns-test-service.dns-6858.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.dns-test-service.dns-6858.svc.cluster.local;check="$$(dig +notcp +noall +answer +search _http._tcp.test-service-2.dns-6858.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_udp@_http._tcp.test-service-2.dns-6858.svc.cluster.local;check="$$(dig +tcp +noall +answer +search _http._tcp.test-service-2.dns-6858.svc.cluster.local SRV)" && test -n "$$check" && echo OK > /results/jessie_tcp@_http._tcp.test-service-2.dns-6858.svc.cluster.local;check="$$(dig +notcp +noall +answer +search 30.101.70.100.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/100.70.101.30_udp@PTR;check="$$(dig +tcp +noall +answer +search 30.101.70.100.in-addr.arpa. PTR)" && test -n "$$check" && echo OK > /results/100.70.101.30_tcp@PTR;sleep 1; done + +STEP: creating a pod to probe DNS +STEP: submitting the pod to kubernetes +STEP: retrieving the pod +STEP: looking for the results for each expected name from probers +Oct 26 05:24:14.042: INFO: Unable to read wheezy_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:14.045: INFO: Unable to read wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:14.050: INFO: Unable to read wheezy_tcp@_http._tcp.dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:14.062: INFO: Unable to read jessie_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:14.064: INFO: Unable to read jessie_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:14.076: INFO: Lookups using dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575 failed for: [wheezy_udp@dns-test-service.dns-6858.svc.cluster.local wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local wheezy_tcp@_http._tcp.dns-test-service.dns-6858.svc.cluster.local jessie_udp@dns-test-service.dns-6858.svc.cluster.local jessie_tcp@dns-test-service.dns-6858.svc.cluster.local] + +Oct 26 05:24:19.080: INFO: Unable to read wheezy_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:19.083: INFO: Unable to read wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:19.098: INFO: Unable to read jessie_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:19.100: INFO: Unable to read jessie_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:19.113: INFO: Lookups using dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575 failed for: [wheezy_udp@dns-test-service.dns-6858.svc.cluster.local wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local jessie_udp@dns-test-service.dns-6858.svc.cluster.local jessie_tcp@dns-test-service.dns-6858.svc.cluster.local] + +Oct 26 05:24:24.079: INFO: Unable to read wheezy_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:24.083: INFO: Unable to read wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:24.100: INFO: Unable to read jessie_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:24.102: INFO: Unable to read jessie_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:24.119: INFO: Lookups using dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575 failed for: [wheezy_udp@dns-test-service.dns-6858.svc.cluster.local wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local jessie_udp@dns-test-service.dns-6858.svc.cluster.local jessie_tcp@dns-test-service.dns-6858.svc.cluster.local] + +Oct 26 05:24:29.080: INFO: Unable to read wheezy_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:29.084: INFO: Unable to read wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:29.098: INFO: Unable to read jessie_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:29.099: INFO: Unable to read jessie_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:29.112: INFO: Lookups using dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575 failed for: [wheezy_udp@dns-test-service.dns-6858.svc.cluster.local wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local jessie_udp@dns-test-service.dns-6858.svc.cluster.local jessie_tcp@dns-test-service.dns-6858.svc.cluster.local] + +Oct 26 05:24:34.081: INFO: Unable to read wheezy_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:34.087: INFO: Unable to read wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:34.115: INFO: Unable to read jessie_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:34.118: INFO: Unable to read jessie_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:34.135: INFO: Lookups using dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575 failed for: [wheezy_udp@dns-test-service.dns-6858.svc.cluster.local wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local jessie_udp@dns-test-service.dns-6858.svc.cluster.local jessie_tcp@dns-test-service.dns-6858.svc.cluster.local] + +Oct 26 05:24:39.079: INFO: Unable to read wheezy_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:39.082: INFO: Unable to read wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:39.098: INFO: Unable to read jessie_udp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:39.102: INFO: Unable to read jessie_tcp@dns-test-service.dns-6858.svc.cluster.local from pod dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575: the server could not find the requested resource (get pods dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575) +Oct 26 05:24:39.114: INFO: Lookups using dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575 failed for: [wheezy_udp@dns-test-service.dns-6858.svc.cluster.local wheezy_tcp@dns-test-service.dns-6858.svc.cluster.local jessie_udp@dns-test-service.dns-6858.svc.cluster.local jessie_tcp@dns-test-service.dns-6858.svc.cluster.local] + +Oct 26 05:24:44.135: INFO: DNS probes using dns-6858/dns-test-ba5d7cf0-cadb-4fe3-9879-9e4e7cb6f575 succeeded + +STEP: deleting the pod +STEP: deleting the test service +STEP: deleting the test headless service +[AfterEach] [sig-network] DNS + test/e2e/framework/framework.go:188 +Oct 26 05:24:44.239: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "dns-6858" for this suite. + +• [SLOW TEST:34.394 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should provide DNS for services [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] DNS should provide DNS for services [Conformance]","total":356,"completed":207,"skipped":3698,"failed":0} +SSSSS +------------------------------ +[sig-apps] Job + should run a job to completion when tasks sometimes fail and are locally restarted [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Job + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:24:44.265: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename job +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should run a job to completion when tasks sometimes fail and are locally restarted [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a job +STEP: Ensuring job reaches completions +[AfterEach] [sig-apps] Job + test/e2e/framework/framework.go:188 +Oct 26 05:25:00.302: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "job-398" for this suite. + +• [SLOW TEST:16.045 seconds] +[sig-apps] Job +test/e2e/apps/framework.go:23 + should run a job to completion when tasks sometimes fail and are locally restarted [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Job should run a job to completion when tasks sometimes fail and are locally restarted [Conformance]","total":356,"completed":208,"skipped":3703,"failed":0} +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:25:00.311: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name projected-configmap-test-volume-f1d95ca0-afa7-4609-8200-2364b60a508a +STEP: Creating a pod to test consume configMaps +Oct 26 05:25:00.337: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-f86a5d9f-3422-4649-9e8e-8e64fb7cffd9" in namespace "projected-644" to be "Succeeded or Failed" +Oct 26 05:25:00.343: INFO: Pod "pod-projected-configmaps-f86a5d9f-3422-4649-9e8e-8e64fb7cffd9": Phase="Pending", Reason="", readiness=false. Elapsed: 5.534136ms +Oct 26 05:25:02.354: INFO: Pod "pod-projected-configmaps-f86a5d9f-3422-4649-9e8e-8e64fb7cffd9": Phase="Pending", Reason="", readiness=false. Elapsed: 2.017003757s +Oct 26 05:25:04.362: INFO: Pod "pod-projected-configmaps-f86a5d9f-3422-4649-9e8e-8e64fb7cffd9": Phase="Pending", Reason="", readiness=false. Elapsed: 4.024292971s +Oct 26 05:25:06.368: INFO: Pod "pod-projected-configmaps-f86a5d9f-3422-4649-9e8e-8e64fb7cffd9": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.031125613s +STEP: Saw pod success +Oct 26 05:25:06.369: INFO: Pod "pod-projected-configmaps-f86a5d9f-3422-4649-9e8e-8e64fb7cffd9" satisfied condition "Succeeded or Failed" +Oct 26 05:25:06.371: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-projected-configmaps-f86a5d9f-3422-4649-9e8e-8e64fb7cffd9 container agnhost-container: +STEP: delete the pod +Oct 26 05:25:06.388: INFO: Waiting for pod pod-projected-configmaps-f86a5d9f-3422-4649-9e8e-8e64fb7cffd9 to disappear +Oct 26 05:25:06.390: INFO: Pod pod-projected-configmaps-f86a5d9f-3422-4649-9e8e-8e64fb7cffd9 no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:188 +Oct 26 05:25:06.391: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-644" for this suite. + +• [SLOW TEST:6.085 seconds] +[sig-storage] Projected configMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected configMap should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":209,"skipped":3722,"failed":0} +SSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + patching/updating a validating webhook should work [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:25:06.399: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:25:07.287: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Oct 26 05:25:09.297: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 25, 7, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 25, 7, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 25, 7, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 25, 7, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:25:12.318: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] patching/updating a validating webhook should work [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a validating webhook configuration +STEP: Creating a configMap that does not comply to the validation webhook rules +STEP: Updating a validating webhook configuration's rules to not include the create operation +STEP: Creating a configMap that does not comply to the validation webhook rules +STEP: Patching a validating webhook configuration's rules to include the create operation +STEP: Creating a configMap that does not comply to the validation webhook rules +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:25:12.404: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-1607" for this suite. +STEP: Destroying namespace "webhook-1607-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:6.110 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + patching/updating a validating webhook should work [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] patching/updating a validating webhook should work [Conformance]","total":356,"completed":210,"skipped":3729,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] DisruptionController Listing PodDisruptionBudgets for all namespaces + should list and delete a collection of PodDisruptionBudgets [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] DisruptionController + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:25:12.509: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename disruption +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] DisruptionController + test/e2e/apps/disruption.go:71 +[BeforeEach] Listing PodDisruptionBudgets for all namespaces + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:25:12.540: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename disruption-2 +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should list and delete a collection of PodDisruptionBudgets [Conformance] + test/e2e/framework/framework.go:652 +STEP: Waiting for the pdb to be processed +STEP: Waiting for the pdb to be processed +STEP: Waiting for the pdb to be processed +STEP: listing a collection of PDBs across all namespaces +STEP: listing a collection of PDBs in namespace disruption-310 +STEP: deleting a collection of PDBs +STEP: Waiting for the PDB collection to be deleted +[AfterEach] Listing PodDisruptionBudgets for all namespaces + test/e2e/framework/framework.go:188 +Oct 26 05:25:18.634: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "disruption-2-9674" for this suite. +[AfterEach] [sig-apps] DisruptionController + test/e2e/framework/framework.go:188 +Oct 26 05:25:18.642: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "disruption-310" for this suite. + +• [SLOW TEST:6.139 seconds] +[sig-apps] DisruptionController +test/e2e/apps/framework.go:23 + Listing PodDisruptionBudgets for all namespaces + test/e2e/apps/disruption.go:77 + should list and delete a collection of PodDisruptionBudgets [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] DisruptionController Listing PodDisruptionBudgets for all namespaces should list and delete a collection of PodDisruptionBudgets [Conformance]","total":356,"completed":211,"skipped":3753,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should be able to change the type from ClusterIP to ExternalName [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:25:18.650: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should be able to change the type from ClusterIP to ExternalName [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a service clusterip-service with the type=ClusterIP in namespace services-5249 +STEP: Creating active service to test reachability when its FQDN is referred as externalName for another service +STEP: creating service externalsvc in namespace services-5249 +STEP: creating replication controller externalsvc in namespace services-5249 +I1026 05:25:18.702607 20 runners.go:193] Created replication controller with name: externalsvc, namespace: services-5249, replica count: 2 +I1026 05:25:21.753876 20 runners.go:193] externalsvc Pods: 2 out of 2 created, 2 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +STEP: changing the ClusterIP service to type=ExternalName +Oct 26 05:25:21.772: INFO: Creating new exec pod +Oct 26 05:25:25.808: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-5249 exec execpodxb495 -- /bin/sh -x -c nslookup clusterip-service.services-5249.svc.cluster.local' +Oct 26 05:25:26.013: INFO: stderr: "+ nslookup clusterip-service.services-5249.svc.cluster.local\n" +Oct 26 05:25:26.013: INFO: stdout: "Server:\t\t100.64.0.10\nAddress:\t100.64.0.10#53\n\nclusterip-service.services-5249.svc.cluster.local\tcanonical name = externalsvc.services-5249.svc.cluster.local.\nName:\texternalsvc.services-5249.svc.cluster.local\nAddress: 100.70.106.16\n\n" +STEP: deleting ReplicationController externalsvc in namespace services-5249, will wait for the garbage collector to delete the pods +Oct 26 05:25:26.070: INFO: Deleting ReplicationController externalsvc took: 4.188909ms +Oct 26 05:25:26.171: INFO: Terminating ReplicationController externalsvc pods took: 100.926056ms +Oct 26 05:25:27.904: INFO: Cleaning up the ClusterIP to ExternalName test service +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 05:25:27.917: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-5249" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:9.279 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should be able to change the type from ClusterIP to ExternalName [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should be able to change the type from ClusterIP to ExternalName [Conformance]","total":356,"completed":212,"skipped":3768,"failed":0} +SSSSS +------------------------------ +[sig-apps] Deployment + RecreateDeployment should delete old pods and create new ones [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:25:27.929: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename deployment +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] RecreateDeployment should delete old pods and create new ones [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:25:27.943: INFO: Creating deployment "test-recreate-deployment" +Oct 26 05:25:27.946: INFO: Waiting deployment "test-recreate-deployment" to be updated to revision 1 +Oct 26 05:25:27.954: INFO: deployment "test-recreate-deployment" doesn't have the required revision set +Oct 26 05:25:29.962: INFO: Waiting deployment "test-recreate-deployment" to complete +Oct 26 05:25:29.970: INFO: Triggering a new rollout for deployment "test-recreate-deployment" +Oct 26 05:25:29.976: INFO: Updating deployment test-recreate-deployment +Oct 26 05:25:29.976: INFO: Watching deployment "test-recreate-deployment" to verify that new pods will not run with olds pods +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Oct 26 05:25:30.081: INFO: Deployment "test-recreate-deployment": +&Deployment{ObjectMeta:{test-recreate-deployment deployment-895 7f872bc1-f310-48aa-aa06-fc5840a28283 22647 2 2022-10-26 05:25:27 +0000 UTC map[name:sample-pod-3] map[deployment.kubernetes.io/revision:2] [] [] [{e2e.test Update apps/v1 2022-10-26 05:25:29 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:progressDeadlineSeconds":{},"f:replicas":{},"f:revisionHistoryLimit":{},"f:selector":{},"f:strategy":{"f:type":{}},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:25:30 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/revision":{}}},"f:status":{"f:conditions":{".":{},"k:{\"type\":\"Available\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Progressing\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:observedGeneration":{},"f:replicas":{},"f:unavailableReplicas":{},"f:updatedReplicas":{}}} status}]},Spec:DeploymentSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: sample-pod-3,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod-3] map[] [] [] []} {[] [] [{httpd k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc004f51c08 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},Strategy:DeploymentStrategy{Type:Recreate,RollingUpdate:nil,},MinReadySeconds:0,RevisionHistoryLimit:*10,Paused:false,ProgressDeadlineSeconds:*600,},Status:DeploymentStatus{ObservedGeneration:2,Replicas:1,UpdatedReplicas:1,AvailableReplicas:0,UnavailableReplicas:1,Conditions:[]DeploymentCondition{DeploymentCondition{Type:Available,Status:False,Reason:MinimumReplicasUnavailable,Message:Deployment does not have minimum availability.,LastUpdateTime:2022-10-26 05:25:30 +0000 UTC,LastTransitionTime:2022-10-26 05:25:30 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:ReplicaSetUpdated,Message:ReplicaSet "test-recreate-deployment-cd8586fc7" is progressing.,LastUpdateTime:2022-10-26 05:25:30 +0000 UTC,LastTransitionTime:2022-10-26 05:25:27 +0000 UTC,},},ReadyReplicas:0,CollisionCount:nil,},} + +Oct 26 05:25:30.083: INFO: New ReplicaSet "test-recreate-deployment-cd8586fc7" of Deployment "test-recreate-deployment": +&ReplicaSet{ObjectMeta:{test-recreate-deployment-cd8586fc7 deployment-895 54a43f56-61ed-4646-952f-c9211feecc7d 22645 1 2022-10-26 05:25:30 +0000 UTC map[name:sample-pod-3 pod-template-hash:cd8586fc7] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:1 deployment.kubernetes.io/revision:2] [{apps/v1 Deployment test-recreate-deployment 7f872bc1-f310-48aa-aa06-fc5840a28283 0xc005064510 0xc005064511}] [] [{kube-controller-manager Update apps/v1 2022-10-26 05:25:30 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7f872bc1-f310-48aa-aa06-fc5840a28283\"}":{}}},"f:spec":{"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:25:30 +0000 UTC FieldsV1 {"f:status":{"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: sample-pod-3,pod-template-hash: cd8586fc7,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod-3 pod-template-hash:cd8586fc7] map[] [] [] []} {[] [] [{httpd k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0050645a8 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:1,FullyLabeledReplicas:1,ObservedGeneration:1,ReadyReplicas:0,AvailableReplicas:0,Conditions:[]ReplicaSetCondition{},},} +Oct 26 05:25:30.083: INFO: All old ReplicaSets of Deployment "test-recreate-deployment": +Oct 26 05:25:30.083: INFO: &ReplicaSet{ObjectMeta:{test-recreate-deployment-845d658455 deployment-895 89c91c61-8e37-47dc-8edf-1882418e34bc 22638 2 2022-10-26 05:25:27 +0000 UTC map[name:sample-pod-3 pod-template-hash:845d658455] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:1 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-recreate-deployment 7f872bc1-f310-48aa-aa06-fc5840a28283 0xc0050643f7 0xc0050643f8}] [] [{kube-controller-manager Update apps/v1 2022-10-26 05:25:27 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"7f872bc1-f310-48aa-aa06-fc5840a28283\"}":{}}},"f:spec":{"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"agnhost\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:25:29 +0000 UTC FieldsV1 {"f:status":{"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*0,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: sample-pod-3,pod-template-hash: 845d658455,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod-3 pod-template-hash:845d658455] map[] [] [] []} {[] [] [{agnhost k8s.gcr.io/e2e-test-images/agnhost:2.39 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0050644a8 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:0,FullyLabeledReplicas:0,ObservedGeneration:2,ReadyReplicas:0,AvailableReplicas:0,Conditions:[]ReplicaSetCondition{},},} +Oct 26 05:25:30.087: INFO: Pod "test-recreate-deployment-cd8586fc7-h8p6l" is not available: +&Pod{ObjectMeta:{test-recreate-deployment-cd8586fc7-h8p6l test-recreate-deployment-cd8586fc7- deployment-895 400d4157-2cc6-45ea-ad30-e72dea1d5c1f 22644 0 2022-10-26 05:25:30 +0000 UTC map[name:sample-pod-3 pod-template-hash:cd8586fc7] map[] [{apps/v1 ReplicaSet test-recreate-deployment-cd8586fc7 54a43f56-61ed-4646-952f-c9211feecc7d 0xc005064a10 0xc005064a11}] [] [{kube-controller-manager Update v1 2022-10-26 05:25:30 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"54a43f56-61ed-4646-952f-c9211feecc7d\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:25:30 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-pzmhb,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-pzmhb,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:25:30 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:25:30 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:25:30 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:25:30 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:,StartTime:2022-10-26 05:25:30 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/framework.go:188 +Oct 26 05:25:30.087: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "deployment-895" for this suite. +•{"msg":"PASSED [sig-apps] Deployment RecreateDeployment should delete old pods and create new ones [Conformance]","total":356,"completed":213,"skipped":3773,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-auth] ServiceAccounts + should mount an API token into pods [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:25:30.095: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename svcaccounts +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should mount an API token into pods [Conformance] + test/e2e/framework/framework.go:652 +STEP: reading a file in the container +Oct 26 05:25:32.129: INFO: Running '/usr/local/bin/kubectl exec --namespace=svcaccounts-9195 pod-service-account-e4eb8ae0-32fa-4e35-8509-ea742a27c4e4 -c=test -- cat /var/run/secrets/kubernetes.io/serviceaccount/token' +STEP: reading a file in the container +Oct 26 05:25:32.292: INFO: Running '/usr/local/bin/kubectl exec --namespace=svcaccounts-9195 pod-service-account-e4eb8ae0-32fa-4e35-8509-ea742a27c4e4 -c=test -- cat /var/run/secrets/kubernetes.io/serviceaccount/ca.crt' +STEP: reading a file in the container +Oct 26 05:25:32.427: INFO: Running '/usr/local/bin/kubectl exec --namespace=svcaccounts-9195 pod-service-account-e4eb8ae0-32fa-4e35-8509-ea742a27c4e4 -c=test -- cat /var/run/secrets/kubernetes.io/serviceaccount/namespace' +Oct 26 05:25:32.545: INFO: Got root ca configmap in namespace "svcaccounts-9195" +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:188 +Oct 26 05:25:32.548: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "svcaccounts-9195" for this suite. +•{"msg":"PASSED [sig-auth] ServiceAccounts should mount an API token into pods [Conformance]","total":356,"completed":214,"skipped":3805,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Ingress API + should support creating Ingress API operations [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Ingress API + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:25:32.555: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename ingress +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support creating Ingress API operations [Conformance] + test/e2e/framework/framework.go:652 +STEP: getting /apis +STEP: getting /apis/networking.k8s.io +STEP: getting /apis/networking.k8s.iov1 +STEP: creating +STEP: getting +STEP: listing +STEP: watching +Oct 26 05:25:32.591: INFO: starting watch +STEP: cluster-wide listing +STEP: cluster-wide watching +Oct 26 05:25:32.594: INFO: starting watch +STEP: patching +STEP: updating +Oct 26 05:25:32.604: INFO: waiting for watch events with expected annotations +Oct 26 05:25:32.604: INFO: saw patched and updated annotations +STEP: patching /status +STEP: updating /status +STEP: get /status +STEP: deleting +STEP: deleting a collection +[AfterEach] [sig-network] Ingress API + test/e2e/framework/framework.go:188 +Oct 26 05:25:32.628: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "ingress-3008" for this suite. +•{"msg":"PASSED [sig-network] Ingress API should support creating Ingress API operations [Conformance]","total":356,"completed":215,"skipped":3840,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] DNS + should provide DNS for ExternalName services [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] DNS + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:25:32.634: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename dns +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should provide DNS for ExternalName services [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a test externalName service +STEP: Running these commands on wheezy: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-920.svc.cluster.local CNAME > /results/wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local; sleep 1; done + +STEP: Running these commands on jessie: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-920.svc.cluster.local CNAME > /results/jessie_udp@dns-test-service-3.dns-920.svc.cluster.local; sleep 1; done + +STEP: creating a pod to probe DNS +STEP: submitting the pod to kubernetes +STEP: retrieving the pod +STEP: looking for the results for each expected name from probers +Oct 26 05:25:36.677: INFO: DNS probes using dns-test-d766d72f-2121-4a00-88bf-a5131081d697 succeeded + +STEP: deleting the pod +STEP: changing the externalName to bar.example.com +STEP: Running these commands on wheezy: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-920.svc.cluster.local CNAME > /results/wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local; sleep 1; done + +STEP: Running these commands on jessie: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-920.svc.cluster.local CNAME > /results/jessie_udp@dns-test-service-3.dns-920.svc.cluster.local; sleep 1; done + +STEP: creating a second pod to probe DNS +STEP: submitting the pod to kubernetes +STEP: retrieving the pod +STEP: looking for the results for each expected name from probers +Oct 26 05:25:40.730: INFO: File wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local from pod dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 contains 'foo.example.com. +' instead of 'bar.example.com.' +Oct 26 05:25:40.733: INFO: File jessie_udp@dns-test-service-3.dns-920.svc.cluster.local from pod dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 contains 'foo.example.com. +' instead of 'bar.example.com.' +Oct 26 05:25:40.733: INFO: Lookups using dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 failed for: [wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local jessie_udp@dns-test-service-3.dns-920.svc.cluster.local] + +Oct 26 05:25:45.737: INFO: File wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local from pod dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 contains 'foo.example.com. +' instead of 'bar.example.com.' +Oct 26 05:25:45.741: INFO: File jessie_udp@dns-test-service-3.dns-920.svc.cluster.local from pod dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 contains 'foo.example.com. +' instead of 'bar.example.com.' +Oct 26 05:25:45.741: INFO: Lookups using dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 failed for: [wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local jessie_udp@dns-test-service-3.dns-920.svc.cluster.local] + +Oct 26 05:25:50.737: INFO: File wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local from pod dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 contains 'foo.example.com. +' instead of 'bar.example.com.' +Oct 26 05:25:50.741: INFO: File jessie_udp@dns-test-service-3.dns-920.svc.cluster.local from pod dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 contains 'foo.example.com. +' instead of 'bar.example.com.' +Oct 26 05:25:50.741: INFO: Lookups using dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 failed for: [wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local jessie_udp@dns-test-service-3.dns-920.svc.cluster.local] + +Oct 26 05:25:55.739: INFO: File wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local from pod dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 contains 'foo.example.com. +' instead of 'bar.example.com.' +Oct 26 05:25:55.742: INFO: File jessie_udp@dns-test-service-3.dns-920.svc.cluster.local from pod dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 contains 'foo.example.com. +' instead of 'bar.example.com.' +Oct 26 05:25:55.742: INFO: Lookups using dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 failed for: [wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local jessie_udp@dns-test-service-3.dns-920.svc.cluster.local] + +Oct 26 05:26:00.739: INFO: File wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local from pod dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 contains 'foo.example.com. +' instead of 'bar.example.com.' +Oct 26 05:26:00.742: INFO: File jessie_udp@dns-test-service-3.dns-920.svc.cluster.local from pod dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 contains 'foo.example.com. +' instead of 'bar.example.com.' +Oct 26 05:26:00.742: INFO: Lookups using dns-920/dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 failed for: [wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local jessie_udp@dns-test-service-3.dns-920.svc.cluster.local] + +Oct 26 05:26:05.742: INFO: DNS probes using dns-test-d93dd1cc-33b9-4b94-982d-3cc50c78e3f6 succeeded + +STEP: deleting the pod +STEP: changing the service to type=ClusterIP +STEP: Running these commands on wheezy: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-920.svc.cluster.local A > /results/wheezy_udp@dns-test-service-3.dns-920.svc.cluster.local; sleep 1; done + +STEP: Running these commands on jessie: for i in `seq 1 30`; do dig +short dns-test-service-3.dns-920.svc.cluster.local A > /results/jessie_udp@dns-test-service-3.dns-920.svc.cluster.local; sleep 1; done + +STEP: creating a third pod to probe DNS +STEP: submitting the pod to kubernetes +STEP: retrieving the pod +STEP: looking for the results for each expected name from probers +Oct 26 05:26:09.823: INFO: DNS probes using dns-test-deed41de-df73-406b-b8a4-17ec2e4e822b succeeded + +STEP: deleting the pod +STEP: deleting the test externalName service +[AfterEach] [sig-network] DNS + test/e2e/framework/framework.go:188 +Oct 26 05:26:09.856: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "dns-920" for this suite. + +• [SLOW TEST:37.240 seconds] +[sig-network] DNS +test/e2e/network/common/framework.go:23 + should provide DNS for ExternalName services [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] DNS should provide DNS for ExternalName services [Conformance]","total":356,"completed":216,"skipped":3865,"failed":0} +SSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:26:09.875: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:43 +[It] should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 05:26:09.913: INFO: Waiting up to 5m0s for pod "downwardapi-volume-4b6de0f9-c69c-49d2-9c74-bbc90847f996" in namespace "projected-6518" to be "Succeeded or Failed" +Oct 26 05:26:09.916: INFO: Pod "downwardapi-volume-4b6de0f9-c69c-49d2-9c74-bbc90847f996": Phase="Pending", Reason="", readiness=false. Elapsed: 2.704959ms +Oct 26 05:26:11.923: INFO: Pod "downwardapi-volume-4b6de0f9-c69c-49d2-9c74-bbc90847f996": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009835945s +Oct 26 05:26:13.929: INFO: Pod "downwardapi-volume-4b6de0f9-c69c-49d2-9c74-bbc90847f996": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015559499s +Oct 26 05:26:15.937: INFO: Pod "downwardapi-volume-4b6de0f9-c69c-49d2-9c74-bbc90847f996": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.023661171s +STEP: Saw pod success +Oct 26 05:26:15.937: INFO: Pod "downwardapi-volume-4b6de0f9-c69c-49d2-9c74-bbc90847f996" satisfied condition "Succeeded or Failed" +Oct 26 05:26:15.939: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-4b6de0f9-c69c-49d2-9c74-bbc90847f996 container client-container: +STEP: delete the pod +Oct 26 05:26:15.950: INFO: Waiting for pod downwardapi-volume-4b6de0f9-c69c-49d2-9c74-bbc90847f996 to disappear +Oct 26 05:26:15.953: INFO: Pod downwardapi-volume-4b6de0f9-c69c-49d2-9c74-bbc90847f996 no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:188 +Oct 26 05:26:15.953: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-6518" for this suite. + +• [SLOW TEST:6.085 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should provide container's cpu limit [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected downwardAPI should provide container's cpu limit [NodeConformance] [Conformance]","total":356,"completed":217,"skipped":3870,"failed":0} +SSSSSSSSSSSSSS +------------------------------ +[sig-scheduling] SchedulerPreemption [Serial] PreemptionExecutionPath + runs ReplicaSets to verify preemption running path [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:26:15.960: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sched-preemption +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:92 +Oct 26 05:26:15.984: INFO: Waiting up to 1m0s for all nodes to be ready +Oct 26 05:27:16.024: INFO: Waiting for terminating namespaces to be deleted... +[BeforeEach] PreemptionExecutionPath + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:27:16.027: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sched-preemption-path +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] PreemptionExecutionPath + test/e2e/scheduling/preemption.go:496 +STEP: Finding an available node +STEP: Trying to launch a pod without a label to get a node which can launch it. +STEP: Explicitly delete pod here to free the resource it takes. +Oct 26 05:27:20.077: INFO: found a healthy node: i-066ef2cf0d4227da4 +[It] runs ReplicaSets to verify preemption running path [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:27:30.185: INFO: pods created so far: [1 1 1] +Oct 26 05:27:30.185: INFO: length of pods created so far: 3 +Oct 26 05:27:32.192: INFO: pods created so far: [2 2 1] +[AfterEach] PreemptionExecutionPath + test/e2e/framework/framework.go:188 +Oct 26 05:27:39.194: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sched-preemption-path-2803" for this suite. +[AfterEach] PreemptionExecutionPath + test/e2e/scheduling/preemption.go:470 +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:27:39.229: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sched-preemption-4188" for this suite. +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:80 + +• [SLOW TEST:83.310 seconds] +[sig-scheduling] SchedulerPreemption [Serial] +test/e2e/scheduling/framework.go:40 + PreemptionExecutionPath + test/e2e/scheduling/preemption.go:458 + runs ReplicaSets to verify preemption running path [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-scheduling] SchedulerPreemption [Serial] PreemptionExecutionPath runs ReplicaSets to verify preemption running path [Conformance]","total":356,"completed":218,"skipped":3884,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:27:39.270: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0777 on tmpfs +Oct 26 05:27:39.294: INFO: Waiting up to 5m0s for pod "pod-31ded0c6-3558-4353-88ae-b732903f5544" in namespace "emptydir-664" to be "Succeeded or Failed" +Oct 26 05:27:39.298: INFO: Pod "pod-31ded0c6-3558-4353-88ae-b732903f5544": Phase="Pending", Reason="", readiness=false. Elapsed: 4.078553ms +Oct 26 05:27:41.306: INFO: Pod "pod-31ded0c6-3558-4353-88ae-b732903f5544": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011981138s +Oct 26 05:27:43.311: INFO: Pod "pod-31ded0c6-3558-4353-88ae-b732903f5544": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.016550153s +STEP: Saw pod success +Oct 26 05:27:43.311: INFO: Pod "pod-31ded0c6-3558-4353-88ae-b732903f5544" satisfied condition "Succeeded or Failed" +Oct 26 05:27:43.313: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-31ded0c6-3558-4353-88ae-b732903f5544 container test-container: +STEP: delete the pod +Oct 26 05:27:43.325: INFO: Waiting for pod pod-31ded0c6-3558-4353-88ae-b732903f5544 to disappear +Oct 26 05:27:43.328: INFO: Pod pod-31ded0c6-3558-4353-88ae-b732903f5544 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 05:27:43.328: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-664" for this suite. +•{"msg":"PASSED [sig-storage] EmptyDir volumes should support (root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":219,"skipped":3910,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:27:43.335: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume as non-root [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name configmap-test-volume-2e71ef82-bf0d-4b6b-a004-13d4257f291e +STEP: Creating a pod to test consume configMaps +Oct 26 05:27:43.364: INFO: Waiting up to 5m0s for pod "pod-configmaps-5f3fbfcc-6aa3-44a9-aed0-018a3696d507" in namespace "configmap-1055" to be "Succeeded or Failed" +Oct 26 05:27:43.369: INFO: Pod "pod-configmaps-5f3fbfcc-6aa3-44a9-aed0-018a3696d507": Phase="Pending", Reason="", readiness=false. Elapsed: 4.336659ms +Oct 26 05:27:45.376: INFO: Pod "pod-configmaps-5f3fbfcc-6aa3-44a9-aed0-018a3696d507": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011350475s +Oct 26 05:27:47.383: INFO: Pod "pod-configmaps-5f3fbfcc-6aa3-44a9-aed0-018a3696d507": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.01825527s +STEP: Saw pod success +Oct 26 05:27:47.383: INFO: Pod "pod-configmaps-5f3fbfcc-6aa3-44a9-aed0-018a3696d507" satisfied condition "Succeeded or Failed" +Oct 26 05:27:47.385: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-configmaps-5f3fbfcc-6aa3-44a9-aed0-018a3696d507 container agnhost-container: +STEP: delete the pod +Oct 26 05:27:47.396: INFO: Waiting for pod pod-configmaps-5f3fbfcc-6aa3-44a9-aed0-018a3696d507 to disappear +Oct 26 05:27:47.398: INFO: Pod pod-configmaps-5f3fbfcc-6aa3-44a9-aed0-018a3696d507 no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 05:27:47.399: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-1055" for this suite. +•{"msg":"PASSED [sig-storage] ConfigMap should be consumable from pods in volume as non-root [NodeConformance] [Conformance]","total":356,"completed":220,"skipped":3933,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Guestbook application + should create and stop a working application [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:27:47.411: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[It] should create and stop a working application [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating all guestbook components +Oct 26 05:27:47.436: INFO: apiVersion: v1 +kind: Service +metadata: + name: agnhost-replica + labels: + app: agnhost + role: replica + tier: backend +spec: + ports: + - port: 6379 + selector: + app: agnhost + role: replica + tier: backend + +Oct 26 05:27:47.437: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 create -f -' +Oct 26 05:27:48.416: INFO: stderr: "" +Oct 26 05:27:48.416: INFO: stdout: "service/agnhost-replica created\n" +Oct 26 05:27:48.416: INFO: apiVersion: v1 +kind: Service +metadata: + name: agnhost-primary + labels: + app: agnhost + role: primary + tier: backend +spec: + ports: + - port: 6379 + targetPort: 6379 + selector: + app: agnhost + role: primary + tier: backend + +Oct 26 05:27:48.416: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 create -f -' +Oct 26 05:27:48.655: INFO: stderr: "" +Oct 26 05:27:48.655: INFO: stdout: "service/agnhost-primary created\n" +Oct 26 05:27:48.656: INFO: apiVersion: v1 +kind: Service +metadata: + name: frontend + labels: + app: guestbook + tier: frontend +spec: + # if your cluster supports it, uncomment the following to automatically create + # an external load-balanced IP for the frontend service. + # type: LoadBalancer + ports: + - port: 80 + selector: + app: guestbook + tier: frontend + +Oct 26 05:27:48.656: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 create -f -' +Oct 26 05:27:48.840: INFO: stderr: "" +Oct 26 05:27:48.840: INFO: stdout: "service/frontend created\n" +Oct 26 05:27:48.840: INFO: apiVersion: apps/v1 +kind: Deployment +metadata: + name: frontend +spec: + replicas: 3 + selector: + matchLabels: + app: guestbook + tier: frontend + template: + metadata: + labels: + app: guestbook + tier: frontend + spec: + containers: + - name: guestbook-frontend + image: k8s.gcr.io/e2e-test-images/agnhost:2.39 + args: [ "guestbook", "--backend-port", "6379" ] + resources: + requests: + cpu: 100m + memory: 100Mi + ports: + - containerPort: 80 + +Oct 26 05:27:48.840: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 create -f -' +Oct 26 05:27:49.015: INFO: stderr: "" +Oct 26 05:27:49.015: INFO: stdout: "deployment.apps/frontend created\n" +Oct 26 05:27:49.015: INFO: apiVersion: apps/v1 +kind: Deployment +metadata: + name: agnhost-primary +spec: + replicas: 1 + selector: + matchLabels: + app: agnhost + role: primary + tier: backend + template: + metadata: + labels: + app: agnhost + role: primary + tier: backend + spec: + containers: + - name: primary + image: k8s.gcr.io/e2e-test-images/agnhost:2.39 + args: [ "guestbook", "--http-port", "6379" ] + resources: + requests: + cpu: 100m + memory: 100Mi + ports: + - containerPort: 6379 + +Oct 26 05:27:49.015: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 create -f -' +Oct 26 05:27:49.225: INFO: stderr: "" +Oct 26 05:27:49.225: INFO: stdout: "deployment.apps/agnhost-primary created\n" +Oct 26 05:27:49.225: INFO: apiVersion: apps/v1 +kind: Deployment +metadata: + name: agnhost-replica +spec: + replicas: 2 + selector: + matchLabels: + app: agnhost + role: replica + tier: backend + template: + metadata: + labels: + app: agnhost + role: replica + tier: backend + spec: + containers: + - name: replica + image: k8s.gcr.io/e2e-test-images/agnhost:2.39 + args: [ "guestbook", "--replicaof", "agnhost-primary", "--http-port", "6379" ] + resources: + requests: + cpu: 100m + memory: 100Mi + ports: + - containerPort: 6379 + +Oct 26 05:27:49.225: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 create -f -' +Oct 26 05:27:49.419: INFO: stderr: "" +Oct 26 05:27:49.419: INFO: stdout: "deployment.apps/agnhost-replica created\n" +STEP: validating guestbook app +Oct 26 05:27:49.419: INFO: Waiting for all frontend pods to be Running. +Oct 26 05:27:54.471: INFO: Waiting for frontend to serve content. +Oct 26 05:27:54.489: INFO: Trying to add a new entry to the guestbook. +Oct 26 05:27:54.507: INFO: Verifying that added entry can be retrieved. +STEP: using delete to clean up resources +Oct 26 05:27:54.528: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 delete --grace-period=0 --force -f -' +Oct 26 05:27:54.651: INFO: stderr: "warning: Immediate deletion does not wait for confirmation that the running resource has been terminated. The resource may continue to run on the cluster indefinitely.\n" +Oct 26 05:27:54.651: INFO: stdout: "service \"agnhost-replica\" force deleted\n" +STEP: using delete to clean up resources +Oct 26 05:27:54.651: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 delete --grace-period=0 --force -f -' +Oct 26 05:27:54.789: INFO: stderr: "warning: Immediate deletion does not wait for confirmation that the running resource has been terminated. The resource may continue to run on the cluster indefinitely.\n" +Oct 26 05:27:54.789: INFO: stdout: "service \"agnhost-primary\" force deleted\n" +STEP: using delete to clean up resources +Oct 26 05:27:54.790: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 delete --grace-period=0 --force -f -' +Oct 26 05:27:54.876: INFO: stderr: "warning: Immediate deletion does not wait for confirmation that the running resource has been terminated. The resource may continue to run on the cluster indefinitely.\n" +Oct 26 05:27:54.876: INFO: stdout: "service \"frontend\" force deleted\n" +STEP: using delete to clean up resources +Oct 26 05:27:54.876: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 delete --grace-period=0 --force -f -' +Oct 26 05:27:54.940: INFO: stderr: "warning: Immediate deletion does not wait for confirmation that the running resource has been terminated. The resource may continue to run on the cluster indefinitely.\n" +Oct 26 05:27:54.940: INFO: stdout: "deployment.apps \"frontend\" force deleted\n" +STEP: using delete to clean up resources +Oct 26 05:27:54.940: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 delete --grace-period=0 --force -f -' +Oct 26 05:27:55.037: INFO: stderr: "warning: Immediate deletion does not wait for confirmation that the running resource has been terminated. The resource may continue to run on the cluster indefinitely.\n" +Oct 26 05:27:55.037: INFO: stdout: "deployment.apps \"agnhost-primary\" force deleted\n" +STEP: using delete to clean up resources +Oct 26 05:27:55.037: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8418 delete --grace-period=0 --force -f -' +Oct 26 05:27:55.137: INFO: stderr: "warning: Immediate deletion does not wait for confirmation that the running resource has been terminated. The resource may continue to run on the cluster indefinitely.\n" +Oct 26 05:27:55.137: INFO: stdout: "deployment.apps \"agnhost-replica\" force deleted\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 05:27:55.137: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-8418" for this suite. + +• [SLOW TEST:7.738 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Guestbook application + test/e2e/kubectl/kubectl.go:340 + should create and stop a working application [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-cli] Kubectl client Guestbook application should create and stop a working application [Conformance]","total":356,"completed":221,"skipped":3968,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-storage] Projected secret + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:27:55.150: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating projection with secret that has name projected-secret-test-1d425071-1718-4faf-8d0c-829f0ad128e3 +STEP: Creating a pod to test consume secrets +Oct 26 05:27:55.237: INFO: Waiting up to 5m0s for pod "pod-projected-secrets-cc7b9d4a-01cf-47b0-9b09-8eb24f4e42c2" in namespace "projected-2009" to be "Succeeded or Failed" +Oct 26 05:27:55.248: INFO: Pod "pod-projected-secrets-cc7b9d4a-01cf-47b0-9b09-8eb24f4e42c2": Phase="Pending", Reason="", readiness=false. Elapsed: 10.454414ms +Oct 26 05:27:57.256: INFO: Pod "pod-projected-secrets-cc7b9d4a-01cf-47b0-9b09-8eb24f4e42c2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.018430697s +Oct 26 05:27:59.263: INFO: Pod "pod-projected-secrets-cc7b9d4a-01cf-47b0-9b09-8eb24f4e42c2": Phase="Pending", Reason="", readiness=false. Elapsed: 4.025945783s +Oct 26 05:28:01.267: INFO: Pod "pod-projected-secrets-cc7b9d4a-01cf-47b0-9b09-8eb24f4e42c2": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.0296639s +STEP: Saw pod success +Oct 26 05:28:01.267: INFO: Pod "pod-projected-secrets-cc7b9d4a-01cf-47b0-9b09-8eb24f4e42c2" satisfied condition "Succeeded or Failed" +Oct 26 05:28:01.270: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-projected-secrets-cc7b9d4a-01cf-47b0-9b09-8eb24f4e42c2 container projected-secret-volume-test: +STEP: delete the pod +Oct 26 05:28:01.287: INFO: Waiting for pod pod-projected-secrets-cc7b9d4a-01cf-47b0-9b09-8eb24f4e42c2 to disappear +Oct 26 05:28:01.289: INFO: Pod pod-projected-secrets-cc7b9d4a-01cf-47b0-9b09-8eb24f4e42c2 no longer exists +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:188 +Oct 26 05:28:01.289: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-2009" for this suite. + +• [SLOW TEST:6.147 seconds] +[sig-storage] Projected secret +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected secret should be consumable from pods in volume [NodeConformance] [Conformance]","total":356,"completed":222,"skipped":3979,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + should include custom resource definition resources in discovery documents [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:28:01.303: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename custom-resource-definition +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should include custom resource definition resources in discovery documents [Conformance] + test/e2e/framework/framework.go:652 +STEP: fetching the /apis discovery document +STEP: finding the apiextensions.k8s.io API group in the /apis discovery document +STEP: finding the apiextensions.k8s.io/v1 API group/version in the /apis discovery document +STEP: fetching the /apis/apiextensions.k8s.io discovery document +STEP: finding the apiextensions.k8s.io/v1 API group/version in the /apis/apiextensions.k8s.io discovery document +STEP: fetching the /apis/apiextensions.k8s.io/v1 discovery document +STEP: finding customresourcedefinitions resources in the /apis/apiextensions.k8s.io/v1 discovery document +[AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:28:01.328: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "custom-resource-definition-2978" for this suite. +•{"msg":"PASSED [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] should include custom resource definition resources in discovery documents [Conformance]","total":356,"completed":223,"skipped":4028,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should mutate custom resource with pruning [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:28:01.335: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:28:02.075: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Oct 26 05:28:04.088: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 28, 2, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 28, 2, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 28, 2, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 28, 2, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:28:07.107: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should mutate custom resource with pruning [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:28:07.111: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Registering the mutating webhook for custom resource e2e-test-webhook-6086-crds.webhook.example.com via the AdmissionRegistration API +STEP: Creating a custom resource that should be mutated by the webhook +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:28:10.210: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-234" for this suite. +STEP: Destroying namespace "webhook-234-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:8.944 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should mutate custom resource with pruning [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate custom resource with pruning [Conformance]","total":356,"completed":224,"skipped":4070,"failed":0} +SSSSSSSS +------------------------------ +[sig-node] Downward API + should provide default limits.cpu/memory from node allocatable [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Downward API + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:28:10.281: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should provide default limits.cpu/memory from node allocatable [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward api env vars +Oct 26 05:28:10.341: INFO: Waiting up to 5m0s for pod "downward-api-52b9e79d-0edb-42d7-843c-f17f9125f079" in namespace "downward-api-8560" to be "Succeeded or Failed" +Oct 26 05:28:10.351: INFO: Pod "downward-api-52b9e79d-0edb-42d7-843c-f17f9125f079": Phase="Pending", Reason="", readiness=false. Elapsed: 10.1349ms +Oct 26 05:28:12.359: INFO: Pod "downward-api-52b9e79d-0edb-42d7-843c-f17f9125f079": Phase="Pending", Reason="", readiness=false. Elapsed: 2.018305614s +Oct 26 05:28:14.367: INFO: Pod "downward-api-52b9e79d-0edb-42d7-843c-f17f9125f079": Phase="Pending", Reason="", readiness=false. Elapsed: 4.025585543s +Oct 26 05:28:16.373: INFO: Pod "downward-api-52b9e79d-0edb-42d7-843c-f17f9125f079": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.032340964s +STEP: Saw pod success +Oct 26 05:28:16.373: INFO: Pod "downward-api-52b9e79d-0edb-42d7-843c-f17f9125f079" satisfied condition "Succeeded or Failed" +Oct 26 05:28:16.375: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downward-api-52b9e79d-0edb-42d7-843c-f17f9125f079 container dapi-container: +STEP: delete the pod +Oct 26 05:28:16.388: INFO: Waiting for pod downward-api-52b9e79d-0edb-42d7-843c-f17f9125f079 to disappear +Oct 26 05:28:16.391: INFO: Pod downward-api-52b9e79d-0edb-42d7-843c-f17f9125f079 no longer exists +[AfterEach] [sig-node] Downward API + test/e2e/framework/framework.go:188 +Oct 26 05:28:16.391: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-8560" for this suite. + +• [SLOW TEST:6.119 seconds] +[sig-node] Downward API +test/e2e/common/node/framework.go:23 + should provide default limits.cpu/memory from node allocatable [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Downward API should provide default limits.cpu/memory from node allocatable [NodeConformance] [Conformance]","total":356,"completed":225,"skipped":4078,"failed":0} +SSSSSSS +------------------------------ +[sig-node] RuntimeClass + should reject a Pod requesting a non-existent RuntimeClass [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:28:16.402: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename runtimeclass +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should reject a Pod requesting a non-existent RuntimeClass [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-node] RuntimeClass + test/e2e/framework/framework.go:188 +Oct 26 05:28:16.425: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "runtimeclass-9477" for this suite. +•{"msg":"PASSED [sig-node] RuntimeClass should reject a Pod requesting a non-existent RuntimeClass [NodeConformance] [Conformance]","total":356,"completed":226,"skipped":4085,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] ConfigMap + should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:28:16.433: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable via the environment [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap configmap-8732/configmap-test-dc48caad-089a-482d-8569-8e47ec3c9221 +STEP: Creating a pod to test consume configMaps +Oct 26 05:28:16.456: INFO: Waiting up to 5m0s for pod "pod-configmaps-92f6b296-fecf-4344-8989-eeed455c9a35" in namespace "configmap-8732" to be "Succeeded or Failed" +Oct 26 05:28:16.459: INFO: Pod "pod-configmaps-92f6b296-fecf-4344-8989-eeed455c9a35": Phase="Pending", Reason="", readiness=false. Elapsed: 2.984764ms +Oct 26 05:28:18.464: INFO: Pod "pod-configmaps-92f6b296-fecf-4344-8989-eeed455c9a35": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008138192s +Oct 26 05:28:20.469: INFO: Pod "pod-configmaps-92f6b296-fecf-4344-8989-eeed455c9a35": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.01298249s +STEP: Saw pod success +Oct 26 05:28:20.469: INFO: Pod "pod-configmaps-92f6b296-fecf-4344-8989-eeed455c9a35" satisfied condition "Succeeded or Failed" +Oct 26 05:28:20.472: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-configmaps-92f6b296-fecf-4344-8989-eeed455c9a35 container env-test: +STEP: delete the pod +Oct 26 05:28:20.483: INFO: Waiting for pod pod-configmaps-92f6b296-fecf-4344-8989-eeed455c9a35 to disappear +Oct 26 05:28:20.485: INFO: Pod pod-configmaps-92f6b296-fecf-4344-8989-eeed455c9a35 no longer exists +[AfterEach] [sig-node] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 05:28:20.485: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-8732" for this suite. +•{"msg":"PASSED [sig-node] ConfigMap should be consumable via the environment [NodeConformance] [Conformance]","total":356,"completed":227,"skipped":4116,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-apps] Deployment + deployment should support proportional scaling [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:28:20.496: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename deployment +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] deployment should support proportional scaling [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:28:20.516: INFO: Creating deployment "webserver-deployment" +Oct 26 05:28:20.518: INFO: Waiting for observed generation 1 +Oct 26 05:28:22.589: INFO: Waiting for all required pods to come up +Oct 26 05:28:22.620: INFO: Pod name httpd: Found 10 pods out of 10 +STEP: ensuring each pod is running +Oct 26 05:28:26.635: INFO: Waiting for deployment "webserver-deployment" to complete +Oct 26 05:28:26.638: INFO: Updating deployment "webserver-deployment" with a non-existent image +Oct 26 05:28:26.645: INFO: Updating deployment webserver-deployment +Oct 26 05:28:26.645: INFO: Waiting for observed generation 2 +Oct 26 05:28:28.705: INFO: Waiting for the first rollout's replicaset to have .status.availableReplicas = 8 +Oct 26 05:28:28.728: INFO: Waiting for the first rollout's replicaset to have .spec.replicas = 8 +Oct 26 05:28:28.730: INFO: Waiting for the first rollout's replicaset of deployment "webserver-deployment" to have desired number of replicas +Oct 26 05:28:28.736: INFO: Verifying that the second rollout's replicaset has .status.availableReplicas = 0 +Oct 26 05:28:28.736: INFO: Waiting for the second rollout's replicaset to have .spec.replicas = 5 +Oct 26 05:28:28.753: INFO: Waiting for the second rollout's replicaset of deployment "webserver-deployment" to have desired number of replicas +Oct 26 05:28:28.758: INFO: Verifying that deployment "webserver-deployment" has minimum required number of available replicas +Oct 26 05:28:28.758: INFO: Scaling up the deployment "webserver-deployment" from 10 to 30 +Oct 26 05:28:28.767: INFO: Updating deployment webserver-deployment +Oct 26 05:28:28.767: INFO: Waiting for the replicasets of deployment "webserver-deployment" to have desired number of replicas +Oct 26 05:28:28.794: INFO: Verifying that first rollout's replicaset has .spec.replicas = 20 +Oct 26 05:28:30.845: INFO: Verifying that second rollout's replicaset has .spec.replicas = 13 +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Oct 26 05:28:30.875: INFO: Deployment "webserver-deployment": +&Deployment{ObjectMeta:{webserver-deployment deployment-260 35dd7a1e-46ba-4eee-84d3-f350b64d1718 24157 3 2022-10-26 05:28:20 +0000 UTC map[name:httpd] map[deployment.kubernetes.io/revision:2] [] [] [{e2e.test Update apps/v1 2022-10-26 05:28:20 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:progressDeadlineSeconds":{},"f:replicas":{},"f:revisionHistoryLimit":{},"f:selector":{},"f:strategy":{"f:rollingUpdate":{".":{},"f:maxSurge":{},"f:maxUnavailable":{}},"f:type":{}},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:28:26 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/revision":{}}},"f:status":{"f:availableReplicas":{},"f:conditions":{".":{},"k:{\"type\":\"Available\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Progressing\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{},"f:unavailableReplicas":{},"f:updatedReplicas":{}}} status}]},Spec:DeploymentSpec{Replicas:*30,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: httpd,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:httpd] map[] [] [] []} {[] [] [{httpd webserver:404 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc002766738 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},Strategy:DeploymentStrategy{Type:RollingUpdate,RollingUpdate:&RollingUpdateDeployment{MaxUnavailable:2,MaxSurge:3,},},MinReadySeconds:0,RevisionHistoryLimit:*10,Paused:false,ProgressDeadlineSeconds:*600,},Status:DeploymentStatus{ObservedGeneration:3,Replicas:33,UpdatedReplicas:13,AvailableReplicas:8,UnavailableReplicas:25,Conditions:[]DeploymentCondition{DeploymentCondition{Type:Available,Status:False,Reason:MinimumReplicasUnavailable,Message:Deployment does not have minimum availability.,LastUpdateTime:2022-10-26 05:28:28 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:ReplicaSetUpdated,Message:ReplicaSet "webserver-deployment-57ccb67bb8" is progressing.,LastUpdateTime:2022-10-26 05:28:28 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,},},ReadyReplicas:8,CollisionCount:nil,},} + +Oct 26 05:28:30.878: INFO: New ReplicaSet "webserver-deployment-57ccb67bb8" of Deployment "webserver-deployment": +&ReplicaSet{ObjectMeta:{webserver-deployment-57ccb67bb8 deployment-260 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 24149 3 2022-10-26 05:28:26 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[deployment.kubernetes.io/desired-replicas:30 deployment.kubernetes.io/max-replicas:33 deployment.kubernetes.io/revision:2] [{apps/v1 Deployment webserver-deployment 35dd7a1e-46ba-4eee-84d3-f350b64d1718 0xc0048ea897 0xc0048ea898}] [] [{kube-controller-manager Update apps/v1 2022-10-26 05:28:26 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"35dd7a1e-46ba-4eee-84d3-f350b64d1718\"}":{}}},"f:spec":{"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:28:26 +0000 UTC FieldsV1 {"f:status":{"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*13,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: httpd,pod-template-hash: 57ccb67bb8,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [] [] []} {[] [] [{httpd webserver:404 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0048ea938 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:13,FullyLabeledReplicas:13,ObservedGeneration:3,ReadyReplicas:0,AvailableReplicas:0,Conditions:[]ReplicaSetCondition{},},} +Oct 26 05:28:30.878: INFO: All old ReplicaSets of Deployment "webserver-deployment": +Oct 26 05:28:30.878: INFO: &ReplicaSet{ObjectMeta:{webserver-deployment-55df494869 deployment-260 71f06b13-fef5-45b7-a813-273e06fb87de 24156 3 2022-10-26 05:28:20 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[deployment.kubernetes.io/desired-replicas:30 deployment.kubernetes.io/max-replicas:33 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment webserver-deployment 35dd7a1e-46ba-4eee-84d3-f350b64d1718 0xc0048ea7a7 0xc0048ea7a8}] [] [{kube-controller-manager Update apps/v1 2022-10-26 05:28:20 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"35dd7a1e-46ba-4eee-84d3-f350b64d1718\"}":{}}},"f:spec":{"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:28:23 +0000 UTC FieldsV1 {"f:status":{"f:availableReplicas":{},"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*20,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: httpd,pod-template-hash: 55df494869,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [] [] []} {[] [] [{httpd k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0048ea838 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:20,FullyLabeledReplicas:20,ObservedGeneration:3,ReadyReplicas:8,AvailableReplicas:8,Conditions:[]ReplicaSetCondition{},},} +Oct 26 05:28:30.883: INFO: Pod "webserver-deployment-55df494869-2f66x" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-2f66x webserver-deployment-55df494869- deployment-260 9d3b77b6-c8e3-40d8-a78c-915211bec3b8 24137 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc0048eae57 0xc0048eae58}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} }]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-xt4fx,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-xt4fx,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:,PodIP:,StartTime:,ContainerStatuses:[]ContainerStatus{},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.884: INFO: Pod "webserver-deployment-55df494869-4b2h7" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-4b2h7 webserver-deployment-55df494869- deployment-260 5814d75d-4179-4157-922e-b1e7045822bc 24163 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc0048eafb0 0xc0048eafb1}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:29 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-q2m9q,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-q2m9q,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-0ac1bb196421f13a1,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.86.64,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.885: INFO: Pod "webserver-deployment-55df494869-4nqrm" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-4nqrm webserver-deployment-55df494869- deployment-260 e5fe0852-5410-4350-a08c-a924219fe44c 24104 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc0048eb167 0xc0048eb168}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-wks2q,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-wks2q,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.885: INFO: Pod "webserver-deployment-55df494869-5fq8x" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-5fq8x webserver-deployment-55df494869- deployment-260 0bdfc2aa-7823-4644-b3a8-2f26d67b9d3d 24125 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc0048eb327 0xc0048eb328}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-27r6t,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-27r6t,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.886: INFO: Pod "webserver-deployment-55df494869-82ppb" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-82ppb webserver-deployment-55df494869- deployment-260 4375e804-5a7d-49bb-bd80-2700f140b5f0 24143 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc0048eb4e7 0xc0048eb4e8}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-rzcsw,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-rzcsw,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-0ac1bb196421f13a1,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.86.64,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.886: INFO: Pod "webserver-deployment-55df494869-8k46c" is available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-8k46c webserver-deployment-55df494869- deployment-260 3c6d63a7-c13c-4c23-b5ec-1f95adde6f42 24012 0 2022-10-26 05:28:20 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc0048eb6a7 0xc0048eb6a8}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:20 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:24 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.1.189\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-vsw9b,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-vsw9b,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:100.96.1.189,StartTime:2022-10-26 05:28:20 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:28:23 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://b3e0a878385088547c9ff5abd82521a9acc9415df1dea6df0508788d9f50a4db,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.1.189,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.886: INFO: Pod "webserver-deployment-55df494869-f5n9p" is available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-f5n9p webserver-deployment-55df494869- deployment-260 ff545fbe-5ccf-4b5c-af83-e4bcfd1f4020 24008 0 2022-10-26 05:28:20 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc0048eb887 0xc0048eb888}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:20 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:24 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.1.6\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-vg5wl,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-vg5wl,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:100.96.1.6,StartTime:2022-10-26 05:28:20 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:28:23 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://813361b3aad28d5457c95fccdabd61cef88f95f0ff2a54bffab30d809eed46a5,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.1.6,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.887: INFO: Pod "webserver-deployment-55df494869-hdcg9" is available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-hdcg9 webserver-deployment-55df494869- deployment-260 432824ff-8495-4653-ac73-b8903c78df0a 24021 0 2022-10-26 05:28:20 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc0048eba60 0xc0048eba61}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:20 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:24 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.2.42\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-xq2k8,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-xq2k8,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:100.96.2.42,StartTime:2022-10-26 05:28:20 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:28:24 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://02252eac09f715ee938873620d0ff258a11293515a1379c72b4092982f161f1d,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.2.42,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.887: INFO: Pod "webserver-deployment-55df494869-j2w5c" is available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-j2w5c webserver-deployment-55df494869- deployment-260 70f04640-f257-4f08-acdc-4df9bc2fb4fb 24026 0 2022-10-26 05:28:20 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc0048ebc30 0xc0048ebc31}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:20 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:24 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.3.118\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-h5wbl,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-h5wbl,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-0ac1bb196421f13a1,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.86.64,PodIP:100.96.3.118,StartTime:2022-10-26 05:28:20 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:28:23 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://fb51fa5d42156d1b242160192c005eb28244268bfded6273ba624c02f47ed798,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.3.118,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.888: INFO: Pod "webserver-deployment-55df494869-j8xt4" is available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-j8xt4 webserver-deployment-55df494869- deployment-260 15fcdcda-3c7e-4272-bed3-e1c1b59698af 24010 0 2022-10-26 05:28:20 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc0048ebe07 0xc0048ebe08}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:20 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:24 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.1.237\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-7zjrj,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-7zjrj,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:100.96.1.237,StartTime:2022-10-26 05:28:20 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:28:23 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://a7afefb968a2ed131fbb112b1c257c27272a8203ee6e524965770db9b47fa810,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.1.237,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.888: INFO: Pod "webserver-deployment-55df494869-lhwf2" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-lhwf2 webserver-deployment-55df494869- deployment-260 a4ce1f0d-fa5a-46c5-8594-ebd74740bdda 24182 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc0048ebfe7 0xc0048ebfe8}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:30 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-pb9f5,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-pb9f5,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.888: INFO: Pod "webserver-deployment-55df494869-mwvfk" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-mwvfk webserver-deployment-55df494869- deployment-260 57f1e621-3956-44e8-bb94-e96a8b1780ec 24151 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc00083c997 0xc00083c998}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-kqb8s,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-kqb8s,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.889: INFO: Pod "webserver-deployment-55df494869-nl52m" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-nl52m webserver-deployment-55df494869- deployment-260 07e05c9a-0872-432b-97ff-82fb91c8bcf4 24177 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc00083cbf7 0xc00083cbf8}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:30 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-l6svs,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-l6svs,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.890: INFO: Pod "webserver-deployment-55df494869-p5mcc" is available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-p5mcc webserver-deployment-55df494869- deployment-260 488d48b6-cae8-4503-acae-6962f56909a2 23995 0 2022-10-26 05:28:20 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc004c16027 0xc004c16028}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:20 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:23 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.3.210\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-k8zzz,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-k8zzz,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-0ac1bb196421f13a1,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:23 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:23 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.86.64,PodIP:100.96.3.210,StartTime:2022-10-26 05:28:20 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:28:23 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://1bab2b17580eb167d7a3852d680176ead4b36b9c3891ef18ad40bd4a24456126,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.3.210,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.890: INFO: Pod "webserver-deployment-55df494869-rc4mf" is available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-rc4mf webserver-deployment-55df494869- deployment-260 0682162e-5111-42d0-998b-04118cbca164 24018 0 2022-10-26 05:28:20 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc004c16207 0xc004c16208}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:20 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:24 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.2.9\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-c7zf5,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-c7zf5,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:24 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:100.96.2.9,StartTime:2022-10-26 05:28:20 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:28:24 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://ac97bc81f615cbef144f21679a7ad2c41a59de8bf6a126049ff5955bb66a53f3,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.2.9,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.891: INFO: Pod "webserver-deployment-55df494869-rhzrj" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-rhzrj webserver-deployment-55df494869- deployment-260 fe436cab-25f1-4fdd-8f3e-45318309973f 24154 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc004c163e0 0xc004c163e1}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:29 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-ncdrn,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-ncdrn,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-0ac1bb196421f13a1,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.86.64,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.891: INFO: Pod "webserver-deployment-55df494869-rpwn7" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-rpwn7 webserver-deployment-55df494869- deployment-260 0419b682-f2c1-436b-9c88-1753856176a0 24147 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc004c165a7 0xc004c165a8}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-hdmvw,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-hdmvw,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.891: INFO: Pod "webserver-deployment-55df494869-sxgd5" is available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-sxgd5 webserver-deployment-55df494869- deployment-260 0c68909b-b50a-4fc5-bf8c-b2e95f5ca1b4 23998 0 2022-10-26 05:28:20 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc004c16787 0xc004c16788}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:20 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:23 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.3.200\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-6xk8n,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-6xk8n,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-0ac1bb196421f13a1,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:23 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:23 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:20 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.86.64,PodIP:100.96.3.200,StartTime:2022-10-26 05:28:20 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:28:23 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://f34a3e8b9cdfca9dbf27814139bfc5ab65bb8aaf2c584e677a38cad3c83acb1e,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.3.200,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.892: INFO: Pod "webserver-deployment-55df494869-th9pd" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-th9pd webserver-deployment-55df494869- deployment-260 25943d60-2a49-49dc-aded-f088e9bbd9c1 24150 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc004c16977 0xc004c16978}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-lkmx4,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-lkmx4,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.892: INFO: Pod "webserver-deployment-55df494869-v8448" is not available: +&Pod{ObjectMeta:{webserver-deployment-55df494869-v8448 webserver-deployment-55df494869- deployment-260 93e55474-a2b8-45e2-a8ce-c71202f22649 24135 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet webserver-deployment-55df494869 71f06b13-fef5-45b7-a813-273e06fb87de 0xc004c16b57 0xc004c16b58}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"71f06b13-fef5-45b7-a813-273e06fb87de\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-kbnqd,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-kbnqd,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.893: INFO: Pod "webserver-deployment-57ccb67bb8-8qswm" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-8qswm webserver-deployment-57ccb67bb8- deployment-260 b80d2c82-d4df-446d-b908-226be73cfb1e 24155 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc004c16d17 0xc004c16d18}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:29 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-zdpc9,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-zdpc9,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.893: INFO: Pod "webserver-deployment-57ccb67bb8-dgmqm" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-dgmqm webserver-deployment-57ccb67bb8- deployment-260 349bed16-2ea4-4045-9303-c90fa37ca198 24123 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc004c16ef7 0xc004c16ef8}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-jj9xb,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-jj9xb,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-0ac1bb196421f13a1,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.86.64,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.893: INFO: Pod "webserver-deployment-57ccb67bb8-fdwds" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-fdwds webserver-deployment-57ccb67bb8- deployment-260 21b80433-2bc9-4117-92f5-fb863533d60f 24158 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc004c170d7 0xc004c170d8}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:29 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-brq6d,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-brq6d,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.894: INFO: Pod "webserver-deployment-57ccb67bb8-h4d67" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-h4d67 webserver-deployment-57ccb67bb8- deployment-260 12d48efe-892f-4df4-8581-dd171394f75f 24187 0 2022-10-26 05:28:26 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc004c172c7 0xc004c172c8}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:26 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:30 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.1.117\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-44zwg,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-44zwg,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:100.96.1.117,StartTime:2022-10-26 05:28:26 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ErrImagePull,Message:rpc error: code = Unknown desc = failed to pull and unpack image "docker.io/library/webserver:404": failed to resolve reference "docker.io/library/webserver:404": pull access denied, repository does not exist or may require authorization: server message: insufficient_scope: authorization failed,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.1.117,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.894: INFO: Pod "webserver-deployment-57ccb67bb8-m4t4m" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-m4t4m webserver-deployment-57ccb67bb8- deployment-260 7e6f1a5d-25fe-41e9-810a-061c5ca877b4 24057 0 2022-10-26 05:28:26 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc004c174d7 0xc004c174d8}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:26 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:26 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-288hr,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-288hr,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:,StartTime:2022-10-26 05:28:26 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.894: INFO: Pod "webserver-deployment-57ccb67bb8-n7w2v" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-n7w2v webserver-deployment-57ccb67bb8- deployment-260 f8795c01-2f6e-4c03-a333-d30b03fb58af 24153 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc004c176b7 0xc004c176b8}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-r6w5w,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-r6w5w,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-0ac1bb196421f13a1,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.86.64,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.895: INFO: Pod "webserver-deployment-57ccb67bb8-qcbpd" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-qcbpd webserver-deployment-57ccb67bb8- deployment-260 e31e2c06-64ba-4667-91ef-aa11776ee816 24145 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc004c17897 0xc004c17898}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-fqhmc,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-fqhmc,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.895: INFO: Pod "webserver-deployment-57ccb67bb8-r7gqt" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-r7gqt webserver-deployment-57ccb67bb8- deployment-260 e6aa8861-df6c-4236-a9eb-7b96f1fe120e 24148 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc004c17a77 0xc004c17a78}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-b7dqs,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-b7dqs,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-0ac1bb196421f13a1,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.86.64,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.896: INFO: Pod "webserver-deployment-57ccb67bb8-x88t5" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-x88t5 webserver-deployment-57ccb67bb8- deployment-260 ffdb8c98-8415-4445-b44d-add76ba011e9 24080 0 2022-10-26 05:28:26 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc004c17c57 0xc004c17c58}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:26 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:26 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-q8h6l,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-q8h6l,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:,StartTime:2022-10-26 05:28:26 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.896: INFO: Pod "webserver-deployment-57ccb67bb8-xxttx" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-xxttx webserver-deployment-57ccb67bb8- deployment-260 3bc9b2f7-0df9-4392-b27d-898f9ee7678f 24185 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc004c17e37 0xc004c17e38}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:30 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-bc429,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-bc429,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:,StartTime:2022-10-26 05:28:28 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.896: INFO: Pod "webserver-deployment-57ccb67bb8-zdszt" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-zdszt webserver-deployment-57ccb67bb8- deployment-260 afec66f0-63a6-42e0-bb43-7e95f342588a 24146 0 2022-10-26 05:28:28 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc0036e6157 0xc0036e6158}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:28 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} }]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-jbjkz,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-jbjkz,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:28 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:,PodIP:,StartTime:,ContainerStatuses:[]ContainerStatus{},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.897: INFO: Pod "webserver-deployment-57ccb67bb8-zg45n" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-zg45n webserver-deployment-57ccb67bb8- deployment-260 48a110a3-8d42-4c37-9752-20fd78f10d91 24067 0 2022-10-26 05:28:26 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc0036e6a00 0xc0036e6a01}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:26 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:26 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-s6rc9,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-s6rc9,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.54.156,PodIP:,StartTime:2022-10-26 05:28:26 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ContainerCreating,Message:,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:28:30.897: INFO: Pod "webserver-deployment-57ccb67bb8-znzgl" is not available: +&Pod{ObjectMeta:{webserver-deployment-57ccb67bb8-znzgl webserver-deployment-57ccb67bb8- deployment-260 bfee8f20-a512-41f7-8bfa-6d70b083d83c 24186 0 2022-10-26 05:28:26 +0000 UTC map[name:httpd pod-template-hash:57ccb67bb8] map[] [{apps/v1 ReplicaSet webserver-deployment-57ccb67bb8 46c3ce6f-6622-4e78-9f6f-249373c7b6fe 0xc0036e7657 0xc0036e7658}] [] [{kube-controller-manager Update v1 2022-10-26 05:28:26 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"46c3ce6f-6622-4e78-9f6f-249373c7b6fe\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:28:30 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.3.194\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-v2ksz,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:webserver:404,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-v2ksz,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-0ac1bb196421f13a1,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:ContainersReady,Status:False,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:ContainersNotReady,Message:containers with unready status: [httpd],},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:28:26 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.86.64,PodIP:100.96.3.194,StartTime:2022-10-26 05:28:26 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:&ContainerStateWaiting{Reason:ErrImagePull,Message:rpc error: code = Unknown desc = failed to pull and unpack image "docker.io/library/webserver:404": failed to resolve reference "docker.io/library/webserver:404": pull access denied, repository does not exist or may require authorization: server message: insufficient_scope: authorization failed,},Running:nil,Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:false,RestartCount:0,Image:webserver:404,ImageID:,ContainerID:,Started:*false,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.3.194,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/framework.go:188 +Oct 26 05:28:30.898: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "deployment-260" for this suite. + +• [SLOW TEST:10.411 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + deployment should support proportional scaling [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Deployment deployment should support proportional scaling [Conformance]","total":356,"completed":228,"skipped":4127,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + binary data should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:28:30.907: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] binary data should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name configmap-test-upd-9128bbfa-e12a-4e8f-a4a0-6aba1dfac232 +STEP: Creating the pod +STEP: Waiting for pod with text data +STEP: Waiting for pod with binary data +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 05:28:43.268: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-9495" for this suite. + +• [SLOW TEST:12.374 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + binary data should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] ConfigMap binary data should be reflected in volume [NodeConformance] [Conformance]","total":356,"completed":229,"skipped":4174,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] DNS + should provide /etc/hosts entries for the cluster [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] DNS + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:28:43.284: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename dns +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should provide /etc/hosts entries for the cluster [Conformance] + test/e2e/framework/framework.go:652 +STEP: Running these commands on wheezy: for i in `seq 1 600`; do test -n "$$(getent hosts dns-querier-1.dns-test-service.dns-6868.svc.cluster.local)" && echo OK > /results/wheezy_hosts@dns-querier-1.dns-test-service.dns-6868.svc.cluster.local;test -n "$$(getent hosts dns-querier-1)" && echo OK > /results/wheezy_hosts@dns-querier-1;sleep 1; done + +STEP: Running these commands on jessie: for i in `seq 1 600`; do test -n "$$(getent hosts dns-querier-1.dns-test-service.dns-6868.svc.cluster.local)" && echo OK > /results/jessie_hosts@dns-querier-1.dns-test-service.dns-6868.svc.cluster.local;test -n "$$(getent hosts dns-querier-1)" && echo OK > /results/jessie_hosts@dns-querier-1;sleep 1; done + +STEP: creating a pod to probe /etc/hosts +STEP: submitting the pod to kubernetes +STEP: retrieving the pod +STEP: looking for the results for each expected name from probers +Oct 26 05:28:47.359: INFO: DNS probes using dns-6868/dns-test-4ed545e2-a4eb-4231-9ab1-82bea52dffd1 succeeded + +STEP: deleting the pod +[AfterEach] [sig-network] DNS + test/e2e/framework/framework.go:188 +Oct 26 05:28:47.370: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "dns-6868" for this suite. +•{"msg":"PASSED [sig-network] DNS should provide /etc/hosts entries for the cluster [Conformance]","total":356,"completed":230,"skipped":4260,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should find a service from listing all namespaces [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:28:47.384: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should find a service from listing all namespaces [Conformance] + test/e2e/framework/framework.go:652 +STEP: fetching services +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 05:28:47.407: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-2278" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 +•{"msg":"PASSED [sig-network] Services should find a service from listing all namespaces [Conformance]","total":356,"completed":231,"skipped":4275,"failed":0} +SSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:28:47.414: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0666 on node default medium +Oct 26 05:28:47.436: INFO: Waiting up to 5m0s for pod "pod-c1a949fe-219e-4e4a-96c9-82633c5834ae" in namespace "emptydir-8669" to be "Succeeded or Failed" +Oct 26 05:28:47.439: INFO: Pod "pod-c1a949fe-219e-4e4a-96c9-82633c5834ae": Phase="Pending", Reason="", readiness=false. Elapsed: 2.726928ms +Oct 26 05:28:49.447: INFO: Pod "pod-c1a949fe-219e-4e4a-96c9-82633c5834ae": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010516885s +Oct 26 05:28:51.452: INFO: Pod "pod-c1a949fe-219e-4e4a-96c9-82633c5834ae": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015383586s +Oct 26 05:28:53.459: INFO: Pod "pod-c1a949fe-219e-4e4a-96c9-82633c5834ae": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.022727063s +STEP: Saw pod success +Oct 26 05:28:53.459: INFO: Pod "pod-c1a949fe-219e-4e4a-96c9-82633c5834ae" satisfied condition "Succeeded or Failed" +Oct 26 05:28:53.461: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-c1a949fe-219e-4e4a-96c9-82633c5834ae container test-container: +STEP: delete the pod +Oct 26 05:28:53.476: INFO: Waiting for pod pod-c1a949fe-219e-4e4a-96c9-82633c5834ae to disappear +Oct 26 05:28:53.478: INFO: Pod pod-c1a949fe-219e-4e4a-96c9-82633c5834ae no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 05:28:53.478: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-8669" for this suite. + +• [SLOW TEST:6.070 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] EmptyDir volumes should support (root,0666,default) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":232,"skipped":4283,"failed":0} +SS +------------------------------ +[sig-api-machinery] ResourceQuota + should verify ResourceQuota with terminating scopes. [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:28:53.486: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename resourcequota +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should verify ResourceQuota with terminating scopes. [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a ResourceQuota with terminating scope +STEP: Ensuring ResourceQuota status is calculated +STEP: Creating a ResourceQuota with not terminating scope +STEP: Ensuring ResourceQuota status is calculated +STEP: Creating a long running pod +STEP: Ensuring resource quota with not terminating scope captures the pod usage +STEP: Ensuring resource quota with terminating scope ignored the pod usage +STEP: Deleting the pod +STEP: Ensuring resource quota status released the pod usage +STEP: Creating a terminating pod +STEP: Ensuring resource quota with terminating scope captures the pod usage +STEP: Ensuring resource quota with not terminating scope ignored the pod usage +STEP: Deleting the pod +STEP: Ensuring resource quota status released the pod usage +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:188 +Oct 26 05:29:09.607: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "resourcequota-9223" for this suite. + +• [SLOW TEST:16.128 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should verify ResourceQuota with terminating scopes. [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] ResourceQuota should verify ResourceQuota with terminating scopes. [Conformance]","total":356,"completed":233,"skipped":4285,"failed":0} +SSS +------------------------------ +[sig-api-machinery] Watchers + should observe an object deletion if it stops meeting the requirements of the selector [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Watchers + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:29:09.614: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename watch +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should observe an object deletion if it stops meeting the requirements of the selector [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a watch on configmaps with a certain label +STEP: creating a new configmap +STEP: modifying the configmap once +STEP: changing the label value of the configmap +STEP: Expecting to observe a delete notification for the watched object +Oct 26 05:29:09.645: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3072 759aeb5f-1200-4b48-b5f1-ee254cc7d76b 24571 0 2022-10-26 05:29:09 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2022-10-26 05:29:09 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 05:29:09.645: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3072 759aeb5f-1200-4b48-b5f1-ee254cc7d76b 24572 0 2022-10-26 05:29:09 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2022-10-26 05:29:09 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 1,},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 05:29:09.645: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3072 759aeb5f-1200-4b48-b5f1-ee254cc7d76b 24573 0 2022-10-26 05:29:09 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2022-10-26 05:29:09 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 1,},BinaryData:map[string][]byte{},Immutable:nil,} +STEP: modifying the configmap a second time +STEP: Expecting not to observe a notification because the object no longer meets the selector's requirements +STEP: changing the label value of the configmap back +STEP: modifying the configmap a third time +STEP: deleting the configmap +STEP: Expecting to observe an add notification for the watched object when the label value was restored +Oct 26 05:29:19.669: INFO: Got : ADDED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3072 759aeb5f-1200-4b48-b5f1-ee254cc7d76b 24621 0 2022-10-26 05:29:09 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2022-10-26 05:29:09 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 2,},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 05:29:19.669: INFO: Got : MODIFIED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3072 759aeb5f-1200-4b48-b5f1-ee254cc7d76b 24622 0 2022-10-26 05:29:09 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2022-10-26 05:29:09 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 3,},BinaryData:map[string][]byte{},Immutable:nil,} +Oct 26 05:29:19.669: INFO: Got : DELETED &ConfigMap{ObjectMeta:{e2e-watch-test-label-changed watch-3072 759aeb5f-1200-4b48-b5f1-ee254cc7d76b 24623 0 2022-10-26 05:29:09 +0000 UTC map[watch-this-configmap:label-changed-and-restored] map[] [] [] [{e2e.test Update v1 2022-10-26 05:29:09 +0000 UTC FieldsV1 {"f:data":{".":{},"f:mutation":{}},"f:metadata":{"f:labels":{".":{},"f:watch-this-configmap":{}}}} }]},Data:map[string]string{mutation: 3,},BinaryData:map[string][]byte{},Immutable:nil,} +[AfterEach] [sig-api-machinery] Watchers + test/e2e/framework/framework.go:188 +Oct 26 05:29:19.669: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "watch-3072" for this suite. + +• [SLOW TEST:10.062 seconds] +[sig-api-machinery] Watchers +test/e2e/apimachinery/framework.go:23 + should observe an object deletion if it stops meeting the requirements of the selector [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] Watchers should observe an object deletion if it stops meeting the requirements of the selector [Conformance]","total":356,"completed":234,"skipped":4288,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should allow substituting values in a container's command [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:29:19.679: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename var-expansion +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should allow substituting values in a container's command [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test substitution in container's command +Oct 26 05:29:19.707: INFO: Waiting up to 5m0s for pod "var-expansion-394a719a-d055-4310-abf3-f560a4221989" in namespace "var-expansion-4990" to be "Succeeded or Failed" +Oct 26 05:29:19.711: INFO: Pod "var-expansion-394a719a-d055-4310-abf3-f560a4221989": Phase="Pending", Reason="", readiness=false. Elapsed: 3.696731ms +Oct 26 05:29:21.717: INFO: Pod "var-expansion-394a719a-d055-4310-abf3-f560a4221989": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010078673s +Oct 26 05:29:23.722: INFO: Pod "var-expansion-394a719a-d055-4310-abf3-f560a4221989": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01474848s +Oct 26 05:29:25.729: INFO: Pod "var-expansion-394a719a-d055-4310-abf3-f560a4221989": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.022281283s +STEP: Saw pod success +Oct 26 05:29:25.729: INFO: Pod "var-expansion-394a719a-d055-4310-abf3-f560a4221989" satisfied condition "Succeeded or Failed" +Oct 26 05:29:25.732: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod var-expansion-394a719a-d055-4310-abf3-f560a4221989 container dapi-container: +STEP: delete the pod +Oct 26 05:29:25.745: INFO: Waiting for pod var-expansion-394a719a-d055-4310-abf3-f560a4221989 to disappear +Oct 26 05:29:25.748: INFO: Pod var-expansion-394a719a-d055-4310-abf3-f560a4221989 no longer exists +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:188 +Oct 26 05:29:25.748: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "var-expansion-4990" for this suite. + +• [SLOW TEST:6.079 seconds] +[sig-node] Variable Expansion +test/e2e/common/node/framework.go:23 + should allow substituting values in a container's command [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Variable Expansion should allow substituting values in a container's command [NodeConformance] [Conformance]","total":356,"completed":235,"skipped":4328,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:29:25.759: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name projected-configmap-test-volume-map-02636576-5648-45e3-b7f8-e7de416c70e9 +STEP: Creating a pod to test consume configMaps +Oct 26 05:29:25.781: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-73cc3e41-3dd3-498a-bce4-8a4203fb1eca" in namespace "projected-9363" to be "Succeeded or Failed" +Oct 26 05:29:25.785: INFO: Pod "pod-projected-configmaps-73cc3e41-3dd3-498a-bce4-8a4203fb1eca": Phase="Pending", Reason="", readiness=false. Elapsed: 4.584727ms +Oct 26 05:29:27.791: INFO: Pod "pod-projected-configmaps-73cc3e41-3dd3-498a-bce4-8a4203fb1eca": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010314062s +Oct 26 05:29:29.798: INFO: Pod "pod-projected-configmaps-73cc3e41-3dd3-498a-bce4-8a4203fb1eca": Phase="Pending", Reason="", readiness=false. Elapsed: 4.017378055s +Oct 26 05:29:31.808: INFO: Pod "pod-projected-configmaps-73cc3e41-3dd3-498a-bce4-8a4203fb1eca": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.027678992s +STEP: Saw pod success +Oct 26 05:29:31.809: INFO: Pod "pod-projected-configmaps-73cc3e41-3dd3-498a-bce4-8a4203fb1eca" satisfied condition "Succeeded or Failed" +Oct 26 05:29:31.811: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-projected-configmaps-73cc3e41-3dd3-498a-bce4-8a4203fb1eca container agnhost-container: +STEP: delete the pod +Oct 26 05:29:31.827: INFO: Waiting for pod pod-projected-configmaps-73cc3e41-3dd3-498a-bce4-8a4203fb1eca to disappear +Oct 26 05:29:31.829: INFO: Pod pod-projected-configmaps-73cc3e41-3dd3-498a-bce4-8a4203fb1eca no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:188 +Oct 26 05:29:31.829: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-9363" for this suite. + +• [SLOW TEST:6.080 seconds] +[sig-storage] Projected configMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected configMap should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance]","total":356,"completed":236,"skipped":4359,"failed":0} +SSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (non-root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:29:31.840: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (non-root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0666 on tmpfs +Oct 26 05:29:31.868: INFO: Waiting up to 5m0s for pod "pod-af5313f3-551b-4407-9eb1-266649cf748a" in namespace "emptydir-837" to be "Succeeded or Failed" +Oct 26 05:29:31.872: INFO: Pod "pod-af5313f3-551b-4407-9eb1-266649cf748a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.502568ms +Oct 26 05:29:33.876: INFO: Pod "pod-af5313f3-551b-4407-9eb1-266649cf748a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008319382s +Oct 26 05:29:35.883: INFO: Pod "pod-af5313f3-551b-4407-9eb1-266649cf748a": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015787471s +Oct 26 05:29:37.888: INFO: Pod "pod-af5313f3-551b-4407-9eb1-266649cf748a": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.019842472s +STEP: Saw pod success +Oct 26 05:29:37.888: INFO: Pod "pod-af5313f3-551b-4407-9eb1-266649cf748a" satisfied condition "Succeeded or Failed" +Oct 26 05:29:37.889: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-af5313f3-551b-4407-9eb1-266649cf748a container test-container: +STEP: delete the pod +Oct 26 05:29:37.902: INFO: Waiting for pod pod-af5313f3-551b-4407-9eb1-266649cf748a to disappear +Oct 26 05:29:37.907: INFO: Pod pod-af5313f3-551b-4407-9eb1-266649cf748a no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 05:29:37.907: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-837" for this suite. + +• [SLOW TEST:6.077 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (non-root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] EmptyDir volumes should support (non-root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":237,"skipped":4367,"failed":0} +SSSSSS +------------------------------ +[sig-network] Services + should complete a service status lifecycle [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:29:37.918: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should complete a service status lifecycle [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a Service +STEP: watching for the Service to be added +Oct 26 05:29:37.950: INFO: Found Service test-service-qrzlk in namespace services-9548 with labels: map[test-service-static:true] & ports [{http TCP 80 {0 80 } 0}] +Oct 26 05:29:37.950: INFO: Service test-service-qrzlk created +STEP: Getting /status +Oct 26 05:29:37.955: INFO: Service test-service-qrzlk has LoadBalancer: {[]} +STEP: patching the ServiceStatus +STEP: watching for the Service to be patched +Oct 26 05:29:37.971: INFO: observed Service test-service-qrzlk in namespace services-9548 with annotations: map[] & LoadBalancer: {[]} +Oct 26 05:29:37.971: INFO: Found Service test-service-qrzlk in namespace services-9548 with annotations: map[patchedstatus:true] & LoadBalancer: {[{203.0.113.1 []}]} +Oct 26 05:29:37.971: INFO: Service test-service-qrzlk has service status patched +STEP: updating the ServiceStatus +Oct 26 05:29:37.986: INFO: updatedStatus.Conditions: []v1.Condition{v1.Condition{Type:"StatusUpdate", Status:"True", ObservedGeneration:0, LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"E2E", Message:"Set from e2e test"}} +STEP: watching for the Service to be updated +Oct 26 05:29:37.993: INFO: Observed Service test-service-qrzlk in namespace services-9548 with annotations: map[] & Conditions: {[]} +Oct 26 05:29:37.993: INFO: Observed event: &Service{ObjectMeta:{test-service-qrzlk services-9548 d9aa2d55-db6f-466a-87f1-c1e903797840 24761 0 2022-10-26 05:29:37 +0000 UTC map[test-service-static:true] map[patchedstatus:true] [] [] [{e2e.test Update v1 2022-10-26 05:29:37 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:test-service-static":{}}},"f:spec":{"f:internalTrafficPolicy":{},"f:ports":{".":{},"k:{\"port\":80,\"protocol\":\"TCP\"}":{".":{},"f:name":{},"f:port":{},"f:protocol":{},"f:targetPort":{}}},"f:sessionAffinity":{},"f:type":{}}} } {e2e.test Update v1 2022-10-26 05:29:37 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:patchedstatus":{}}},"f:status":{"f:loadBalancer":{"f:ingress":{}}}} status}]},Spec:ServiceSpec{Ports:[]ServicePort{ServicePort{Name:http,Protocol:TCP,Port:80,TargetPort:{0 80 },NodePort:0,AppProtocol:nil,},},Selector:map[string]string{},ClusterIP:100.67.50.148,Type:ClusterIP,ExternalIPs:[],SessionAffinity:None,LoadBalancerIP:,LoadBalancerSourceRanges:[],ExternalName:,ExternalTrafficPolicy:,HealthCheckNodePort:0,PublishNotReadyAddresses:false,SessionAffinityConfig:nil,IPFamilyPolicy:*SingleStack,ClusterIPs:[100.67.50.148],IPFamilies:[IPv4],AllocateLoadBalancerNodePorts:nil,LoadBalancerClass:nil,InternalTrafficPolicy:*Cluster,},Status:ServiceStatus{LoadBalancer:LoadBalancerStatus{Ingress:[]LoadBalancerIngress{LoadBalancerIngress{IP:203.0.113.1,Hostname:,Ports:[]PortStatus{},},},},Conditions:[]Condition{},},} +Oct 26 05:29:37.994: INFO: Found Service test-service-qrzlk in namespace services-9548 with annotations: map[patchedstatus:true] & Conditions: [{StatusUpdate True 0 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test}] +Oct 26 05:29:37.994: INFO: Service test-service-qrzlk has service status updated +STEP: patching the service +STEP: watching for the Service to be patched +Oct 26 05:29:38.017: INFO: observed Service test-service-qrzlk in namespace services-9548 with labels: map[test-service-static:true] +Oct 26 05:29:38.017: INFO: observed Service test-service-qrzlk in namespace services-9548 with labels: map[test-service-static:true] +Oct 26 05:29:38.017: INFO: observed Service test-service-qrzlk in namespace services-9548 with labels: map[test-service-static:true] +Oct 26 05:29:38.018: INFO: Found Service test-service-qrzlk in namespace services-9548 with labels: map[test-service:patched test-service-static:true] +Oct 26 05:29:38.018: INFO: Service test-service-qrzlk patched +STEP: deleting the service +STEP: watching for the Service to be deleted +Oct 26 05:29:38.035: INFO: Observed event: ADDED +Oct 26 05:29:38.036: INFO: Observed event: MODIFIED +Oct 26 05:29:38.036: INFO: Observed event: MODIFIED +Oct 26 05:29:38.036: INFO: Observed event: MODIFIED +Oct 26 05:29:38.037: INFO: Found Service test-service-qrzlk in namespace services-9548 with labels: map[test-service:patched test-service-static:true] & annotations: map[patchedstatus:true] +Oct 26 05:29:38.037: INFO: Service test-service-qrzlk deleted +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 05:29:38.037: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-9548" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 +•{"msg":"PASSED [sig-network] Services should complete a service status lifecycle [Conformance]","total":356,"completed":238,"skipped":4373,"failed":0} +SSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and ensure its status is promptly calculated. [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:29:38.049: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename resourcequota +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should create a ResourceQuota and ensure its status is promptly calculated. [Conformance] + test/e2e/framework/framework.go:652 +STEP: Counting existing ResourceQuota +STEP: Creating a ResourceQuota +STEP: Ensuring resource quota status is calculated +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:188 +Oct 26 05:29:45.121: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "resourcequota-6738" for this suite. + +• [SLOW TEST:7.082 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should create a ResourceQuota and ensure its status is promptly calculated. [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] ResourceQuota should create a ResourceQuota and ensure its status is promptly calculated. [Conformance]","total":356,"completed":239,"skipped":4380,"failed":0} +[sig-storage] ConfigMap + should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:29:45.132: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name configmap-test-volume-map-b2f96bd3-2449-4b73-829b-4f5ba758ed4f +STEP: Creating a pod to test consume configMaps +Oct 26 05:29:45.168: INFO: Waiting up to 5m0s for pod "pod-configmaps-ca05cb85-304e-4dcc-97af-d5537c44ba4f" in namespace "configmap-1832" to be "Succeeded or Failed" +Oct 26 05:29:45.174: INFO: Pod "pod-configmaps-ca05cb85-304e-4dcc-97af-d5537c44ba4f": Phase="Pending", Reason="", readiness=false. Elapsed: 5.757532ms +Oct 26 05:29:47.180: INFO: Pod "pod-configmaps-ca05cb85-304e-4dcc-97af-d5537c44ba4f": Phase="Pending", Reason="", readiness=false. Elapsed: 2.01161628s +Oct 26 05:29:49.184: INFO: Pod "pod-configmaps-ca05cb85-304e-4dcc-97af-d5537c44ba4f": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.015652051s +STEP: Saw pod success +Oct 26 05:29:49.184: INFO: Pod "pod-configmaps-ca05cb85-304e-4dcc-97af-d5537c44ba4f" satisfied condition "Succeeded or Failed" +Oct 26 05:29:49.187: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-configmaps-ca05cb85-304e-4dcc-97af-d5537c44ba4f container agnhost-container: +STEP: delete the pod +Oct 26 05:29:49.218: INFO: Waiting for pod pod-configmaps-ca05cb85-304e-4dcc-97af-d5537c44ba4f to disappear +Oct 26 05:29:49.221: INFO: Pod pod-configmaps-ca05cb85-304e-4dcc-97af-d5537c44ba4f no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 05:29:49.221: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-1832" for this suite. +•{"msg":"PASSED [sig-storage] ConfigMap should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":240,"skipped":4380,"failed":0} +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] DNS + should provide DNS for pods for Hostname [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] DNS + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:29:49.233: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename dns +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should provide DNS for pods for Hostname [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a test headless service +STEP: Running these commands on wheezy: for i in `seq 1 600`; do test -n "$$(getent hosts dns-querier-2.dns-test-service-2.dns-2109.svc.cluster.local)" && echo OK > /results/wheezy_hosts@dns-querier-2.dns-test-service-2.dns-2109.svc.cluster.local;test -n "$$(getent hosts dns-querier-2)" && echo OK > /results/wheezy_hosts@dns-querier-2;sleep 1; done + +STEP: Running these commands on jessie: for i in `seq 1 600`; do test -n "$$(getent hosts dns-querier-2.dns-test-service-2.dns-2109.svc.cluster.local)" && echo OK > /results/jessie_hosts@dns-querier-2.dns-test-service-2.dns-2109.svc.cluster.local;test -n "$$(getent hosts dns-querier-2)" && echo OK > /results/jessie_hosts@dns-querier-2;sleep 1; done + +STEP: creating a pod to probe DNS +STEP: submitting the pod to kubernetes +STEP: retrieving the pod +STEP: looking for the results for each expected name from probers +Oct 26 05:29:53.288: INFO: DNS probes using dns-2109/dns-test-b7149559-3d44-472c-9c8b-a4e46e213c81 succeeded + +STEP: deleting the pod +STEP: deleting the test headless service +[AfterEach] [sig-network] DNS + test/e2e/framework/framework.go:188 +Oct 26 05:29:53.330: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "dns-2109" for this suite. +•{"msg":"PASSED [sig-network] DNS should provide DNS for pods for Hostname [Conformance]","total":356,"completed":241,"skipped":4399,"failed":0} +SSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Garbage collector + should not be blocked by dependency circle [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:29:53.340: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename gc +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should not be blocked by dependency circle [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:29:53.417: INFO: pod1.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod3", UID:"aeffbd27-a159-40f5-a22e-228e35e1c3a1", Controller:(*bool)(0xc005bbe3b6), BlockOwnerDeletion:(*bool)(0xc005bbe3b7)}} +Oct 26 05:29:53.427: INFO: pod2.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod1", UID:"b65becae-efb9-4846-b195-2ff558e6c763", Controller:(*bool)(0xc005bbe60e), BlockOwnerDeletion:(*bool)(0xc005bbe60f)}} +Oct 26 05:29:53.434: INFO: pod3.ObjectMeta.OwnerReferences=[]v1.OwnerReference{v1.OwnerReference{APIVersion:"v1", Kind:"Pod", Name:"pod2", UID:"fd215701-41e8-41fb-9c72-8e33726d3eee", Controller:(*bool)(0xc005bbe86e), BlockOwnerDeletion:(*bool)(0xc005bbe86f)}} +[AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:188 +Oct 26 05:29:58.450: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "gc-1657" for this suite. + +• [SLOW TEST:5.136 seconds] +[sig-api-machinery] Garbage collector +test/e2e/apimachinery/framework.go:23 + should not be blocked by dependency circle [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] Garbage collector should not be blocked by dependency circle [Conformance]","total":356,"completed":242,"skipped":4413,"failed":0} +SSSSSSSSSSSSSS +------------------------------ +[sig-node] Probing container + with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:29:58.477: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-probe +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:61 +[It] with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:29:58.559: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:30:00.564: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:30:02.564: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Running (Ready = false) +Oct 26 05:30:04.565: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Running (Ready = false) +Oct 26 05:30:06.567: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Running (Ready = false) +Oct 26 05:30:08.565: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Running (Ready = false) +Oct 26 05:30:10.564: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Running (Ready = false) +Oct 26 05:30:12.564: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Running (Ready = false) +Oct 26 05:30:14.565: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Running (Ready = false) +Oct 26 05:30:16.567: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Running (Ready = false) +Oct 26 05:30:18.568: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Running (Ready = false) +Oct 26 05:30:20.564: INFO: The status of Pod test-webserver-428321cc-e583-46dc-8ba3-bedbbdd69fd7 is Running (Ready = true) +Oct 26 05:30:20.567: INFO: Container started at 2022-10-26 05:30:00 +0000 UTC, pod became ready at 2022-10-26 05:30:18 +0000 UTC +[AfterEach] [sig-node] Probing container + test/e2e/framework/framework.go:188 +Oct 26 05:30:20.567: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-probe-7135" for this suite. + +• [SLOW TEST:22.105 seconds] +[sig-node] Probing container +test/e2e/common/node/framework.go:23 + with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Probing container with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance]","total":356,"completed":243,"skipped":4427,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-node] Pods + should allow activeDeadlineSeconds to be updated [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Pods + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:30:20.585: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pods +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:191 +[It] should allow activeDeadlineSeconds to be updated [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating the pod +STEP: submitting the pod to kubernetes +Oct 26 05:30:20.635: INFO: The status of Pod pod-update-activedeadlineseconds-fb026ce1-0c03-4020-a094-cc593db70a93 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:30:22.639: INFO: The status of Pod pod-update-activedeadlineseconds-fb026ce1-0c03-4020-a094-cc593db70a93 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:30:24.641: INFO: The status of Pod pod-update-activedeadlineseconds-fb026ce1-0c03-4020-a094-cc593db70a93 is Running (Ready = true) +STEP: verifying the pod is in kubernetes +STEP: updating the pod +Oct 26 05:30:25.160: INFO: Successfully updated pod "pod-update-activedeadlineseconds-fb026ce1-0c03-4020-a094-cc593db70a93" +Oct 26 05:30:25.160: INFO: Waiting up to 5m0s for pod "pod-update-activedeadlineseconds-fb026ce1-0c03-4020-a094-cc593db70a93" in namespace "pods-2475" to be "terminated due to deadline exceeded" +Oct 26 05:30:25.162: INFO: Pod "pod-update-activedeadlineseconds-fb026ce1-0c03-4020-a094-cc593db70a93": Phase="Running", Reason="", readiness=true. Elapsed: 2.349177ms +Oct 26 05:30:27.169: INFO: Pod "pod-update-activedeadlineseconds-fb026ce1-0c03-4020-a094-cc593db70a93": Phase="Failed", Reason="DeadlineExceeded", readiness=false. Elapsed: 2.00925786s +Oct 26 05:30:27.169: INFO: Pod "pod-update-activedeadlineseconds-fb026ce1-0c03-4020-a094-cc593db70a93" satisfied condition "terminated due to deadline exceeded" +[AfterEach] [sig-node] Pods + test/e2e/framework/framework.go:188 +Oct 26 05:30:27.169: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pods-2475" for this suite. + +• [SLOW TEST:6.590 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should allow activeDeadlineSeconds to be updated [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Pods should allow activeDeadlineSeconds to be updated [NodeConformance] [Conformance]","total":356,"completed":244,"skipped":4442,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (non-root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:30:27.181: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (non-root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0644 on tmpfs +Oct 26 05:30:27.206: INFO: Waiting up to 5m0s for pod "pod-bffc87ff-5926-4e67-8082-0c151c0fc943" in namespace "emptydir-3093" to be "Succeeded or Failed" +Oct 26 05:30:27.217: INFO: Pod "pod-bffc87ff-5926-4e67-8082-0c151c0fc943": Phase="Pending", Reason="", readiness=false. Elapsed: 10.494901ms +Oct 26 05:30:29.224: INFO: Pod "pod-bffc87ff-5926-4e67-8082-0c151c0fc943": Phase="Pending", Reason="", readiness=false. Elapsed: 2.017794789s +Oct 26 05:30:31.235: INFO: Pod "pod-bffc87ff-5926-4e67-8082-0c151c0fc943": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.028840988s +STEP: Saw pod success +Oct 26 05:30:31.235: INFO: Pod "pod-bffc87ff-5926-4e67-8082-0c151c0fc943" satisfied condition "Succeeded or Failed" +Oct 26 05:30:31.238: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-bffc87ff-5926-4e67-8082-0c151c0fc943 container test-container: +STEP: delete the pod +Oct 26 05:30:31.253: INFO: Waiting for pod pod-bffc87ff-5926-4e67-8082-0c151c0fc943 to disappear +Oct 26 05:30:31.258: INFO: Pod pod-bffc87ff-5926-4e67-8082-0c151c0fc943 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 05:30:31.258: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-3093" for this suite. +•{"msg":"PASSED [sig-storage] EmptyDir volumes should support (non-root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":245,"skipped":4490,"failed":0} +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Garbage collector + should orphan pods created by rc if delete options say so [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:30:31.265: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename gc +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should orphan pods created by rc if delete options say so [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the rc +STEP: delete the rc +STEP: wait for the rc to be deleted +STEP: wait for 30 seconds to see if the garbage collector mistakenly deletes the pods +STEP: Gathering metrics +Oct 26 05:31:12.905: INFO: The status of Pod kube-controller-manager-i-01a506a1cd9f42b49 is Running (Ready = true) +Oct 26 05:31:13.348: INFO: For apiserver_request_total: +For apiserver_request_latency_seconds: +For apiserver_init_events_total: +For garbage_collector_attempt_to_delete_queue_latency: +For garbage_collector_attempt_to_delete_work_duration: +For garbage_collector_attempt_to_orphan_queue_latency: +For garbage_collector_attempt_to_orphan_work_duration: +For garbage_collector_dirty_processing_latency_microseconds: +For garbage_collector_event_processing_latency_microseconds: +For garbage_collector_graph_changes_queue_latency: +For garbage_collector_graph_changes_work_duration: +For garbage_collector_orphan_processing_latency_microseconds: +For namespace_queue_latency: +For namespace_queue_latency_sum: +For namespace_queue_latency_count: +For namespace_retries: +For namespace_work_duration: +For namespace_work_duration_sum: +For namespace_work_duration_count: +For function_duration_seconds: +For errors_total: +For evicted_pods_total: + +Oct 26 05:31:13.348: INFO: Deleting pod "simpletest.rc-246dx" in namespace "gc-8219" +Oct 26 05:31:13.367: INFO: Deleting pod "simpletest.rc-2btd7" in namespace "gc-8219" +Oct 26 05:31:13.390: INFO: Deleting pod "simpletest.rc-2gp2j" in namespace "gc-8219" +Oct 26 05:31:13.407: INFO: Deleting pod "simpletest.rc-2mzfm" in namespace "gc-8219" +Oct 26 05:31:13.429: INFO: Deleting pod "simpletest.rc-2s86p" in namespace "gc-8219" +Oct 26 05:31:13.446: INFO: Deleting pod "simpletest.rc-46bfc" in namespace "gc-8219" +Oct 26 05:31:13.457: INFO: Deleting pod "simpletest.rc-46mqd" in namespace "gc-8219" +Oct 26 05:31:13.474: INFO: Deleting pod "simpletest.rc-47tnp" in namespace "gc-8219" +Oct 26 05:31:13.498: INFO: Deleting pod "simpletest.rc-5bmhc" in namespace "gc-8219" +Oct 26 05:31:13.514: INFO: Deleting pod "simpletest.rc-5zmbj" in namespace "gc-8219" +Oct 26 05:31:13.526: INFO: Deleting pod "simpletest.rc-6lgkr" in namespace "gc-8219" +Oct 26 05:31:13.538: INFO: Deleting pod "simpletest.rc-6qv8q" in namespace "gc-8219" +Oct 26 05:31:13.549: INFO: Deleting pod "simpletest.rc-748kw" in namespace "gc-8219" +Oct 26 05:31:13.558: INFO: Deleting pod "simpletest.rc-7fz8v" in namespace "gc-8219" +Oct 26 05:31:13.564: INFO: Deleting pod "simpletest.rc-7nknw" in namespace "gc-8219" +Oct 26 05:31:13.576: INFO: Deleting pod "simpletest.rc-7pxtm" in namespace "gc-8219" +Oct 26 05:31:13.583: INFO: Deleting pod "simpletest.rc-7v8kg" in namespace "gc-8219" +Oct 26 05:31:13.597: INFO: Deleting pod "simpletest.rc-8gd6n" in namespace "gc-8219" +Oct 26 05:31:13.608: INFO: Deleting pod "simpletest.rc-8ptlb" in namespace "gc-8219" +Oct 26 05:31:13.625: INFO: Deleting pod "simpletest.rc-8sqvg" in namespace "gc-8219" +Oct 26 05:31:13.641: INFO: Deleting pod "simpletest.rc-8v8jm" in namespace "gc-8219" +Oct 26 05:31:13.651: INFO: Deleting pod "simpletest.rc-92bd7" in namespace "gc-8219" +Oct 26 05:31:13.662: INFO: Deleting pod "simpletest.rc-92dkv" in namespace "gc-8219" +Oct 26 05:31:13.682: INFO: Deleting pod "simpletest.rc-97m8s" in namespace "gc-8219" +Oct 26 05:31:13.698: INFO: Deleting pod "simpletest.rc-9h9ss" in namespace "gc-8219" +Oct 26 05:31:13.706: INFO: Deleting pod "simpletest.rc-9hg8p" in namespace "gc-8219" +Oct 26 05:31:13.715: INFO: Deleting pod "simpletest.rc-9j557" in namespace "gc-8219" +Oct 26 05:31:13.723: INFO: Deleting pod "simpletest.rc-9pg9q" in namespace "gc-8219" +Oct 26 05:31:13.736: INFO: Deleting pod "simpletest.rc-9t6db" in namespace "gc-8219" +Oct 26 05:31:13.745: INFO: Deleting pod "simpletest.rc-bld5v" in namespace "gc-8219" +Oct 26 05:31:13.760: INFO: Deleting pod "simpletest.rc-brx7h" in namespace "gc-8219" +Oct 26 05:31:13.767: INFO: Deleting pod "simpletest.rc-dk29l" in namespace "gc-8219" +Oct 26 05:31:13.779: INFO: Deleting pod "simpletest.rc-dnkqb" in namespace "gc-8219" +Oct 26 05:31:13.784: INFO: Deleting pod "simpletest.rc-dsjs8" in namespace "gc-8219" +Oct 26 05:31:13.790: INFO: Deleting pod "simpletest.rc-dvt8m" in namespace "gc-8219" +Oct 26 05:31:13.806: INFO: Deleting pod "simpletest.rc-fgvcd" in namespace "gc-8219" +Oct 26 05:31:13.813: INFO: Deleting pod "simpletest.rc-fkgrv" in namespace "gc-8219" +Oct 26 05:31:13.822: INFO: Deleting pod "simpletest.rc-g24s7" in namespace "gc-8219" +Oct 26 05:31:13.844: INFO: Deleting pod "simpletest.rc-g9qs7" in namespace "gc-8219" +Oct 26 05:31:13.854: INFO: Deleting pod "simpletest.rc-gf6tf" in namespace "gc-8219" +Oct 26 05:31:13.867: INFO: Deleting pod "simpletest.rc-gnrmq" in namespace "gc-8219" +Oct 26 05:31:13.890: INFO: Deleting pod "simpletest.rc-gsrfc" in namespace "gc-8219" +Oct 26 05:31:13.910: INFO: Deleting pod "simpletest.rc-h5lsf" in namespace "gc-8219" +Oct 26 05:31:13.919: INFO: Deleting pod "simpletest.rc-hn775" in namespace "gc-8219" +Oct 26 05:31:13.929: INFO: Deleting pod "simpletest.rc-hxsgg" in namespace "gc-8219" +Oct 26 05:31:13.940: INFO: Deleting pod "simpletest.rc-hzrcg" in namespace "gc-8219" +Oct 26 05:31:14.015: INFO: Deleting pod "simpletest.rc-jkvm8" in namespace "gc-8219" +Oct 26 05:31:14.040: INFO: Deleting pod "simpletest.rc-jljv8" in namespace "gc-8219" +Oct 26 05:31:14.053: INFO: Deleting pod "simpletest.rc-jmt59" in namespace "gc-8219" +Oct 26 05:31:14.074: INFO: Deleting pod "simpletest.rc-jpl4f" in namespace "gc-8219" +Oct 26 05:31:14.088: INFO: Deleting pod "simpletest.rc-jswz9" in namespace "gc-8219" +Oct 26 05:31:14.106: INFO: Deleting pod "simpletest.rc-jxvsh" in namespace "gc-8219" +Oct 26 05:31:14.120: INFO: Deleting pod "simpletest.rc-kdbs7" in namespace "gc-8219" +Oct 26 05:31:14.149: INFO: Deleting pod "simpletest.rc-kz76n" in namespace "gc-8219" +Oct 26 05:31:14.177: INFO: Deleting pod "simpletest.rc-l4qp5" in namespace "gc-8219" +Oct 26 05:31:14.213: INFO: Deleting pod "simpletest.rc-l5gz6" in namespace "gc-8219" +Oct 26 05:31:14.273: INFO: Deleting pod "simpletest.rc-l8k9c" in namespace "gc-8219" +Oct 26 05:31:14.317: INFO: Deleting pod "simpletest.rc-lt6t5" in namespace "gc-8219" +Oct 26 05:31:14.392: INFO: Deleting pod "simpletest.rc-ltrh2" in namespace "gc-8219" +Oct 26 05:31:14.409: INFO: Deleting pod "simpletest.rc-m5tjt" in namespace "gc-8219" +Oct 26 05:31:14.417: INFO: Deleting pod "simpletest.rc-mcf8z" in namespace "gc-8219" +Oct 26 05:31:14.425: INFO: Deleting pod "simpletest.rc-mltql" in namespace "gc-8219" +Oct 26 05:31:14.435: INFO: Deleting pod "simpletest.rc-mmjd2" in namespace "gc-8219" +Oct 26 05:31:14.440: INFO: Deleting pod "simpletest.rc-mzxpf" in namespace "gc-8219" +Oct 26 05:31:14.452: INFO: Deleting pod "simpletest.rc-nhrg5" in namespace "gc-8219" +Oct 26 05:31:14.469: INFO: Deleting pod "simpletest.rc-njhk4" in namespace "gc-8219" +Oct 26 05:31:14.494: INFO: Deleting pod "simpletest.rc-nstd5" in namespace "gc-8219" +Oct 26 05:31:14.509: INFO: Deleting pod "simpletest.rc-pl8kz" in namespace "gc-8219" +Oct 26 05:31:14.525: INFO: Deleting pod "simpletest.rc-pt56q" in namespace "gc-8219" +Oct 26 05:31:14.555: INFO: Deleting pod "simpletest.rc-pt8cm" in namespace "gc-8219" +Oct 26 05:31:14.571: INFO: Deleting pod "simpletest.rc-ptdwf" in namespace "gc-8219" +Oct 26 05:31:14.589: INFO: Deleting pod "simpletest.rc-pxvgp" in namespace "gc-8219" +Oct 26 05:31:14.626: INFO: Deleting pod "simpletest.rc-q7lx6" in namespace "gc-8219" +Oct 26 05:31:14.655: INFO: Deleting pod "simpletest.rc-qmwlq" in namespace "gc-8219" +Oct 26 05:31:14.669: INFO: Deleting pod "simpletest.rc-qmxnm" in namespace "gc-8219" +Oct 26 05:31:14.684: INFO: Deleting pod "simpletest.rc-qzl59" in namespace "gc-8219" +Oct 26 05:31:14.706: INFO: Deleting pod "simpletest.rc-r298c" in namespace "gc-8219" +Oct 26 05:31:14.727: INFO: Deleting pod "simpletest.rc-r7h7s" in namespace "gc-8219" +Oct 26 05:31:14.757: INFO: Deleting pod "simpletest.rc-rl56c" in namespace "gc-8219" +Oct 26 05:31:14.816: INFO: Deleting pod "simpletest.rc-rl5ht" in namespace "gc-8219" +Oct 26 05:31:14.869: INFO: Deleting pod "simpletest.rc-s6pg9" in namespace "gc-8219" +Oct 26 05:31:14.945: INFO: Deleting pod "simpletest.rc-scnkq" in namespace "gc-8219" +Oct 26 05:31:14.967: INFO: Deleting pod "simpletest.rc-t25nr" in namespace "gc-8219" +Oct 26 05:31:15.034: INFO: Deleting pod "simpletest.rc-tz8gd" in namespace "gc-8219" +Oct 26 05:31:15.069: INFO: Deleting pod "simpletest.rc-v4rlj" in namespace "gc-8219" +Oct 26 05:31:15.121: INFO: Deleting pod "simpletest.rc-v5t6b" in namespace "gc-8219" +Oct 26 05:31:15.165: INFO: Deleting pod "simpletest.rc-vrljh" in namespace "gc-8219" +Oct 26 05:31:15.209: INFO: Deleting pod "simpletest.rc-wbg7p" in namespace "gc-8219" +Oct 26 05:31:15.265: INFO: Deleting pod "simpletest.rc-wfn8j" in namespace "gc-8219" +Oct 26 05:31:15.315: INFO: Deleting pod "simpletest.rc-wlzgq" in namespace "gc-8219" +Oct 26 05:31:15.358: INFO: Deleting pod "simpletest.rc-wzg9l" in namespace "gc-8219" +Oct 26 05:31:15.407: INFO: Deleting pod "simpletest.rc-x8x7g" in namespace "gc-8219" +Oct 26 05:31:15.457: INFO: Deleting pod "simpletest.rc-xc2ls" in namespace "gc-8219" +Oct 26 05:31:15.514: INFO: Deleting pod "simpletest.rc-xc9tc" in namespace "gc-8219" +Oct 26 05:31:15.555: INFO: Deleting pod "simpletest.rc-xdksk" in namespace "gc-8219" +Oct 26 05:31:15.606: INFO: Deleting pod "simpletest.rc-xpwrk" in namespace "gc-8219" +Oct 26 05:31:15.659: INFO: Deleting pod "simpletest.rc-xw6gt" in namespace "gc-8219" +Oct 26 05:31:15.707: INFO: Deleting pod "simpletest.rc-zbq5j" in namespace "gc-8219" +Oct 26 05:31:15.757: INFO: Deleting pod "simpletest.rc-zjlqx" in namespace "gc-8219" +Oct 26 05:31:15.807: INFO: Deleting pod "simpletest.rc-zxvfb" in namespace "gc-8219" +[AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:188 +Oct 26 05:31:15.858: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "gc-8219" for this suite. + +• [SLOW TEST:44.689 seconds] +[sig-api-machinery] Garbage collector +test/e2e/apimachinery/framework.go:23 + should orphan pods created by rc if delete options say so [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] Garbage collector should orphan pods created by rc if delete options say so [Conformance]","total":356,"completed":246,"skipped":4510,"failed":0} +SSS +------------------------------ +[sig-apps] Deployment + RollingUpdateDeployment should delete old pods and create new ones [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:31:15.955: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename deployment +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] RollingUpdateDeployment should delete old pods and create new ones [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:31:15.979: INFO: Creating replica set "test-rolling-update-controller" (going to be adopted) +Oct 26 05:31:15.985: INFO: Pod name sample-pod: Found 0 pods out of 1 +Oct 26 05:31:21.603: INFO: Pod name sample-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running +Oct 26 05:31:31.712: INFO: Creating deployment "test-rolling-update-deployment" +Oct 26 05:31:31.717: INFO: Ensuring deployment "test-rolling-update-deployment" gets the next revision from the one the adopted replica set "test-rolling-update-controller" has +Oct 26 05:31:31.721: INFO: new replicaset for deployment "test-rolling-update-deployment" is yet to be created +Oct 26 05:31:33.728: INFO: Ensuring status for deployment "test-rolling-update-deployment" is the expected +Oct 26 05:31:33.730: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:1, ReadyReplicas:1, AvailableReplicas:1, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 31, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 31, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 31, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 31, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rolling-update-deployment-67c8f74c6c\" is progressing."}}, CollisionCount:(*int32)(nil)} +Oct 26 05:31:35.738: INFO: Ensuring deployment "test-rolling-update-deployment" has one old replica set (the one it adopted) +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Oct 26 05:31:35.744: INFO: Deployment "test-rolling-update-deployment": +&Deployment{ObjectMeta:{test-rolling-update-deployment deployment-1274 b05ae561-b922-417f-8f90-07aea7ec174a 26274 1 2022-10-26 05:31:31 +0000 UTC map[name:sample-pod] map[deployment.kubernetes.io/revision:3546343826724305833] [] [] [{e2e.test Update apps/v1 2022-10-26 05:31:31 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:progressDeadlineSeconds":{},"f:replicas":{},"f:revisionHistoryLimit":{},"f:selector":{},"f:strategy":{"f:rollingUpdate":{".":{},"f:maxSurge":{},"f:maxUnavailable":{}},"f:type":{}},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"agnhost\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:31:34 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/revision":{}}},"f:status":{"f:availableReplicas":{},"f:conditions":{".":{},"k:{\"type\":\"Available\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Progressing\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{},"f:updatedReplicas":{}}} status}]},Spec:DeploymentSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: sample-pod,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod] map[] [] [] []} {[] [] [{agnhost k8s.gcr.io/e2e-test-images/agnhost:2.39 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc004326908 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},Strategy:DeploymentStrategy{Type:RollingUpdate,RollingUpdate:&RollingUpdateDeployment{MaxUnavailable:25%!,(MISSING)MaxSurge:25%!,(MISSING)},},MinReadySeconds:0,RevisionHistoryLimit:*10,Paused:false,ProgressDeadlineSeconds:*600,},Status:DeploymentStatus{ObservedGeneration:1,Replicas:1,UpdatedReplicas:1,AvailableReplicas:1,UnavailableReplicas:0,Conditions:[]DeploymentCondition{DeploymentCondition{Type:Available,Status:True,Reason:MinimumReplicasAvailable,Message:Deployment has minimum availability.,LastUpdateTime:2022-10-26 05:31:31 +0000 UTC,LastTransitionTime:2022-10-26 05:31:31 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:NewReplicaSetAvailable,Message:ReplicaSet "test-rolling-update-deployment-67c8f74c6c" has successfully progressed.,LastUpdateTime:2022-10-26 05:31:34 +0000 UTC,LastTransitionTime:2022-10-26 05:31:31 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + +Oct 26 05:31:35.746: INFO: New ReplicaSet "test-rolling-update-deployment-67c8f74c6c" of Deployment "test-rolling-update-deployment": +&ReplicaSet{ObjectMeta:{test-rolling-update-deployment-67c8f74c6c deployment-1274 1e1f84a6-eb58-4929-ad63-c9552b2dbaa0 26267 1 2022-10-26 05:31:31 +0000 UTC map[name:sample-pod pod-template-hash:67c8f74c6c] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:3546343826724305833] [{apps/v1 Deployment test-rolling-update-deployment b05ae561-b922-417f-8f90-07aea7ec174a 0xc0073a98d7 0xc0073a98d8}] [] [{kube-controller-manager Update apps/v1 2022-10-26 05:31:31 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"b05ae561-b922-417f-8f90-07aea7ec174a\"}":{}}},"f:spec":{"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"agnhost\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:31:34 +0000 UTC FieldsV1 {"f:status":{"f:availableReplicas":{},"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: sample-pod,pod-template-hash: 67c8f74c6c,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod pod-template-hash:67c8f74c6c] map[] [] [] []} {[] [] [{agnhost k8s.gcr.io/e2e-test-images/agnhost:2.39 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0073a9988 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:1,FullyLabeledReplicas:1,ObservedGeneration:1,ReadyReplicas:1,AvailableReplicas:1,Conditions:[]ReplicaSetCondition{},},} +Oct 26 05:31:35.746: INFO: All old ReplicaSets of Deployment "test-rolling-update-deployment": +Oct 26 05:31:35.746: INFO: &ReplicaSet{ObjectMeta:{test-rolling-update-controller deployment-1274 b05c0185-ba00-42e4-b779-360adf5a8fc6 26273 2 2022-10-26 05:31:15 +0000 UTC map[name:sample-pod pod:httpd] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:3546343826724305832] [{apps/v1 Deployment test-rolling-update-deployment b05ae561-b922-417f-8f90-07aea7ec174a 0xc0073a9787 0xc0073a9788}] [] [{e2e.test Update apps/v1 2022-10-26 05:31:15 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:name":{},"f:pod":{}}},"f:spec":{"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:31:34 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"b05ae561-b922-417f-8f90-07aea7ec174a\"}":{}}},"f:spec":{"f:replicas":{}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:31:34 +0000 UTC FieldsV1 {"f:status":{"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*0,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: sample-pod,pod: httpd,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:sample-pod pod:httpd] map[] [] [] []} {[] [] [{httpd k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent nil false false false}] [] Always 0xc0073a9858 ClusterFirst map[] false false false PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:0,FullyLabeledReplicas:0,ObservedGeneration:2,ReadyReplicas:0,AvailableReplicas:0,Conditions:[]ReplicaSetCondition{},},} +Oct 26 05:31:35.748: INFO: Pod "test-rolling-update-deployment-67c8f74c6c-6khxq" is available: +&Pod{ObjectMeta:{test-rolling-update-deployment-67c8f74c6c-6khxq test-rolling-update-deployment-67c8f74c6c- deployment-1274 c47a8d3d-0963-4892-bf82-4359eeb5619b 26266 0 2022-10-26 05:31:31 +0000 UTC map[name:sample-pod pod-template-hash:67c8f74c6c] map[] [{apps/v1 ReplicaSet test-rolling-update-deployment-67c8f74c6c 1e1f84a6-eb58-4929-ad63-c9552b2dbaa0 0xc0073a9df7 0xc0073a9df8}] [] [{kube-controller-manager Update v1 2022-10-26 05:31:31 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"1e1f84a6-eb58-4929-ad63-c9552b2dbaa0\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"agnhost\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:31:34 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.2.174\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-j7kjp,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:agnhost,Image:k8s.gcr.io/e2e-test-images/agnhost:2.39,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-j7kjp,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:31:31 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:31:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:31:34 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:31:31 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:100.96.2.174,StartTime:2022-10-26 05:31:31 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:agnhost,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:31:33 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/agnhost:2.39,ImageID:k8s.gcr.io/e2e-test-images/agnhost@sha256:7e8bdd271312fd25fc5ff5a8f04727be84044eb3d7d8d03611972a6752e2e11e,ContainerID:containerd://babcb70ab327c91a3198df3a78a241fc394098611f3339cca6102475d21d75a6,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.2.174,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/framework.go:188 +Oct 26 05:31:35.748: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "deployment-1274" for this suite. + +• [SLOW TEST:19.802 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + RollingUpdateDeployment should delete old pods and create new ones [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Deployment RollingUpdateDeployment should delete old pods and create new ones [Conformance]","total":356,"completed":247,"skipped":4513,"failed":0} +S +------------------------------ +[sig-apps] Deployment + deployment should support rollover [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:31:35.759: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename deployment +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] deployment should support rollover [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:31:35.783: INFO: Pod name rollover-pod: Found 0 pods out of 1 +Oct 26 05:31:40.791: INFO: Pod name rollover-pod: Found 1 pods out of 1 +STEP: ensuring each pod is running +Oct 26 05:31:40.791: INFO: Waiting for pods owned by replica set "test-rollover-controller" to become ready +Oct 26 05:31:42.794: INFO: Creating deployment "test-rollover-deployment" +Oct 26 05:31:42.804: INFO: Make sure deployment "test-rollover-deployment" performs scaling operations +Oct 26 05:31:44.815: INFO: Check revision of new replica set for deployment "test-rollover-deployment" +Oct 26 05:31:44.820: INFO: Ensure that both replica sets have 1 created replica +Oct 26 05:31:44.823: INFO: Rollover old replica sets for deployment "test-rollover-deployment" with new image update +Oct 26 05:31:44.829: INFO: Updating deployment test-rollover-deployment +Oct 26 05:31:44.829: INFO: Wait deployment "test-rollover-deployment" to be observed by the deployment controller +Oct 26 05:31:46.839: INFO: Wait for revision update of deployment "test-rollover-deployment" to 2 +Oct 26 05:31:46.843: INFO: Make sure deployment "test-rollover-deployment" is complete +Oct 26 05:31:46.847: INFO: all replica sets need to contain the pod-template-hash label +Oct 26 05:31:46.847: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:2, Replicas:2, UpdatedReplicas:1, ReadyReplicas:2, AvailableReplicas:1, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 46, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-779c67f4f8\" is progressing."}}, CollisionCount:(*int32)(nil)} +Oct 26 05:31:48.856: INFO: all replica sets need to contain the pod-template-hash label +Oct 26 05:31:48.856: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:2, Replicas:2, UpdatedReplicas:1, ReadyReplicas:2, AvailableReplicas:1, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 46, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-779c67f4f8\" is progressing."}}, CollisionCount:(*int32)(nil)} +Oct 26 05:31:50.860: INFO: all replica sets need to contain the pod-template-hash label +Oct 26 05:31:50.860: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:2, Replicas:2, UpdatedReplicas:1, ReadyReplicas:2, AvailableReplicas:1, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 46, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-779c67f4f8\" is progressing."}}, CollisionCount:(*int32)(nil)} +Oct 26 05:31:52.854: INFO: all replica sets need to contain the pod-template-hash label +Oct 26 05:31:52.855: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:2, Replicas:2, UpdatedReplicas:1, ReadyReplicas:2, AvailableReplicas:1, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 46, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-779c67f4f8\" is progressing."}}, CollisionCount:(*int32)(nil)} +Oct 26 05:31:54.855: INFO: all replica sets need to contain the pod-template-hash label +Oct 26 05:31:54.855: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:2, Replicas:2, UpdatedReplicas:1, ReadyReplicas:2, AvailableReplicas:1, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), Reason:"MinimumReplicasAvailable", Message:"Deployment has minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 31, 46, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 31, 42, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"test-rollover-deployment-779c67f4f8\" is progressing."}}, CollisionCount:(*int32)(nil)} +Oct 26 05:31:56.864: INFO: +Oct 26 05:31:56.864: INFO: Ensure that both old replica sets have no replicas +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Oct 26 05:31:56.884: INFO: Deployment "test-rollover-deployment": +&Deployment{ObjectMeta:{test-rollover-deployment deployment-1569 ad66d6d9-9168-4a72-b906-cbd7dfd99583 26434 2 2022-10-26 05:31:42 +0000 UTC map[name:rollover-pod] map[deployment.kubernetes.io/revision:2] [] [] [{e2e.test Update apps/v1 2022-10-26 05:31:44 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:minReadySeconds":{},"f:progressDeadlineSeconds":{},"f:replicas":{},"f:revisionHistoryLimit":{},"f:selector":{},"f:strategy":{"f:rollingUpdate":{".":{},"f:maxSurge":{},"f:maxUnavailable":{}},"f:type":{}},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"agnhost\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:31:56 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/revision":{}}},"f:status":{"f:availableReplicas":{},"f:conditions":{".":{},"k:{\"type\":\"Available\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Progressing\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{},"f:updatedReplicas":{}}} status}]},Spec:DeploymentSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: rollover-pod,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:rollover-pod] map[] [] [] []} {[] [] [{agnhost k8s.gcr.io/e2e-test-images/agnhost:2.39 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0045a9518 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},Strategy:DeploymentStrategy{Type:RollingUpdate,RollingUpdate:&RollingUpdateDeployment{MaxUnavailable:0,MaxSurge:1,},},MinReadySeconds:10,RevisionHistoryLimit:*10,Paused:false,ProgressDeadlineSeconds:*600,},Status:DeploymentStatus{ObservedGeneration:2,Replicas:1,UpdatedReplicas:1,AvailableReplicas:1,UnavailableReplicas:0,Conditions:[]DeploymentCondition{DeploymentCondition{Type:Available,Status:True,Reason:MinimumReplicasAvailable,Message:Deployment has minimum availability.,LastUpdateTime:2022-10-26 05:31:42 +0000 UTC,LastTransitionTime:2022-10-26 05:31:42 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:NewReplicaSetAvailable,Message:ReplicaSet "test-rollover-deployment-779c67f4f8" has successfully progressed.,LastUpdateTime:2022-10-26 05:31:56 +0000 UTC,LastTransitionTime:2022-10-26 05:31:42 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + +Oct 26 05:31:56.891: INFO: New ReplicaSet "test-rollover-deployment-779c67f4f8" of Deployment "test-rollover-deployment": +&ReplicaSet{ObjectMeta:{test-rollover-deployment-779c67f4f8 deployment-1569 23a41255-4c94-4602-bd02-1f7fb8a7c484 26426 2 2022-10-26 05:31:44 +0000 UTC map[name:rollover-pod pod-template-hash:779c67f4f8] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:2] [{apps/v1 Deployment test-rollover-deployment ad66d6d9-9168-4a72-b906-cbd7dfd99583 0xc0045a9b37 0xc0045a9b38}] [] [{kube-controller-manager Update apps/v1 2022-10-26 05:31:44 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"ad66d6d9-9168-4a72-b906-cbd7dfd99583\"}":{}}},"f:spec":{"f:minReadySeconds":{},"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"agnhost\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:31:56 +0000 UTC FieldsV1 {"f:status":{"f:availableReplicas":{},"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*1,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: rollover-pod,pod-template-hash: 779c67f4f8,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:rollover-pod pod-template-hash:779c67f4f8] map[] [] [] []} {[] [] [{agnhost k8s.gcr.io/e2e-test-images/agnhost:2.39 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0045a9be8 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:10,},Status:ReplicaSetStatus{Replicas:1,FullyLabeledReplicas:1,ObservedGeneration:2,ReadyReplicas:1,AvailableReplicas:1,Conditions:[]ReplicaSetCondition{},},} +Oct 26 05:31:56.891: INFO: All old ReplicaSets of Deployment "test-rollover-deployment": +Oct 26 05:31:56.892: INFO: &ReplicaSet{ObjectMeta:{test-rollover-controller deployment-1569 b8dd9991-5d13-4fab-a8af-490943784ab7 26432 2 2022-10-26 05:31:35 +0000 UTC map[name:rollover-pod pod:httpd] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2] [{apps/v1 Deployment test-rollover-deployment ad66d6d9-9168-4a72-b906-cbd7dfd99583 0xc0045a98c7 0xc0045a98c8}] [] [{e2e.test Update apps/v1 2022-10-26 05:31:35 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod":{}}},"f:spec":{"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:31:56 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"ad66d6d9-9168-4a72-b906-cbd7dfd99583\"}":{}}},"f:spec":{"f:replicas":{}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:31:56 +0000 UTC FieldsV1 {"f:status":{"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*0,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: rollover-pod,pod: httpd,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:rollover-pod pod:httpd] map[] [] [] []} {[] [] [{httpd k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent nil false false false}] [] Always 0xc0045a99a8 ClusterFirst map[] false false false PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:0,FullyLabeledReplicas:0,ObservedGeneration:2,ReadyReplicas:0,AvailableReplicas:0,Conditions:[]ReplicaSetCondition{},},} +Oct 26 05:31:56.892: INFO: &ReplicaSet{ObjectMeta:{test-rollover-deployment-87f8f6dcf deployment-1569 0b85d33b-079b-4e9f-914e-aeaa6102ef90 26374 2 2022-10-26 05:31:42 +0000 UTC map[name:rollover-pod pod-template-hash:87f8f6dcf] map[deployment.kubernetes.io/desired-replicas:1 deployment.kubernetes.io/max-replicas:2 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-rollover-deployment ad66d6d9-9168-4a72-b906-cbd7dfd99583 0xc0045a9c60 0xc0045a9c61}] [] [{kube-controller-manager Update apps/v1 2022-10-26 05:31:42 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"ad66d6d9-9168-4a72-b906-cbd7dfd99583\"}":{}}},"f:spec":{"f:minReadySeconds":{},"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"redis-slave\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:31:44 +0000 UTC FieldsV1 {"f:status":{"f:observedGeneration":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*0,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: rollover-pod,pod-template-hash: 87f8f6dcf,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:rollover-pod pod-template-hash:87f8f6dcf] map[] [] [] []} {[] [] [{redis-slave gcr.io/google_samples/gb-redisslave:nonexistent [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0045a9d08 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:10,},Status:ReplicaSetStatus{Replicas:0,FullyLabeledReplicas:0,ObservedGeneration:2,ReadyReplicas:0,AvailableReplicas:0,Conditions:[]ReplicaSetCondition{},},} +Oct 26 05:31:56.896: INFO: Pod "test-rollover-deployment-779c67f4f8-9x5rg" is available: +&Pod{ObjectMeta:{test-rollover-deployment-779c67f4f8-9x5rg test-rollover-deployment-779c67f4f8- deployment-1569 62dcfba6-dfed-4f96-b4e0-632972710a71 26384 0 2022-10-26 05:31:44 +0000 UTC map[name:rollover-pod pod-template-hash:779c67f4f8] map[] [{apps/v1 ReplicaSet test-rollover-deployment-779c67f4f8 23a41255-4c94-4602-bd02-1f7fb8a7c484 0xc0041ec267 0xc0041ec268}] [] [{kube-controller-manager Update v1 2022-10-26 05:31:44 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"23a41255-4c94-4602-bd02-1f7fb8a7c484\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"agnhost\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:31:46 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.2.135\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-mr8rg,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:agnhost,Image:k8s.gcr.io/e2e-test-images/agnhost:2.39,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-mr8rg,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:31:44 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:31:46 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:31:46 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:31:44 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:100.96.2.135,StartTime:2022-10-26 05:31:44 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:agnhost,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:31:46 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/agnhost:2.39,ImageID:k8s.gcr.io/e2e-test-images/agnhost@sha256:7e8bdd271312fd25fc5ff5a8f04727be84044eb3d7d8d03611972a6752e2e11e,ContainerID:containerd://83881d4c96e5fc91fe88af3d0ce31311124189d2f4bb42dd23717dba501ec401,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.2.135,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/framework.go:188 +Oct 26 05:31:56.896: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "deployment-1569" for this suite. + +• [SLOW TEST:21.157 seconds] +[sig-apps] Deployment +test/e2e/apps/framework.go:23 + deployment should support rollover [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Deployment deployment should support rollover [Conformance]","total":356,"completed":248,"skipped":4514,"failed":0} +SSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Proxy server + should support --unix-socket=/path [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:31:56.917: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[It] should support --unix-socket=/path [Conformance] + test/e2e/framework/framework.go:652 +STEP: Starting the proxy +Oct 26 05:31:56.947: INFO: Asynchronously running '/usr/local/bin/kubectl kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-1202 proxy --unix-socket=/tmp/kubectl-proxy-unix2605601037/test' +STEP: retrieving proxy /api/ output +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 05:31:56.991: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-1202" for this suite. +•{"msg":"PASSED [sig-cli] Kubectl client Proxy server should support --unix-socket=/path [Conformance]","total":356,"completed":249,"skipped":4524,"failed":0} +SSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl version + should check is all data is printed [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:31:57.005: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[It] should check is all data is printed [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:31:57.057: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-7250 version' +Oct 26 05:31:57.108: INFO: stderr: "WARNING: This version information is deprecated and will be replaced with the output from kubectl version --short. Use --output=yaml|json to get the full version.\n" +Oct 26 05:31:57.108: INFO: stdout: "Client Version: version.Info{Major:\"1\", Minor:\"24\", GitVersion:\"v1.24.6\", GitCommit:\"b39bf148cd654599a52e867485c02c4f9d28b312\", GitTreeState:\"clean\", BuildDate:\"2022-09-21T13:19:24Z\", GoVersion:\"go1.18.6\", Compiler:\"gc\", Platform:\"linux/amd64\"}\nKustomize Version: v4.5.4\nServer Version: version.Info{Major:\"1\", Minor:\"24\", GitVersion:\"v1.24.6-eks-eceb288\", GitCommit:\"eceb288d21f3128efb3fca4ef8d1a9f5de9d1566\", GitTreeState:\"archive\", BuildDate:\"2022-09-21T13:10:31Z\", GoVersion:\"go1.18.6\", Compiler:\"gc\", Platform:\"linux/amd64\"}\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 05:31:57.109: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-7250" for this suite. +•{"msg":"PASSED [sig-cli] Kubectl client Kubectl version should check is all data is printed [Conformance]","total":356,"completed":250,"skipped":4530,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + should list, patch and delete a collection of StatefulSets [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:31:57.116: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename statefulset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:96 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:111 +STEP: Creating service test in namespace statefulset-5757 +[It] should list, patch and delete a collection of StatefulSets [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:31:57.146: INFO: Found 0 stateful pods, waiting for 1 +Oct 26 05:32:07.155: INFO: Waiting for pod test-ss-0 to enter Running - Ready=true, currently Running - Ready=true +STEP: patching the StatefulSet +Oct 26 05:32:07.179: INFO: Found 1 stateful pods, waiting for 2 +Oct 26 05:32:17.189: INFO: Waiting for pod test-ss-0 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 05:32:17.189: INFO: Waiting for pod test-ss-1 to enter Running - Ready=true, currently Running - Ready=true +STEP: Listing all StatefulSets +STEP: Delete all of the StatefulSets +STEP: Verify that StatefulSets have been deleted +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:122 +Oct 26 05:32:17.203: INFO: Deleting all statefulset in ns statefulset-5757 +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:188 +Oct 26 05:32:17.224: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "statefulset-5757" for this suite. + +• [SLOW TEST:20.119 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:101 + should list, patch and delete a collection of StatefulSets [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should list, patch and delete a collection of StatefulSets [Conformance]","total":356,"completed":251,"skipped":4556,"failed":0} +SS +------------------------------ +[sig-storage] Projected configMap + should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:32:17.237: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name projected-configmap-test-volume-acb1c65d-a951-487f-9c46-3247e265255b +STEP: Creating a pod to test consume configMaps +Oct 26 05:32:17.293: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-426d00bf-befe-4ce2-9ed6-698b69f2a708" in namespace "projected-5627" to be "Succeeded or Failed" +Oct 26 05:32:17.307: INFO: Pod "pod-projected-configmaps-426d00bf-befe-4ce2-9ed6-698b69f2a708": Phase="Pending", Reason="", readiness=false. Elapsed: 13.774828ms +Oct 26 05:32:19.325: INFO: Pod "pod-projected-configmaps-426d00bf-befe-4ce2-9ed6-698b69f2a708": Phase="Pending", Reason="", readiness=false. Elapsed: 2.031893601s +Oct 26 05:32:21.331: INFO: Pod "pod-projected-configmaps-426d00bf-befe-4ce2-9ed6-698b69f2a708": Phase="Pending", Reason="", readiness=false. Elapsed: 4.037202599s +Oct 26 05:32:23.336: INFO: Pod "pod-projected-configmaps-426d00bf-befe-4ce2-9ed6-698b69f2a708": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.042387058s +STEP: Saw pod success +Oct 26 05:32:23.336: INFO: Pod "pod-projected-configmaps-426d00bf-befe-4ce2-9ed6-698b69f2a708" satisfied condition "Succeeded or Failed" +Oct 26 05:32:23.338: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-projected-configmaps-426d00bf-befe-4ce2-9ed6-698b69f2a708 container projected-configmap-volume-test: +STEP: delete the pod +Oct 26 05:32:23.355: INFO: Waiting for pod pod-projected-configmaps-426d00bf-befe-4ce2-9ed6-698b69f2a708 to disappear +Oct 26 05:32:23.358: INFO: Pod pod-projected-configmaps-426d00bf-befe-4ce2-9ed6-698b69f2a708 no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:188 +Oct 26 05:32:23.358: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-5627" for this suite. + +• [SLOW TEST:6.131 seconds] +[sig-storage] Projected configMap +test/e2e/common/storage/framework.go:23 + should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected configMap should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance]","total":356,"completed":252,"skipped":4558,"failed":0} +SSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Garbage collector + should orphan RS created by deployment when deleteOptions.PropagationPolicy is Orphan [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:32:23.369: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename gc +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should orphan RS created by deployment when deleteOptions.PropagationPolicy is Orphan [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the deployment +STEP: Wait for the Deployment to create new ReplicaSet +STEP: delete the deployment +STEP: wait for deployment deletion to see if the garbage collector mistakenly deletes the rs +STEP: Gathering metrics +Oct 26 05:32:24.432: INFO: The status of Pod kube-controller-manager-i-01a506a1cd9f42b49 is Running (Ready = true) +Oct 26 05:32:24.506: INFO: For apiserver_request_total: +For apiserver_request_latency_seconds: +For apiserver_init_events_total: +For garbage_collector_attempt_to_delete_queue_latency: +For garbage_collector_attempt_to_delete_work_duration: +For garbage_collector_attempt_to_orphan_queue_latency: +For garbage_collector_attempt_to_orphan_work_duration: +For garbage_collector_dirty_processing_latency_microseconds: +For garbage_collector_event_processing_latency_microseconds: +For garbage_collector_graph_changes_queue_latency: +For garbage_collector_graph_changes_work_duration: +For garbage_collector_orphan_processing_latency_microseconds: +For namespace_queue_latency: +For namespace_queue_latency_sum: +For namespace_queue_latency_count: +For namespace_retries: +For namespace_work_duration: +For namespace_work_duration_sum: +For namespace_work_duration_count: +For function_duration_seconds: +For errors_total: +For evicted_pods_total: + +[AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:188 +Oct 26 05:32:24.506: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "gc-3331" for this suite. +•{"msg":"PASSED [sig-api-machinery] Garbage collector should orphan RS created by deployment when deleteOptions.PropagationPolicy is Orphan [Conformance]","total":356,"completed":253,"skipped":4572,"failed":0} +SS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:32:24.514: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name projected-configmap-test-volume-map-c7239adf-3604-44b8-a477-d97c1b78f0ad +STEP: Creating a pod to test consume configMaps +Oct 26 05:32:24.537: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-3a9b3308-40fa-4647-a1ba-8c5de50eb7f5" in namespace "projected-5778" to be "Succeeded or Failed" +Oct 26 05:32:24.541: INFO: Pod "pod-projected-configmaps-3a9b3308-40fa-4647-a1ba-8c5de50eb7f5": Phase="Pending", Reason="", readiness=false. Elapsed: 3.711065ms +Oct 26 05:32:26.548: INFO: Pod "pod-projected-configmaps-3a9b3308-40fa-4647-a1ba-8c5de50eb7f5": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010321317s +Oct 26 05:32:28.553: INFO: Pod "pod-projected-configmaps-3a9b3308-40fa-4647-a1ba-8c5de50eb7f5": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015971057s +Oct 26 05:32:30.561: INFO: Pod "pod-projected-configmaps-3a9b3308-40fa-4647-a1ba-8c5de50eb7f5": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.023841884s +STEP: Saw pod success +Oct 26 05:32:30.561: INFO: Pod "pod-projected-configmaps-3a9b3308-40fa-4647-a1ba-8c5de50eb7f5" satisfied condition "Succeeded or Failed" +Oct 26 05:32:30.564: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-projected-configmaps-3a9b3308-40fa-4647-a1ba-8c5de50eb7f5 container agnhost-container: +STEP: delete the pod +Oct 26 05:32:30.578: INFO: Waiting for pod pod-projected-configmaps-3a9b3308-40fa-4647-a1ba-8c5de50eb7f5 to disappear +Oct 26 05:32:30.580: INFO: Pod pod-projected-configmaps-3a9b3308-40fa-4647-a1ba-8c5de50eb7f5 no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:188 +Oct 26 05:32:30.580: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-5778" for this suite. + +• [SLOW TEST:6.072 seconds] +[sig-storage] Projected configMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected configMap should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":254,"skipped":4574,"failed":0} +SSSSSSSSS +------------------------------ +[sig-api-machinery] Garbage collector + should delete pods created by rc when not orphaning [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:32:30.588: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename gc +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should delete pods created by rc when not orphaning [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the rc +STEP: delete the rc +STEP: wait for all pods to be garbage collected +STEP: Gathering metrics +Oct 26 05:32:40.645: INFO: The status of Pod kube-controller-manager-i-01a506a1cd9f42b49 is Running (Ready = true) +Oct 26 05:32:40.706: INFO: For apiserver_request_total: +For apiserver_request_latency_seconds: +For apiserver_init_events_total: +For garbage_collector_attempt_to_delete_queue_latency: +For garbage_collector_attempt_to_delete_work_duration: +For garbage_collector_attempt_to_orphan_queue_latency: +For garbage_collector_attempt_to_orphan_work_duration: +For garbage_collector_dirty_processing_latency_microseconds: +For garbage_collector_event_processing_latency_microseconds: +For garbage_collector_graph_changes_queue_latency: +For garbage_collector_graph_changes_work_duration: +For garbage_collector_orphan_processing_latency_microseconds: +For namespace_queue_latency: +For namespace_queue_latency_sum: +For namespace_queue_latency_count: +For namespace_retries: +For namespace_work_duration: +For namespace_work_duration_sum: +For namespace_work_duration_count: +For function_duration_seconds: +For errors_total: +For evicted_pods_total: + +[AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:188 +Oct 26 05:32:40.706: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "gc-8619" for this suite. + +• [SLOW TEST:10.127 seconds] +[sig-api-machinery] Garbage collector +test/e2e/apimachinery/framework.go:23 + should delete pods created by rc when not orphaning [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] Garbage collector should delete pods created by rc when not orphaning [Conformance]","total":356,"completed":255,"skipped":4583,"failed":0} +SSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be immutable if `immutable` field is set [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:32:40.718: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be immutable if `immutable` field is set [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 05:32:40.783: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-7755" for this suite. +•{"msg":"PASSED [sig-storage] ConfigMap should be immutable if `immutable` field is set [Conformance]","total":356,"completed":256,"skipped":4593,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] NoExecuteTaintManager Multiple Pods [Serial] + evicts pods with minTolerationSeconds [Disruptive] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:32:40.794: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename taint-multiple-pods +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + test/e2e/node/taints.go:348 +Oct 26 05:32:40.811: INFO: Waiting up to 1m0s for all nodes to be ready +Oct 26 05:33:40.853: INFO: Waiting for terminating namespaces to be deleted... +[It] evicts pods with minTolerationSeconds [Disruptive] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:33:40.856: INFO: Starting informer... +STEP: Starting pods... +Oct 26 05:33:41.072: INFO: Pod1 is running on i-066ef2cf0d4227da4. Tainting Node +Oct 26 05:33:45.298: INFO: Pod2 is running on i-066ef2cf0d4227da4. Tainting Node +STEP: Trying to apply a taint on the Node +STEP: verifying the node has the taint kubernetes.io/e2e-evict-taint-key=evictTaintVal:NoExecute +STEP: Waiting for Pod1 and Pod2 to be deleted +Oct 26 05:33:51.814: INFO: Noticed Pod "taint-eviction-b1" gets evicted. +Oct 26 05:34:10.819: INFO: Noticed Pod "taint-eviction-b2" gets evicted. +STEP: verifying the node doesn't have the taint kubernetes.io/e2e-evict-taint-key=evictTaintVal:NoExecute +[AfterEach] [sig-node] NoExecuteTaintManager Multiple Pods [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:34:10.843: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "taint-multiple-pods-7063" for this suite. + +• [SLOW TEST:90.056 seconds] +[sig-node] NoExecuteTaintManager Multiple Pods [Serial] +test/e2e/node/framework.go:23 + evicts pods with minTolerationSeconds [Disruptive] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] NoExecuteTaintManager Multiple Pods [Serial] evicts pods with minTolerationSeconds [Disruptive] [Conformance]","total":356,"completed":257,"skipped":4672,"failed":0} +[sig-scheduling] SchedulerPreemption [Serial] + validates basic preemption works [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:34:10.851: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sched-preemption +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:92 +Oct 26 05:34:10.892: INFO: Waiting up to 1m0s for all nodes to be ready +Oct 26 05:35:10.988: INFO: Waiting for terminating namespaces to be deleted... +[It] validates basic preemption works [Conformance] + test/e2e/framework/framework.go:652 +STEP: Create pods that use 4/5 of node resources. +Oct 26 05:35:11.033: INFO: Created pod: pod0-0-sched-preemption-low-priority +Oct 26 05:35:11.040: INFO: Created pod: pod0-1-sched-preemption-medium-priority +Oct 26 05:35:11.062: INFO: Created pod: pod1-0-sched-preemption-medium-priority +Oct 26 05:35:11.067: INFO: Created pod: pod1-1-sched-preemption-medium-priority +Oct 26 05:35:11.091: INFO: Created pod: pod2-0-sched-preemption-medium-priority +Oct 26 05:35:11.103: INFO: Created pod: pod2-1-sched-preemption-medium-priority +STEP: Wait for pods to be scheduled. +STEP: Run a high priority pod that has same requirements as that of lower priority pod +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:35:27.156: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sched-preemption-4608" for this suite. +[AfterEach] [sig-scheduling] SchedulerPreemption [Serial] + test/e2e/scheduling/preemption.go:80 + +• [SLOW TEST:76.359 seconds] +[sig-scheduling] SchedulerPreemption [Serial] +test/e2e/scheduling/framework.go:40 + validates basic preemption works [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-scheduling] SchedulerPreemption [Serial] validates basic preemption works [Conformance]","total":356,"completed":258,"skipped":4672,"failed":0} +SSSSSSSSSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + should perform rolling updates and roll backs of template modifications [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:35:27.211: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename statefulset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:96 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:111 +STEP: Creating service test in namespace statefulset-5626 +[It] should perform rolling updates and roll backs of template modifications [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a new StatefulSet +Oct 26 05:35:27.260: INFO: Found 0 stateful pods, waiting for 3 +Oct 26 05:35:37.264: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 05:35:37.264: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 05:35:37.264: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 05:35:37.270: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-5626 exec ss2-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Oct 26 05:35:37.455: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Oct 26 05:35:37.455: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Oct 26 05:35:37.455: INFO: stdout of mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true on ss2-1: '/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html' + +STEP: Updating StatefulSet template: update image from k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 to k8s.gcr.io/e2e-test-images/httpd:2.4.39-2 +Oct 26 05:35:47.484: INFO: Updating stateful set ss2 +STEP: Creating a new revision +STEP: Updating Pods in reverse ordinal order +Oct 26 05:35:57.504: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-5626 exec ss2-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Oct 26 05:35:57.645: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Oct 26 05:35:57.645: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Oct 26 05:35:57.645: INFO: stdout of mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true on ss2-1: '/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html' + +STEP: Rolling back to a previous revision +Oct 26 05:36:17.662: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-5626 exec ss2-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Oct 26 05:36:17.815: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Oct 26 05:36:17.815: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Oct 26 05:36:17.815: INFO: stdout of mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true on ss2-1: '/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html' + +Oct 26 05:36:27.847: INFO: Updating stateful set ss2 +STEP: Rolling back update in reverse ordinal order +Oct 26 05:36:37.862: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-5626 exec ss2-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Oct 26 05:36:37.994: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Oct 26 05:36:37.994: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Oct 26 05:36:37.994: INFO: stdout of mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true on ss2-1: '/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html' + +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:122 +Oct 26 05:36:48.026: INFO: Deleting all statefulset in ns statefulset-5626 +Oct 26 05:36:48.028: INFO: Scaling statefulset ss2 to 0 +Oct 26 05:36:58.053: INFO: Waiting for statefulset status.replicas updated to 0 +Oct 26 05:36:58.055: INFO: Deleting statefulset ss2 +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:188 +Oct 26 05:36:58.069: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "statefulset-5626" for this suite. + +• [SLOW TEST:90.886 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:101 + should perform rolling updates and roll backs of template modifications [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform rolling updates and roll backs of template modifications [Conformance]","total":356,"completed":259,"skipped":4685,"failed":0} +SSSSSSSSS +------------------------------ +[sig-node] Container Runtime blackbox test on terminated container + should report termination message as empty when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Container Runtime + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:36:58.098: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-runtime +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should report termination message as empty when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the container +STEP: wait for the container to reach Succeeded +STEP: get the container status +STEP: the container should be terminated +STEP: the termination message should be set +Oct 26 05:37:03.169: INFO: Expected: &{} to match Container's Termination Message: -- +STEP: delete the container +[AfterEach] [sig-node] Container Runtime + test/e2e/framework/framework.go:188 +Oct 26 05:37:03.181: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-runtime-2124" for this suite. + +• [SLOW TEST:5.091 seconds] +[sig-node] Container Runtime +test/e2e/common/node/framework.go:23 + blackbox test + test/e2e/common/node/runtime.go:43 + on terminated container + test/e2e/common/node/runtime.go:136 + should report termination message as empty when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Container Runtime blackbox test on terminated container should report termination message as empty when pod succeeds and TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance]","total":356,"completed":260,"skipped":4694,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Job + should create pods for an Indexed job with completion indexes and specified hostname [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Job + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:37:03.190: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename job +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should create pods for an Indexed job with completion indexes and specified hostname [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating Indexed job +STEP: Ensuring job reaches completions +STEP: Ensuring pods with index for job exist +[AfterEach] [sig-apps] Job + test/e2e/framework/framework.go:188 +Oct 26 05:37:15.229: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "job-6377" for this suite. + +• [SLOW TEST:12.051 seconds] +[sig-apps] Job +test/e2e/apps/framework.go:23 + should create pods for an Indexed job with completion indexes and specified hostname [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Job should create pods for an Indexed job with completion indexes and specified hostname [Conformance]","total":356,"completed":261,"skipped":4719,"failed":0} +SSSSSSSS +------------------------------ +[sig-network] Proxy version v1 + A set of valid responses are returned for both pod and service ProxyWithPath [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] version v1 + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:37:15.240: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename proxy +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] A set of valid responses are returned for both pod and service ProxyWithPath [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:37:15.287: INFO: Creating pod... +Oct 26 05:37:17.331: INFO: Creating service... +Oct 26 05:37:17.381: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/pods/agnhost/proxy/some/path/with/DELETE +Oct 26 05:37:17.399: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE +Oct 26 05:37:17.399: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/pods/agnhost/proxy/some/path/with/GET +Oct 26 05:37:17.419: INFO: http.Client request:GET | StatusCode:200 | Response:foo | Method:GET +Oct 26 05:37:17.419: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/pods/agnhost/proxy/some/path/with/HEAD +Oct 26 05:37:17.428: INFO: http.Client request:HEAD | StatusCode:200 +Oct 26 05:37:17.429: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/pods/agnhost/proxy/some/path/with/OPTIONS +Oct 26 05:37:17.436: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS +Oct 26 05:37:17.438: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/pods/agnhost/proxy/some/path/with/PATCH +Oct 26 05:37:17.445: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH +Oct 26 05:37:17.449: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/pods/agnhost/proxy/some/path/with/POST +Oct 26 05:37:17.456: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST +Oct 26 05:37:17.457: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/pods/agnhost/proxy/some/path/with/PUT +Oct 26 05:37:17.462: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT +Oct 26 05:37:17.464: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/services/test-service/proxy/some/path/with/DELETE +Oct 26 05:37:17.471: INFO: http.Client request:DELETE | StatusCode:200 | Response:foo | Method:DELETE +Oct 26 05:37:17.471: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/services/test-service/proxy/some/path/with/GET +Oct 26 05:37:17.479: INFO: http.Client request:GET | StatusCode:200 | Response:foo | Method:GET +Oct 26 05:37:17.480: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/services/test-service/proxy/some/path/with/HEAD +Oct 26 05:37:17.487: INFO: http.Client request:HEAD | StatusCode:200 +Oct 26 05:37:17.488: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/services/test-service/proxy/some/path/with/OPTIONS +Oct 26 05:37:17.497: INFO: http.Client request:OPTIONS | StatusCode:200 | Response:foo | Method:OPTIONS +Oct 26 05:37:17.499: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/services/test-service/proxy/some/path/with/PATCH +Oct 26 05:37:17.505: INFO: http.Client request:PATCH | StatusCode:200 | Response:foo | Method:PATCH +Oct 26 05:37:17.506: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/services/test-service/proxy/some/path/with/POST +Oct 26 05:37:17.509: INFO: http.Client request:POST | StatusCode:200 | Response:foo | Method:POST +Oct 26 05:37:17.510: INFO: Starting http.Client for https://100.64.0.1:443/api/v1/namespaces/proxy-3988/services/test-service/proxy/some/path/with/PUT +Oct 26 05:37:17.513: INFO: http.Client request:PUT | StatusCode:200 | Response:foo | Method:PUT +[AfterEach] version v1 + test/e2e/framework/framework.go:188 +Oct 26 05:37:17.513: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "proxy-3988" for this suite. +•{"msg":"PASSED [sig-network] Proxy version v1 A set of valid responses are returned for both pod and service ProxyWithPath [Conformance]","total":356,"completed":262,"skipped":4727,"failed":0} +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Subpath Atomic writer volumes + should support subpaths with projected pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Subpath + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:37:17.529: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename subpath +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 +STEP: Setting up data +[It] should support subpaths with projected pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating pod pod-subpath-test-projected-89kq +STEP: Creating a pod to test atomic-volume-subpath +Oct 26 05:37:17.558: INFO: Waiting up to 5m0s for pod "pod-subpath-test-projected-89kq" in namespace "subpath-6167" to be "Succeeded or Failed" +Oct 26 05:37:17.566: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Pending", Reason="", readiness=false. Elapsed: 8.585357ms +Oct 26 05:37:19.573: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Pending", Reason="", readiness=false. Elapsed: 2.015422302s +Oct 26 05:37:21.580: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Running", Reason="", readiness=true. Elapsed: 4.022025634s +Oct 26 05:37:23.585: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Running", Reason="", readiness=true. Elapsed: 6.027552643s +Oct 26 05:37:25.591: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Running", Reason="", readiness=true. Elapsed: 8.03283771s +Oct 26 05:37:27.594: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Running", Reason="", readiness=true. Elapsed: 10.036400302s +Oct 26 05:37:29.599: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Running", Reason="", readiness=true. Elapsed: 12.041544061s +Oct 26 05:37:31.607: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Running", Reason="", readiness=true. Elapsed: 14.049305182s +Oct 26 05:37:33.613: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Running", Reason="", readiness=true. Elapsed: 16.055208484s +Oct 26 05:37:35.617: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Running", Reason="", readiness=true. Elapsed: 18.059235277s +Oct 26 05:37:37.621: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Running", Reason="", readiness=true. Elapsed: 20.063301279s +Oct 26 05:37:39.628: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Running", Reason="", readiness=true. Elapsed: 22.070340665s +Oct 26 05:37:41.638: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Running", Reason="", readiness=false. Elapsed: 24.079742993s +Oct 26 05:37:43.642: INFO: Pod "pod-subpath-test-projected-89kq": Phase="Succeeded", Reason="", readiness=false. Elapsed: 26.084552084s +STEP: Saw pod success +Oct 26 05:37:43.642: INFO: Pod "pod-subpath-test-projected-89kq" satisfied condition "Succeeded or Failed" +Oct 26 05:37:43.645: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-subpath-test-projected-89kq container test-container-subpath-projected-89kq: +STEP: delete the pod +Oct 26 05:37:43.678: INFO: Waiting for pod pod-subpath-test-projected-89kq to disappear +Oct 26 05:37:43.681: INFO: Pod pod-subpath-test-projected-89kq no longer exists +STEP: Deleting pod pod-subpath-test-projected-89kq +Oct 26 05:37:43.681: INFO: Deleting pod "pod-subpath-test-projected-89kq" in namespace "subpath-6167" +[AfterEach] [sig-storage] Subpath + test/e2e/framework/framework.go:188 +Oct 26 05:37:43.687: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "subpath-6167" for this suite. + +• [SLOW TEST:26.164 seconds] +[sig-storage] Subpath +test/e2e/storage/utils/framework.go:23 + Atomic writer volumes + test/e2e/storage/subpath.go:36 + should support subpaths with projected pod [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Subpath Atomic writer volumes should support subpaths with projected pod [Conformance]","total":356,"completed":263,"skipped":4746,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Sysctls [LinuxOnly] [NodeConformance] + should support sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:37 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:37:43.695: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sysctl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:67 +[It] should support sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod with the kernel.shm_rmid_forced sysctl +STEP: Watching for error events or started pod +STEP: Waiting for pod completion +STEP: Checking that the pod succeeded +STEP: Getting logs from the pod +STEP: Checking that the sysctl is actually updated +[AfterEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/framework.go:188 +Oct 26 05:37:47.745: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sysctl-2146" for this suite. +•{"msg":"PASSED [sig-node] Sysctls [LinuxOnly] [NodeConformance] should support sysctls [MinimumKubeletVersion:1.21] [Conformance]","total":356,"completed":264,"skipped":4795,"failed":0} +SSSSS +------------------------------ +[sig-node] Variable Expansion + should allow substituting values in a volume subpath [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:37:47.754: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename var-expansion +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should allow substituting values in a volume subpath [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test substitution in volume subpath +Oct 26 05:37:47.775: INFO: Waiting up to 5m0s for pod "var-expansion-27a95b52-efeb-4656-8a5e-128ae54bdcaa" in namespace "var-expansion-6244" to be "Succeeded or Failed" +Oct 26 05:37:47.778: INFO: Pod "var-expansion-27a95b52-efeb-4656-8a5e-128ae54bdcaa": Phase="Pending", Reason="", readiness=false. Elapsed: 2.851767ms +Oct 26 05:37:49.784: INFO: Pod "var-expansion-27a95b52-efeb-4656-8a5e-128ae54bdcaa": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008280213s +Oct 26 05:37:51.789: INFO: Pod "var-expansion-27a95b52-efeb-4656-8a5e-128ae54bdcaa": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.013246472s +STEP: Saw pod success +Oct 26 05:37:51.789: INFO: Pod "var-expansion-27a95b52-efeb-4656-8a5e-128ae54bdcaa" satisfied condition "Succeeded or Failed" +Oct 26 05:37:51.791: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod var-expansion-27a95b52-efeb-4656-8a5e-128ae54bdcaa container dapi-container: +STEP: delete the pod +Oct 26 05:37:51.803: INFO: Waiting for pod var-expansion-27a95b52-efeb-4656-8a5e-128ae54bdcaa to disappear +Oct 26 05:37:51.806: INFO: Pod var-expansion-27a95b52-efeb-4656-8a5e-128ae54bdcaa no longer exists +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:188 +Oct 26 05:37:51.806: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "var-expansion-6244" for this suite. +•{"msg":"PASSED [sig-node] Variable Expansion should allow substituting values in a volume subpath [Conformance]","total":356,"completed":265,"skipped":4800,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Proxy server + should support proxy with --port 0 [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:37:51.820: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[It] should support proxy with --port 0 [Conformance] + test/e2e/framework/framework.go:652 +STEP: starting the proxy server +Oct 26 05:37:51.838: INFO: Asynchronously running '/usr/local/bin/kubectl kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8038 proxy -p 0 --disable-filter' +STEP: curling proxy /api/ output +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 05:37:51.886: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-8038" for this suite. +•{"msg":"PASSED [sig-cli] Kubectl client Proxy server should support proxy with --port 0 [Conformance]","total":356,"completed":266,"skipped":4825,"failed":0} +SSS +------------------------------ +[sig-storage] Secrets + should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:37:51.892: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating secret with name secret-test-b1621ab8-fc4a-4952-a6fe-36fbdbdd0627 +STEP: Creating a pod to test consume secrets +Oct 26 05:37:51.912: INFO: Waiting up to 5m0s for pod "pod-secrets-9c97e07d-ff48-4dc2-b9af-979f9efd636a" in namespace "secrets-505" to be "Succeeded or Failed" +Oct 26 05:37:51.914: INFO: Pod "pod-secrets-9c97e07d-ff48-4dc2-b9af-979f9efd636a": Phase="Pending", Reason="", readiness=false. Elapsed: 2.633087ms +Oct 26 05:37:53.920: INFO: Pod "pod-secrets-9c97e07d-ff48-4dc2-b9af-979f9efd636a": Phase="Running", Reason="", readiness=true. Elapsed: 2.008526832s +Oct 26 05:37:55.926: INFO: Pod "pod-secrets-9c97e07d-ff48-4dc2-b9af-979f9efd636a": Phase="Running", Reason="", readiness=false. Elapsed: 4.014538885s +Oct 26 05:37:57.931: INFO: Pod "pod-secrets-9c97e07d-ff48-4dc2-b9af-979f9efd636a": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.019255737s +STEP: Saw pod success +Oct 26 05:37:57.931: INFO: Pod "pod-secrets-9c97e07d-ff48-4dc2-b9af-979f9efd636a" satisfied condition "Succeeded or Failed" +Oct 26 05:37:57.933: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-secrets-9c97e07d-ff48-4dc2-b9af-979f9efd636a container secret-volume-test: +STEP: delete the pod +Oct 26 05:37:57.946: INFO: Waiting for pod pod-secrets-9c97e07d-ff48-4dc2-b9af-979f9efd636a to disappear +Oct 26 05:37:57.948: INFO: Pod pod-secrets-9c97e07d-ff48-4dc2-b9af-979f9efd636a no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/framework.go:188 +Oct 26 05:37:57.948: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-505" for this suite. + +• [SLOW TEST:6.064 seconds] +[sig-storage] Secrets +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Secrets should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":267,"skipped":4828,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Probing container + should be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:37:57.961: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-probe +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:61 +[It] should be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating pod liveness-0b41be5e-3838-4a53-a959-0bff916d9ab6 in namespace container-probe-427 +Oct 26 05:38:02.002: INFO: Started pod liveness-0b41be5e-3838-4a53-a959-0bff916d9ab6 in namespace container-probe-427 +STEP: checking the pod's current state and verifying that restartCount is present +Oct 26 05:38:02.005: INFO: Initial restart count of pod liveness-0b41be5e-3838-4a53-a959-0bff916d9ab6 is 0 +Oct 26 05:38:20.076: INFO: Restart count of pod container-probe-427/liveness-0b41be5e-3838-4a53-a959-0bff916d9ab6 is now 1 (18.070444032s elapsed) +STEP: deleting the pod +[AfterEach] [sig-node] Probing container + test/e2e/framework/framework.go:188 +Oct 26 05:38:20.084: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-probe-427" for this suite. + +• [SLOW TEST:22.132 seconds] +[sig-node] Probing container +test/e2e/common/node/framework.go:23 + should be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Probing container should be restarted with a /healthz http liveness probe [NodeConformance] [Conformance]","total":356,"completed":268,"skipped":4877,"failed":0} +S +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should honor timeout [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:38:20.093: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:38:20.735: INFO: new replicaset for deployment "sample-webhook-deployment" is yet to be created +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:38:23.753: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should honor timeout [Conformance] + test/e2e/framework/framework.go:652 +STEP: Setting timeout (1s) shorter than webhook latency (5s) +STEP: Registering slow webhook via the AdmissionRegistration API +STEP: Request fails when timeout (1s) is shorter than slow webhook latency (5s) +STEP: Having no error when timeout is shorter than webhook latency and failure policy is ignore +STEP: Registering slow webhook via the AdmissionRegistration API +STEP: Having no error when timeout is longer than webhook latency +STEP: Registering slow webhook via the AdmissionRegistration API +STEP: Having no error when timeout is empty (defaulted to 10s in v1) +STEP: Registering slow webhook via the AdmissionRegistration API +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:38:35.846: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-4342" for this suite. +STEP: Destroying namespace "webhook-4342-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:15.797 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should honor timeout [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should honor timeout [Conformance]","total":356,"completed":269,"skipped":4878,"failed":0} +SSSSSSSSSSSS +------------------------------ +[sig-auth] ServiceAccounts + ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:38:35.891: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename svcaccounts +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:38:35.986: INFO: created pod +Oct 26 05:38:35.986: INFO: Waiting up to 5m0s for pod "oidc-discovery-validator" in namespace "svcaccounts-5027" to be "Succeeded or Failed" +Oct 26 05:38:35.997: INFO: Pod "oidc-discovery-validator": Phase="Pending", Reason="", readiness=false. Elapsed: 11.410794ms +Oct 26 05:38:38.002: INFO: Pod "oidc-discovery-validator": Phase="Pending", Reason="", readiness=false. Elapsed: 2.015936843s +Oct 26 05:38:40.016: INFO: Pod "oidc-discovery-validator": Phase="Pending", Reason="", readiness=false. Elapsed: 4.030351101s +Oct 26 05:38:42.021: INFO: Pod "oidc-discovery-validator": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.035279771s +STEP: Saw pod success +Oct 26 05:38:42.021: INFO: Pod "oidc-discovery-validator" satisfied condition "Succeeded or Failed" +Oct 26 05:39:12.025: INFO: polling logs +Oct 26 05:39:12.032: INFO: Pod logs: +I1026 05:38:37.588068 1 log.go:195] OK: Got token +I1026 05:38:37.588103 1 log.go:195] validating with in-cluster discovery +I1026 05:38:37.588438 1 log.go:195] OK: got issuer https://api.internal.1-24-amd64-9616b17.prod-build-pdx.kops-ci.model-rocket.aws.dev +I1026 05:38:37.588476 1 log.go:195] Full, not-validated claims: +openidmetadata.claims{Claims:jwt.Claims{Issuer:"https://api.internal.1-24-amd64-9616b17.prod-build-pdx.kops-ci.model-rocket.aws.dev", Subject:"system:serviceaccount:svcaccounts-5027:default", Audience:jwt.Audience{"oidc-discovery-test"}, Expiry:1666763316, NotBefore:1666762716, IssuedAt:1666762716, ID:""}, Kubernetes:openidmetadata.kubeClaims{Namespace:"svcaccounts-5027", ServiceAccount:openidmetadata.kubeName{Name:"default", UID:"e5ce9c51-e93e-4df1-ac4d-ecf8f5450793"}}} +I1026 05:38:37.598843 1 log.go:195] OK: Constructed OIDC provider for issuer https://api.internal.1-24-amd64-9616b17.prod-build-pdx.kops-ci.model-rocket.aws.dev +I1026 05:38:37.601152 1 log.go:195] OK: Validated signature on JWT +I1026 05:38:37.601227 1 log.go:195] OK: Got valid claims from token! +I1026 05:38:37.601245 1 log.go:195] Full, validated claims: +&openidmetadata.claims{Claims:jwt.Claims{Issuer:"https://api.internal.1-24-amd64-9616b17.prod-build-pdx.kops-ci.model-rocket.aws.dev", Subject:"system:serviceaccount:svcaccounts-5027:default", Audience:jwt.Audience{"oidc-discovery-test"}, Expiry:1666763316, NotBefore:1666762716, IssuedAt:1666762716, ID:""}, Kubernetes:openidmetadata.kubeClaims{Namespace:"svcaccounts-5027", ServiceAccount:openidmetadata.kubeName{Name:"default", UID:"e5ce9c51-e93e-4df1-ac4d-ecf8f5450793"}}} + +Oct 26 05:39:12.032: INFO: completed pod +[AfterEach] [sig-auth] ServiceAccounts + test/e2e/framework/framework.go:188 +Oct 26 05:39:12.042: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "svcaccounts-5027" for this suite. + +• [SLOW TEST:36.159 seconds] +[sig-auth] ServiceAccounts +test/e2e/auth/framework.go:23 + ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-auth] ServiceAccounts ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer [Conformance]","total":356,"completed":270,"skipped":4890,"failed":0} +SSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should mutate custom resource with different stored version [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:39:12.050: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:39:12.593: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Oct 26 05:39:14.600: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 39, 12, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 39, 12, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 39, 12, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 39, 12, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:39:17.614: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should mutate custom resource with different stored version [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:39:17.617: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Registering the mutating webhook for custom resource e2e-test-webhook-9589-crds.webhook.example.com via the AdmissionRegistration API +STEP: Creating a custom resource while v1 is storage version +STEP: Patching Custom Resource Definition to set v2 as storage +STEP: Patching the custom resource while v2 is storage version +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:39:20.782: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-5948" for this suite. +STEP: Destroying namespace "webhook-5948-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:8.925 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should mutate custom resource with different stored version [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate custom resource with different stored version [Conformance]","total":356,"completed":271,"skipped":4896,"failed":0} +SSSSSS +------------------------------ +[sig-apps] Deployment + Deployment should have a working scale subresource [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Deployment + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:39:20.975: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename deployment +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:91 +[It] Deployment should have a working scale subresource [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:39:21.125: INFO: Creating simple deployment test-new-deployment +Oct 26 05:39:21.157: INFO: deployment "test-new-deployment" doesn't have the required revision set +STEP: getting scale subresource +STEP: updating a scale subresource +STEP: verifying the deployment Spec.Replicas was modified +STEP: Patch a scale subresource +[AfterEach] [sig-apps] Deployment + test/e2e/apps/deployment.go:84 +Oct 26 05:39:23.196: INFO: Deployment "test-new-deployment": +&Deployment{ObjectMeta:{test-new-deployment deployment-2538 0275aa5f-7c17-419c-b564-8168f42b11c9 29176 3 2022-10-26 05:39:21 +0000 UTC map[name:httpd] map[deployment.kubernetes.io/revision:1] [] [] [{e2e.test Update apps/v1 FieldsV1 {"f:spec":{"f:replicas":{}}} scale} {e2e.test Update apps/v1 2022-10-26 05:39:21 +0000 UTC FieldsV1 {"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:progressDeadlineSeconds":{},"f:revisionHistoryLimit":{},"f:selector":{},"f:strategy":{"f:rollingUpdate":{".":{},"f:maxSurge":{},"f:maxUnavailable":{}},"f:type":{}},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:39:22 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/revision":{}}},"f:status":{"f:availableReplicas":{},"f:conditions":{".":{},"k:{\"type\":\"Available\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Progressing\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:message":{},"f:reason":{},"f:status":{},"f:type":{}}},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{},"f:updatedReplicas":{}}} status}]},Spec:DeploymentSpec{Replicas:*4,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: httpd,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:httpd] map[] [] [] []} {[] [] [{httpd k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc0048d12d8 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},Strategy:DeploymentStrategy{Type:RollingUpdate,RollingUpdate:&RollingUpdateDeployment{MaxUnavailable:25%!,(MISSING)MaxSurge:25%!,(MISSING)},},MinReadySeconds:0,RevisionHistoryLimit:*10,Paused:false,ProgressDeadlineSeconds:*600,},Status:DeploymentStatus{ObservedGeneration:1,Replicas:1,UpdatedReplicas:1,AvailableReplicas:1,UnavailableReplicas:0,Conditions:[]DeploymentCondition{DeploymentCondition{Type:Available,Status:True,Reason:MinimumReplicasAvailable,Message:Deployment has minimum availability.,LastUpdateTime:2022-10-26 05:39:22 +0000 UTC,LastTransitionTime:2022-10-26 05:39:22 +0000 UTC,},DeploymentCondition{Type:Progressing,Status:True,Reason:NewReplicaSetAvailable,Message:ReplicaSet "test-new-deployment-55df494869" has successfully progressed.,LastUpdateTime:2022-10-26 05:39:22 +0000 UTC,LastTransitionTime:2022-10-26 05:39:21 +0000 UTC,},},ReadyReplicas:1,CollisionCount:nil,},} + +Oct 26 05:39:23.203: INFO: New ReplicaSet "test-new-deployment-55df494869" of Deployment "test-new-deployment": +&ReplicaSet{ObjectMeta:{test-new-deployment-55df494869 deployment-2538 aa83fe09-0dfa-410d-8054-0dd8d8cf3361 29175 2 2022-10-26 05:39:21 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[deployment.kubernetes.io/desired-replicas:2 deployment.kubernetes.io/max-replicas:3 deployment.kubernetes.io/revision:1] [{apps/v1 Deployment test-new-deployment 0275aa5f-7c17-419c-b564-8168f42b11c9 0xc005bdf3f7 0xc005bdf3f8}] [] [{kube-controller-manager Update apps/v1 2022-10-26 05:39:21 +0000 UTC FieldsV1 {"f:metadata":{"f:annotations":{".":{},"f:deployment.kubernetes.io/desired-replicas":{},"f:deployment.kubernetes.io/max-replicas":{},"f:deployment.kubernetes.io/revision":{}},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"0275aa5f-7c17-419c-b564-8168f42b11c9\"}":{}}},"f:spec":{"f:replicas":{},"f:selector":{},"f:template":{"f:metadata":{"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}}}} } {kube-controller-manager Update apps/v1 2022-10-26 05:39:22 +0000 UTC FieldsV1 {"f:status":{"f:availableReplicas":{},"f:fullyLabeledReplicas":{},"f:observedGeneration":{},"f:readyReplicas":{},"f:replicas":{}}} status}]},Spec:ReplicaSetSpec{Replicas:*2,Selector:&v1.LabelSelector{MatchLabels:map[string]string{name: httpd,pod-template-hash: 55df494869,},MatchExpressions:[]LabelSelectorRequirement{},},Template:{{ 0 0001-01-01 00:00:00 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [] [] []} {[] [] [{httpd k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 [] [] [] [] [] {map[] map[]} [] [] nil nil nil nil /dev/termination-log File IfNotPresent SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,} false false false}] [] Always 0xc005bdf498 ClusterFirst map[] false false false &PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,} [] nil default-scheduler [] [] nil [] map[] [] nil}},MinReadySeconds:0,},Status:ReplicaSetStatus{Replicas:1,FullyLabeledReplicas:1,ObservedGeneration:1,ReadyReplicas:1,AvailableReplicas:1,Conditions:[]ReplicaSetCondition{},},} +Oct 26 05:39:23.222: INFO: Pod "test-new-deployment-55df494869-2mzvx" is available: +&Pod{ObjectMeta:{test-new-deployment-55df494869-2mzvx test-new-deployment-55df494869- deployment-2538 478ac46d-b5e1-458a-b099-2462db53392f 29171 0 2022-10-26 05:39:21 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet test-new-deployment-55df494869 aa83fe09-0dfa-410d-8054-0dd8d8cf3361 0xc005bdf897 0xc005bdf898}] [] [{kube-controller-manager Update v1 2022-10-26 05:39:21 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"aa83fe09-0dfa-410d-8054-0dd8d8cf3361\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} } {kubelet Update v1 2022-10-26 05:39:22 +0000 UTC FieldsV1 {"f:status":{"f:conditions":{"k:{\"type\":\"ContainersReady\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Initialized\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}},"k:{\"type\":\"Ready\"}":{".":{},"f:lastProbeTime":{},"f:lastTransitionTime":{},"f:status":{},"f:type":{}}},"f:containerStatuses":{},"f:hostIP":{},"f:phase":{},"f:podIP":{},"f:podIPs":{".":{},"k:{\"ip\":\"100.96.2.48\"}":{".":{},"f:ip":{}}},"f:startTime":{}}} status}]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-72lqd,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-72lqd,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-066ef2cf0d4227da4,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Running,Conditions:[]PodCondition{PodCondition{Type:Initialized,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:39:21 +0000 UTC,Reason:,Message:,},PodCondition{Type:Ready,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:39:22 +0000 UTC,Reason:,Message:,},PodCondition{Type:ContainersReady,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:39:22 +0000 UTC,Reason:,Message:,},PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:39:21 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:172.20.115.72,PodIP:100.96.2.48,StartTime:2022-10-26 05:39:21 +0000 UTC,ContainerStatuses:[]ContainerStatus{ContainerStatus{Name:httpd,State:ContainerState{Waiting:nil,Running:&ContainerStateRunning{StartedAt:2022-10-26 05:39:22 +0000 UTC,},Terminated:nil,},LastTerminationState:ContainerState{Waiting:nil,Running:nil,Terminated:nil,},Ready:true,RestartCount:0,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,ImageID:k8s.gcr.io/e2e-test-images/httpd@sha256:1b9d1b2f36cb2dbee1960e82a9344aeb11bd4c4c03abf5e1853e0559c23855e3,ContainerID:containerd://c10fe33c6516617025a73a0b17bd747d416bd7bde2dd3044e24426e5c7821784,Started:*true,},},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{PodIP{IP:100.96.2.48,},},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:39:23.222: INFO: Pod "test-new-deployment-55df494869-44bpz" is not available: +&Pod{ObjectMeta:{test-new-deployment-55df494869-44bpz test-new-deployment-55df494869- deployment-2538 39133e83-c068-4687-a7e8-39c144f76717 29179 0 2022-10-26 05:39:23 +0000 UTC map[name:httpd pod-template-hash:55df494869] map[] [{apps/v1 ReplicaSet test-new-deployment-55df494869 aa83fe09-0dfa-410d-8054-0dd8d8cf3361 0xc005bdfa70 0xc005bdfa71}] [] [{kube-controller-manager Update v1 2022-10-26 05:39:23 +0000 UTC FieldsV1 {"f:metadata":{"f:generateName":{},"f:labels":{".":{},"f:name":{},"f:pod-template-hash":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"aa83fe09-0dfa-410d-8054-0dd8d8cf3361\"}":{}}},"f:spec":{"f:containers":{"k:{\"name\":\"httpd\"}":{".":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} }]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-j5d9r,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:httpd,Image:k8s.gcr.io/e2e-test-images/httpd:2.4.38-2,Command:[],Args:[],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-j5d9r,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:ClusterFirst,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:i-098fc8365626c8e13,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:nil,ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{PodCondition{Type:PodScheduled,Status:True,LastProbeTime:0001-01-01 00:00:00 +0000 UTC,LastTransitionTime:2022-10-26 05:39:23 +0000 UTC,Reason:,Message:,},},Message:,Reason:,HostIP:,PodIP:,StartTime:,ContainerStatuses:[]ContainerStatus{},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +[AfterEach] [sig-apps] Deployment + test/e2e/framework/framework.go:188 +Oct 26 05:39:23.222: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "deployment-2538" for this suite. +•{"msg":"PASSED [sig-apps] Deployment Deployment should have a working scale subresource [Conformance]","total":356,"completed":272,"skipped":4902,"failed":0} +SSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Service endpoints latency + should not be very high [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Service endpoints latency + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:39:23.252: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename svc-latency +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should not be very high [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:39:23.299: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: creating replication controller svc-latency-rc in namespace svc-latency-2700 +I1026 05:39:23.303565 20 runners.go:193] Created replication controller with name: svc-latency-rc, namespace: svc-latency-2700, replica count: 1 +I1026 05:39:24.354772 20 runners.go:193] svc-latency-rc Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I1026 05:39:25.355002 20 runners.go:193] svc-latency-rc Pods: 1 out of 1 created, 1 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Oct 26 05:39:25.465: INFO: Created: latency-svc-stmq7 +Oct 26 05:39:25.484: INFO: Got endpoints: latency-svc-stmq7 [27.649841ms] +Oct 26 05:39:25.503: INFO: Created: latency-svc-rcvxw +Oct 26 05:39:25.510: INFO: Got endpoints: latency-svc-rcvxw [25.053857ms] +Oct 26 05:39:25.518: INFO: Created: latency-svc-mjtz7 +Oct 26 05:39:25.528: INFO: Got endpoints: latency-svc-mjtz7 [41.659024ms] +Oct 26 05:39:25.531: INFO: Created: latency-svc-v2dlp +Oct 26 05:39:25.542: INFO: Got endpoints: latency-svc-v2dlp [54.873718ms] +Oct 26 05:39:25.552: INFO: Created: latency-svc-65nz8 +Oct 26 05:39:25.559: INFO: Created: latency-svc-hf98f +Oct 26 05:39:25.572: INFO: Created: latency-svc-zwfb6 +Oct 26 05:39:25.579: INFO: Got endpoints: latency-svc-65nz8 [91.947051ms] +Oct 26 05:39:25.579: INFO: Got endpoints: latency-svc-hf98f [91.709945ms] +Oct 26 05:39:25.587: INFO: Got endpoints: latency-svc-zwfb6 [98.693218ms] +Oct 26 05:39:25.592: INFO: Created: latency-svc-wmbhf +Oct 26 05:39:25.599: INFO: Got endpoints: latency-svc-wmbhf [112.948121ms] +Oct 26 05:39:25.599: INFO: Created: latency-svc-ttcgl +Oct 26 05:39:25.609: INFO: Got endpoints: latency-svc-ttcgl [121.929933ms] +Oct 26 05:39:25.622: INFO: Created: latency-svc-phmfx +Oct 26 05:39:25.624: INFO: Got endpoints: latency-svc-phmfx [136.639937ms] +Oct 26 05:39:25.636: INFO: Created: latency-svc-dsxwv +Oct 26 05:39:25.640: INFO: Got endpoints: latency-svc-dsxwv [152.652492ms] +Oct 26 05:39:25.644: INFO: Created: latency-svc-94l2b +Oct 26 05:39:25.652: INFO: Got endpoints: latency-svc-94l2b [164.841093ms] +Oct 26 05:39:25.657: INFO: Created: latency-svc-mmvpl +Oct 26 05:39:25.668: INFO: Created: latency-svc-vrk29 +Oct 26 05:39:25.669: INFO: Got endpoints: latency-svc-mmvpl [181.608694ms] +Oct 26 05:39:25.684: INFO: Created: latency-svc-cxvqx +Oct 26 05:39:25.692: INFO: Got endpoints: latency-svc-vrk29 [204.043757ms] +Oct 26 05:39:25.703: INFO: Created: latency-svc-4p5v9 +Oct 26 05:39:25.723: INFO: Created: latency-svc-4266b +Oct 26 05:39:25.723: INFO: Created: latency-svc-wknzl +Oct 26 05:39:25.743: INFO: Created: latency-svc-xmd27 +Oct 26 05:39:25.749: INFO: Got endpoints: latency-svc-4p5v9 [261.928443ms] +Oct 26 05:39:25.750: INFO: Got endpoints: latency-svc-cxvqx [261.696811ms] +Oct 26 05:39:25.750: INFO: Got endpoints: latency-svc-4266b [239.158034ms] +Oct 26 05:39:25.766: INFO: Got endpoints: latency-svc-wknzl [238.277982ms] +Oct 26 05:39:25.770: INFO: Created: latency-svc-8xxfp +Oct 26 05:39:25.780: INFO: Got endpoints: latency-svc-xmd27 [237.756309ms] +Oct 26 05:39:25.791: INFO: Got endpoints: latency-svc-8xxfp [212.37347ms] +Oct 26 05:39:25.804: INFO: Created: latency-svc-jhjt5 +Oct 26 05:39:25.804: INFO: Created: latency-svc-km8gw +Oct 26 05:39:25.812: INFO: Created: latency-svc-5hzw7 +Oct 26 05:39:25.819: INFO: Got endpoints: latency-svc-jhjt5 [240.318915ms] +Oct 26 05:39:25.820: INFO: Created: latency-svc-fcpbx +Oct 26 05:39:25.830: INFO: Got endpoints: latency-svc-km8gw [243.304469ms] +Oct 26 05:39:25.837: INFO: Got endpoints: latency-svc-5hzw7 [238.151936ms] +Oct 26 05:39:25.854: INFO: Created: latency-svc-g775z +Oct 26 05:39:25.859: INFO: Got endpoints: latency-svc-fcpbx [249.627178ms] +Oct 26 05:39:25.873: INFO: Got endpoints: latency-svc-g775z [247.947384ms] +Oct 26 05:39:25.892: INFO: Created: latency-svc-kw2fn +Oct 26 05:39:25.910: INFO: Got endpoints: latency-svc-kw2fn [269.65458ms] +Oct 26 05:39:25.919: INFO: Created: latency-svc-ksdpr +Oct 26 05:39:25.931: INFO: Created: latency-svc-jz9kv +Oct 26 05:39:25.944: INFO: Got endpoints: latency-svc-jz9kv [274.05731ms] +Oct 26 05:39:25.944: INFO: Got endpoints: latency-svc-ksdpr [291.327142ms] +Oct 26 05:39:25.948: INFO: Created: latency-svc-8pr4g +Oct 26 05:39:25.966: INFO: Got endpoints: latency-svc-8pr4g [273.578121ms] +Oct 26 05:39:25.970: INFO: Created: latency-svc-mhtmh +Oct 26 05:39:25.979: INFO: Got endpoints: latency-svc-mhtmh [229.82507ms] +Oct 26 05:39:25.985: INFO: Created: latency-svc-cdwbf +Oct 26 05:39:25.990: INFO: Created: latency-svc-dh8v6 +Oct 26 05:39:26.009: INFO: Got endpoints: latency-svc-cdwbf [258.929831ms] +Oct 26 05:39:26.009: INFO: Got endpoints: latency-svc-dh8v6 [258.269066ms] +Oct 26 05:39:26.011: INFO: Created: latency-svc-nxpnd +Oct 26 05:39:26.025: INFO: Created: latency-svc-zsj4t +Oct 26 05:39:26.042: INFO: Got endpoints: latency-svc-nxpnd [275.676989ms] +Oct 26 05:39:26.050: INFO: Got endpoints: latency-svc-zsj4t [270.068129ms] +Oct 26 05:39:26.078: INFO: Created: latency-svc-whr2g +Oct 26 05:39:26.085: INFO: Created: latency-svc-btjv6 +Oct 26 05:39:26.095: INFO: Got endpoints: latency-svc-btjv6 [275.967821ms] +Oct 26 05:39:26.095: INFO: Got endpoints: latency-svc-whr2g [304.157093ms] +Oct 26 05:39:26.101: INFO: Created: latency-svc-tbqxg +Oct 26 05:39:26.114: INFO: Got endpoints: latency-svc-tbqxg [282.930822ms] +Oct 26 05:39:26.120: INFO: Created: latency-svc-cmm9x +Oct 26 05:39:26.158: INFO: Got endpoints: latency-svc-cmm9x [319.908373ms] +Oct 26 05:39:26.380: INFO: Created: latency-svc-bpbj5 +Oct 26 05:39:26.380: INFO: Created: latency-svc-hmg2h +Oct 26 05:39:26.381: INFO: Created: latency-svc-2qgpg +Oct 26 05:39:26.381: INFO: Created: latency-svc-7qmcz +Oct 26 05:39:26.382: INFO: Created: latency-svc-5857l +Oct 26 05:39:26.382: INFO: Created: latency-svc-6q7jr +Oct 26 05:39:26.382: INFO: Created: latency-svc-fptwj +Oct 26 05:39:26.382: INFO: Created: latency-svc-fgjw4 +Oct 26 05:39:26.382: INFO: Created: latency-svc-kms4j +Oct 26 05:39:26.385: INFO: Created: latency-svc-4qvmh +Oct 26 05:39:26.386: INFO: Created: latency-svc-mtqj9 +Oct 26 05:39:26.386: INFO: Created: latency-svc-l65hb +Oct 26 05:39:26.386: INFO: Created: latency-svc-pk7q8 +Oct 26 05:39:26.386: INFO: Created: latency-svc-w7zvb +Oct 26 05:39:26.386: INFO: Created: latency-svc-p9jq9 +Oct 26 05:39:26.397: INFO: Got endpoints: latency-svc-bpbj5 [537.781762ms] +Oct 26 05:39:26.415: INFO: Got endpoints: latency-svc-5857l [319.987651ms] +Oct 26 05:39:26.455: INFO: Got endpoints: latency-svc-7qmcz [582.013854ms] +Oct 26 05:39:26.455: INFO: Got endpoints: latency-svc-fptwj [297.666485ms] +Oct 26 05:39:26.470: INFO: Got endpoints: latency-svc-kms4j [525.981827ms] +Oct 26 05:39:26.471: INFO: Got endpoints: latency-svc-fgjw4 [561.081388ms] +Oct 26 05:39:26.480: INFO: Got endpoints: latency-svc-6q7jr [535.554174ms] +Oct 26 05:39:26.506: INFO: Created: latency-svc-5c55h +Oct 26 05:39:26.522: INFO: Got endpoints: latency-svc-mtqj9 [542.782929ms] +Oct 26 05:39:26.522: INFO: Got endpoints: latency-svc-4qvmh [555.940864ms] +Oct 26 05:39:26.533: INFO: Got endpoints: latency-svc-w7zvb [419.106045ms] +Oct 26 05:39:26.533: INFO: Got endpoints: latency-svc-p9jq9 [524.511614ms] +Oct 26 05:39:26.534: INFO: Got endpoints: latency-svc-pk7q8 [524.304215ms] +Oct 26 05:39:26.538: INFO: Got endpoints: latency-svc-l65hb [495.149677ms] +Oct 26 05:39:26.539: INFO: Created: latency-svc-x5fmf +Oct 26 05:39:26.596: INFO: Got endpoints: latency-svc-hmg2h [546.083591ms] +Oct 26 05:39:26.622: INFO: Got endpoints: latency-svc-2qgpg [526.621901ms] +Oct 26 05:39:26.675: INFO: Created: latency-svc-58dr5 +Oct 26 05:39:26.675: INFO: Created: latency-svc-tw6sg +Oct 26 05:39:26.676: INFO: Created: latency-svc-n64fs +Oct 26 05:39:26.676: INFO: Created: latency-svc-8bt24 +Oct 26 05:39:26.676: INFO: Created: latency-svc-dd8m7 +Oct 26 05:39:26.677: INFO: Got endpoints: latency-svc-5c55h [279.86784ms] +Oct 26 05:39:26.681: INFO: Created: latency-svc-n8hnr +Oct 26 05:39:26.683: INFO: Created: latency-svc-7tw5c +Oct 26 05:39:26.692: INFO: Created: latency-svc-x8x76 +Oct 26 05:39:26.693: INFO: Created: latency-svc-5rdm6 +Oct 26 05:39:26.693: INFO: Created: latency-svc-t6r48 +Oct 26 05:39:26.693: INFO: Created: latency-svc-bsdnd +Oct 26 05:39:26.693: INFO: Created: latency-svc-8k6fv +Oct 26 05:39:26.694: INFO: Created: latency-svc-499k7 +Oct 26 05:39:26.706: INFO: Created: latency-svc-nr2hq +Oct 26 05:39:26.728: INFO: Got endpoints: latency-svc-x5fmf [313.099597ms] +Oct 26 05:39:26.742: INFO: Created: latency-svc-qqssv +Oct 26 05:39:26.770: INFO: Got endpoints: latency-svc-dd8m7 [315.56655ms] +Oct 26 05:39:26.781: INFO: Created: latency-svc-dtdj6 +Oct 26 05:39:26.819: INFO: Got endpoints: latency-svc-n64fs [363.586497ms] +Oct 26 05:39:26.832: INFO: Created: latency-svc-jnszc +Oct 26 05:39:26.870: INFO: Got endpoints: latency-svc-8bt24 [336.667887ms] +Oct 26 05:39:26.883: INFO: Created: latency-svc-lvvff +Oct 26 05:39:26.918: INFO: Got endpoints: latency-svc-n8hnr [380.649738ms] +Oct 26 05:39:26.927: INFO: Created: latency-svc-sfjpj +Oct 26 05:39:26.969: INFO: Got endpoints: latency-svc-58dr5 [435.120958ms] +Oct 26 05:39:26.983: INFO: Created: latency-svc-g76n2 +Oct 26 05:39:27.020: INFO: Got endpoints: latency-svc-tw6sg [497.427603ms] +Oct 26 05:39:27.028: INFO: Created: latency-svc-j5gqp +Oct 26 05:39:27.071: INFO: Got endpoints: latency-svc-7tw5c [475.268522ms] +Oct 26 05:39:27.080: INFO: Created: latency-svc-4dqq6 +Oct 26 05:39:27.120: INFO: Got endpoints: latency-svc-8k6fv [638.9762ms] +Oct 26 05:39:27.127: INFO: Created: latency-svc-tpq9w +Oct 26 05:39:27.173: INFO: Got endpoints: latency-svc-bsdnd [701.212461ms] +Oct 26 05:39:27.183: INFO: Created: latency-svc-8flf2 +Oct 26 05:39:27.221: INFO: Got endpoints: latency-svc-t6r48 [598.569942ms] +Oct 26 05:39:27.230: INFO: Created: latency-svc-j68w4 +Oct 26 05:39:27.271: INFO: Got endpoints: latency-svc-x8x76 [737.913291ms] +Oct 26 05:39:27.281: INFO: Created: latency-svc-b9sz7 +Oct 26 05:39:27.325: INFO: Got endpoints: latency-svc-5rdm6 [802.420807ms] +Oct 26 05:39:27.334: INFO: Created: latency-svc-vjch6 +Oct 26 05:39:27.369: INFO: Got endpoints: latency-svc-499k7 [899.078958ms] +Oct 26 05:39:27.380: INFO: Created: latency-svc-jnltg +Oct 26 05:39:27.421: INFO: Got endpoints: latency-svc-nr2hq [742.885571ms] +Oct 26 05:39:27.430: INFO: Created: latency-svc-mxh7f +Oct 26 05:39:27.469: INFO: Got endpoints: latency-svc-qqssv [740.163604ms] +Oct 26 05:39:27.486: INFO: Created: latency-svc-vxsz8 +Oct 26 05:39:27.519: INFO: Got endpoints: latency-svc-dtdj6 [748.911642ms] +Oct 26 05:39:27.540: INFO: Created: latency-svc-z6s5j +Oct 26 05:39:27.570: INFO: Got endpoints: latency-svc-jnszc [751.555163ms] +Oct 26 05:39:27.590: INFO: Created: latency-svc-5jzrl +Oct 26 05:39:27.619: INFO: Got endpoints: latency-svc-lvvff [748.832091ms] +Oct 26 05:39:27.631: INFO: Created: latency-svc-gxlg7 +Oct 26 05:39:27.671: INFO: Got endpoints: latency-svc-sfjpj [752.000464ms] +Oct 26 05:39:27.680: INFO: Created: latency-svc-trsjs +Oct 26 05:39:27.721: INFO: Got endpoints: latency-svc-g76n2 [751.754358ms] +Oct 26 05:39:27.729: INFO: Created: latency-svc-qxmxn +Oct 26 05:39:27.770: INFO: Got endpoints: latency-svc-j5gqp [750.428712ms] +Oct 26 05:39:27.781: INFO: Created: latency-svc-bcx7g +Oct 26 05:39:27.819: INFO: Got endpoints: latency-svc-4dqq6 [747.258685ms] +Oct 26 05:39:27.833: INFO: Created: latency-svc-x4f67 +Oct 26 05:39:27.869: INFO: Got endpoints: latency-svc-tpq9w [748.646514ms] +Oct 26 05:39:27.884: INFO: Created: latency-svc-vmt84 +Oct 26 05:39:27.919: INFO: Got endpoints: latency-svc-8flf2 [746.648252ms] +Oct 26 05:39:27.929: INFO: Created: latency-svc-pns6h +Oct 26 05:39:27.971: INFO: Got endpoints: latency-svc-j68w4 [749.679553ms] +Oct 26 05:39:27.985: INFO: Created: latency-svc-ghftt +Oct 26 05:39:28.020: INFO: Got endpoints: latency-svc-b9sz7 [748.355806ms] +Oct 26 05:39:28.030: INFO: Created: latency-svc-g5mks +Oct 26 05:39:28.071: INFO: Got endpoints: latency-svc-vjch6 [746.076263ms] +Oct 26 05:39:28.084: INFO: Created: latency-svc-82ztt +Oct 26 05:39:28.120: INFO: Got endpoints: latency-svc-jnltg [750.780913ms] +Oct 26 05:39:28.131: INFO: Created: latency-svc-p6jj4 +Oct 26 05:39:28.171: INFO: Got endpoints: latency-svc-mxh7f [750.477246ms] +Oct 26 05:39:28.180: INFO: Created: latency-svc-f9w85 +Oct 26 05:39:28.220: INFO: Got endpoints: latency-svc-vxsz8 [750.119004ms] +Oct 26 05:39:28.228: INFO: Created: latency-svc-zp5qz +Oct 26 05:39:28.268: INFO: Got endpoints: latency-svc-z6s5j [748.167374ms] +Oct 26 05:39:28.281: INFO: Created: latency-svc-g8xx4 +Oct 26 05:39:28.331: INFO: Got endpoints: latency-svc-5jzrl [760.624174ms] +Oct 26 05:39:28.349: INFO: Created: latency-svc-zkqxb +Oct 26 05:39:28.370: INFO: Got endpoints: latency-svc-gxlg7 [750.494651ms] +Oct 26 05:39:28.380: INFO: Created: latency-svc-q4hds +Oct 26 05:39:28.420: INFO: Got endpoints: latency-svc-trsjs [749.295854ms] +Oct 26 05:39:28.435: INFO: Created: latency-svc-lt22g +Oct 26 05:39:28.477: INFO: Got endpoints: latency-svc-qxmxn [755.497408ms] +Oct 26 05:39:28.492: INFO: Created: latency-svc-9xs8z +Oct 26 05:39:28.522: INFO: Got endpoints: latency-svc-bcx7g [751.461233ms] +Oct 26 05:39:28.534: INFO: Created: latency-svc-hfpwc +Oct 26 05:39:28.572: INFO: Got endpoints: latency-svc-x4f67 [752.853461ms] +Oct 26 05:39:28.584: INFO: Created: latency-svc-m9cfl +Oct 26 05:39:28.621: INFO: Got endpoints: latency-svc-vmt84 [752.51095ms] +Oct 26 05:39:28.635: INFO: Created: latency-svc-jhtnh +Oct 26 05:39:28.672: INFO: Got endpoints: latency-svc-pns6h [752.450892ms] +Oct 26 05:39:28.681: INFO: Created: latency-svc-bq7z9 +Oct 26 05:39:28.722: INFO: Got endpoints: latency-svc-ghftt [751.503117ms] +Oct 26 05:39:28.730: INFO: Created: latency-svc-4jxcn +Oct 26 05:39:28.771: INFO: Got endpoints: latency-svc-g5mks [751.659118ms] +Oct 26 05:39:28.779: INFO: Created: latency-svc-bk9wm +Oct 26 05:39:28.822: INFO: Got endpoints: latency-svc-82ztt [750.81899ms] +Oct 26 05:39:28.830: INFO: Created: latency-svc-m6c94 +Oct 26 05:39:28.871: INFO: Got endpoints: latency-svc-p6jj4 [750.899143ms] +Oct 26 05:39:28.878: INFO: Created: latency-svc-wfchw +Oct 26 05:39:28.919: INFO: Got endpoints: latency-svc-f9w85 [747.559455ms] +Oct 26 05:39:28.934: INFO: Created: latency-svc-4w94x +Oct 26 05:39:28.971: INFO: Got endpoints: latency-svc-zp5qz [751.275976ms] +Oct 26 05:39:28.981: INFO: Created: latency-svc-b59br +Oct 26 05:39:29.022: INFO: Got endpoints: latency-svc-g8xx4 [752.80665ms] +Oct 26 05:39:29.031: INFO: Created: latency-svc-xcdbm +Oct 26 05:39:29.070: INFO: Got endpoints: latency-svc-zkqxb [738.016393ms] +Oct 26 05:39:29.081: INFO: Created: latency-svc-kbp86 +Oct 26 05:39:29.119: INFO: Got endpoints: latency-svc-q4hds [748.987111ms] +Oct 26 05:39:29.134: INFO: Created: latency-svc-js524 +Oct 26 05:39:29.169: INFO: Got endpoints: latency-svc-lt22g [748.635285ms] +Oct 26 05:39:29.180: INFO: Created: latency-svc-ncrt9 +Oct 26 05:39:29.220: INFO: Got endpoints: latency-svc-9xs8z [742.174928ms] +Oct 26 05:39:29.231: INFO: Created: latency-svc-jjwn7 +Oct 26 05:39:29.271: INFO: Got endpoints: latency-svc-hfpwc [748.522272ms] +Oct 26 05:39:29.281: INFO: Created: latency-svc-4dmp5 +Oct 26 05:39:29.319: INFO: Got endpoints: latency-svc-m9cfl [746.8067ms] +Oct 26 05:39:29.328: INFO: Created: latency-svc-vr42w +Oct 26 05:39:29.369: INFO: Got endpoints: latency-svc-jhtnh [747.953413ms] +Oct 26 05:39:29.380: INFO: Created: latency-svc-k9rc9 +Oct 26 05:39:29.421: INFO: Got endpoints: latency-svc-bq7z9 [749.243014ms] +Oct 26 05:39:29.430: INFO: Created: latency-svc-6jspm +Oct 26 05:39:29.477: INFO: Got endpoints: latency-svc-4jxcn [754.825515ms] +Oct 26 05:39:29.492: INFO: Created: latency-svc-tzv2b +Oct 26 05:39:29.524: INFO: Got endpoints: latency-svc-bk9wm [752.293661ms] +Oct 26 05:39:29.548: INFO: Created: latency-svc-8w5ln +Oct 26 05:39:29.571: INFO: Got endpoints: latency-svc-m6c94 [749.225335ms] +Oct 26 05:39:29.580: INFO: Created: latency-svc-gmtrs +Oct 26 05:39:29.619: INFO: Got endpoints: latency-svc-wfchw [747.896465ms] +Oct 26 05:39:29.629: INFO: Created: latency-svc-5xhkb +Oct 26 05:39:29.671: INFO: Got endpoints: latency-svc-4w94x [752.548278ms] +Oct 26 05:39:29.681: INFO: Created: latency-svc-tqb2k +Oct 26 05:39:29.719: INFO: Got endpoints: latency-svc-b59br [747.589602ms] +Oct 26 05:39:29.728: INFO: Created: latency-svc-hnfb9 +Oct 26 05:39:29.769: INFO: Got endpoints: latency-svc-xcdbm [746.547672ms] +Oct 26 05:39:29.780: INFO: Created: latency-svc-d29fk +Oct 26 05:39:29.821: INFO: Got endpoints: latency-svc-kbp86 [750.965113ms] +Oct 26 05:39:29.833: INFO: Created: latency-svc-nsxpl +Oct 26 05:39:29.871: INFO: Got endpoints: latency-svc-js524 [752.107485ms] +Oct 26 05:39:29.880: INFO: Created: latency-svc-p8gkt +Oct 26 05:39:29.921: INFO: Got endpoints: latency-svc-ncrt9 [751.636387ms] +Oct 26 05:39:29.932: INFO: Created: latency-svc-5svsd +Oct 26 05:39:29.973: INFO: Got endpoints: latency-svc-jjwn7 [752.550742ms] +Oct 26 05:39:29.982: INFO: Created: latency-svc-pr2pz +Oct 26 05:39:30.022: INFO: Got endpoints: latency-svc-4dmp5 [751.167739ms] +Oct 26 05:39:30.032: INFO: Created: latency-svc-k8q72 +Oct 26 05:39:30.071: INFO: Got endpoints: latency-svc-vr42w [751.98113ms] +Oct 26 05:39:30.080: INFO: Created: latency-svc-q27df +Oct 26 05:39:30.123: INFO: Got endpoints: latency-svc-k9rc9 [752.906628ms] +Oct 26 05:39:30.140: INFO: Created: latency-svc-x7pjw +Oct 26 05:39:30.172: INFO: Got endpoints: latency-svc-6jspm [750.364229ms] +Oct 26 05:39:30.200: INFO: Created: latency-svc-j2q5g +Oct 26 05:39:30.219: INFO: Got endpoints: latency-svc-tzv2b [742.087667ms] +Oct 26 05:39:30.232: INFO: Created: latency-svc-hsggd +Oct 26 05:39:30.271: INFO: Got endpoints: latency-svc-8w5ln [746.707036ms] +Oct 26 05:39:30.281: INFO: Created: latency-svc-89tgb +Oct 26 05:39:30.321: INFO: Got endpoints: latency-svc-gmtrs [749.335825ms] +Oct 26 05:39:30.330: INFO: Created: latency-svc-fxtf7 +Oct 26 05:39:30.369: INFO: Got endpoints: latency-svc-5xhkb [750.029372ms] +Oct 26 05:39:30.379: INFO: Created: latency-svc-76ccm +Oct 26 05:39:30.419: INFO: Got endpoints: latency-svc-tqb2k [747.274643ms] +Oct 26 05:39:30.430: INFO: Created: latency-svc-zgqfw +Oct 26 05:39:30.473: INFO: Got endpoints: latency-svc-hnfb9 [754.428071ms] +Oct 26 05:39:30.490: INFO: Created: latency-svc-djsl9 +Oct 26 05:39:30.529: INFO: Got endpoints: latency-svc-d29fk [760.144112ms] +Oct 26 05:39:30.543: INFO: Created: latency-svc-zsflg +Oct 26 05:39:30.571: INFO: Got endpoints: latency-svc-nsxpl [749.580663ms] +Oct 26 05:39:30.579: INFO: Created: latency-svc-qkwf7 +Oct 26 05:39:30.621: INFO: Got endpoints: latency-svc-p8gkt [750.068313ms] +Oct 26 05:39:30.630: INFO: Created: latency-svc-zl7tf +Oct 26 05:39:30.671: INFO: Got endpoints: latency-svc-5svsd [750.264135ms] +Oct 26 05:39:30.679: INFO: Created: latency-svc-xspgd +Oct 26 05:39:30.720: INFO: Got endpoints: latency-svc-pr2pz [745.922902ms] +Oct 26 05:39:30.730: INFO: Created: latency-svc-5q4cs +Oct 26 05:39:30.769: INFO: Got endpoints: latency-svc-k8q72 [747.078058ms] +Oct 26 05:39:30.783: INFO: Created: latency-svc-mlj76 +Oct 26 05:39:30.821: INFO: Got endpoints: latency-svc-q27df [750.149915ms] +Oct 26 05:39:30.830: INFO: Created: latency-svc-b9g2q +Oct 26 05:39:30.869: INFO: Got endpoints: latency-svc-x7pjw [746.781624ms] +Oct 26 05:39:30.879: INFO: Created: latency-svc-6jmcs +Oct 26 05:39:30.919: INFO: Got endpoints: latency-svc-j2q5g [747.585375ms] +Oct 26 05:39:30.929: INFO: Created: latency-svc-6fdf7 +Oct 26 05:39:30.971: INFO: Got endpoints: latency-svc-hsggd [751.633265ms] +Oct 26 05:39:30.988: INFO: Created: latency-svc-7pcdd +Oct 26 05:39:31.020: INFO: Got endpoints: latency-svc-89tgb [748.648227ms] +Oct 26 05:39:31.033: INFO: Created: latency-svc-txb78 +Oct 26 05:39:31.069: INFO: Got endpoints: latency-svc-fxtf7 [747.96999ms] +Oct 26 05:39:31.077: INFO: Created: latency-svc-tnt2b +Oct 26 05:39:31.120: INFO: Got endpoints: latency-svc-76ccm [751.023878ms] +Oct 26 05:39:31.131: INFO: Created: latency-svc-vvvht +Oct 26 05:39:31.170: INFO: Got endpoints: latency-svc-zgqfw [751.56103ms] +Oct 26 05:39:31.180: INFO: Created: latency-svc-vn7pj +Oct 26 05:39:31.219: INFO: Got endpoints: latency-svc-djsl9 [744.981835ms] +Oct 26 05:39:31.229: INFO: Created: latency-svc-w7l44 +Oct 26 05:39:31.269: INFO: Got endpoints: latency-svc-zsflg [739.037159ms] +Oct 26 05:39:31.278: INFO: Created: latency-svc-wjr7q +Oct 26 05:39:31.320: INFO: Got endpoints: latency-svc-qkwf7 [748.615819ms] +Oct 26 05:39:31.329: INFO: Created: latency-svc-gqc2t +Oct 26 05:39:31.371: INFO: Got endpoints: latency-svc-zl7tf [749.951152ms] +Oct 26 05:39:31.384: INFO: Created: latency-svc-qg776 +Oct 26 05:39:31.419: INFO: Got endpoints: latency-svc-xspgd [747.705665ms] +Oct 26 05:39:31.433: INFO: Created: latency-svc-jldzq +Oct 26 05:39:31.471: INFO: Got endpoints: latency-svc-5q4cs [751.371305ms] +Oct 26 05:39:31.483: INFO: Created: latency-svc-9hwxf +Oct 26 05:39:31.524: INFO: Got endpoints: latency-svc-mlj76 [754.433335ms] +Oct 26 05:39:31.540: INFO: Created: latency-svc-z4nnf +Oct 26 05:39:31.581: INFO: Got endpoints: latency-svc-b9g2q [759.302896ms] +Oct 26 05:39:31.590: INFO: Created: latency-svc-rf7kf +Oct 26 05:39:31.620: INFO: Got endpoints: latency-svc-6jmcs [750.119691ms] +Oct 26 05:39:31.629: INFO: Created: latency-svc-8mrt5 +Oct 26 05:39:31.669: INFO: Got endpoints: latency-svc-6fdf7 [749.67002ms] +Oct 26 05:39:31.679: INFO: Created: latency-svc-ztlpz +Oct 26 05:39:31.719: INFO: Got endpoints: latency-svc-7pcdd [747.906349ms] +Oct 26 05:39:31.729: INFO: Created: latency-svc-bglnq +Oct 26 05:39:31.770: INFO: Got endpoints: latency-svc-txb78 [750.519607ms] +Oct 26 05:39:31.778: INFO: Created: latency-svc-n7fpq +Oct 26 05:39:31.821: INFO: Got endpoints: latency-svc-tnt2b [752.303509ms] +Oct 26 05:39:31.834: INFO: Created: latency-svc-85765 +Oct 26 05:39:31.868: INFO: Got endpoints: latency-svc-vvvht [748.342104ms] +Oct 26 05:39:31.879: INFO: Created: latency-svc-pqztc +Oct 26 05:39:31.922: INFO: Got endpoints: latency-svc-vn7pj [751.121812ms] +Oct 26 05:39:31.930: INFO: Created: latency-svc-429h4 +Oct 26 05:39:31.973: INFO: Got endpoints: latency-svc-w7l44 [753.801788ms] +Oct 26 05:39:31.982: INFO: Created: latency-svc-w8ljd +Oct 26 05:39:32.021: INFO: Got endpoints: latency-svc-wjr7q [751.976762ms] +Oct 26 05:39:32.030: INFO: Created: latency-svc-dq76t +Oct 26 05:39:32.075: INFO: Got endpoints: latency-svc-gqc2t [755.700122ms] +Oct 26 05:39:32.088: INFO: Created: latency-svc-sx2k2 +Oct 26 05:39:32.120: INFO: Got endpoints: latency-svc-qg776 [748.726448ms] +Oct 26 05:39:32.131: INFO: Created: latency-svc-smqnb +Oct 26 05:39:32.180: INFO: Got endpoints: latency-svc-jldzq [760.78712ms] +Oct 26 05:39:32.189: INFO: Created: latency-svc-5vt8p +Oct 26 05:39:32.219: INFO: Got endpoints: latency-svc-9hwxf [746.708574ms] +Oct 26 05:39:32.229: INFO: Created: latency-svc-8qw7w +Oct 26 05:39:32.270: INFO: Got endpoints: latency-svc-z4nnf [745.533075ms] +Oct 26 05:39:32.287: INFO: Created: latency-svc-jxxpq +Oct 26 05:39:32.320: INFO: Got endpoints: latency-svc-rf7kf [738.957996ms] +Oct 26 05:39:32.331: INFO: Created: latency-svc-gmpv7 +Oct 26 05:39:32.371: INFO: Got endpoints: latency-svc-8mrt5 [751.426464ms] +Oct 26 05:39:32.382: INFO: Created: latency-svc-4gbwd +Oct 26 05:39:32.419: INFO: Got endpoints: latency-svc-ztlpz [749.783342ms] +Oct 26 05:39:32.428: INFO: Created: latency-svc-4j7tk +Oct 26 05:39:32.477: INFO: Got endpoints: latency-svc-bglnq [757.98101ms] +Oct 26 05:39:32.490: INFO: Created: latency-svc-zptlv +Oct 26 05:39:32.523: INFO: Got endpoints: latency-svc-n7fpq [752.51991ms] +Oct 26 05:39:32.538: INFO: Created: latency-svc-d824k +Oct 26 05:39:32.573: INFO: Got endpoints: latency-svc-85765 [751.827804ms] +Oct 26 05:39:32.583: INFO: Created: latency-svc-6n9vt +Oct 26 05:39:32.618: INFO: Got endpoints: latency-svc-pqztc [749.625473ms] +Oct 26 05:39:32.628: INFO: Created: latency-svc-sp7cl +Oct 26 05:39:32.669: INFO: Got endpoints: latency-svc-429h4 [746.449032ms] +Oct 26 05:39:32.681: INFO: Created: latency-svc-6hq4b +Oct 26 05:39:32.720: INFO: Got endpoints: latency-svc-w8ljd [747.264982ms] +Oct 26 05:39:32.730: INFO: Created: latency-svc-w98v7 +Oct 26 05:39:32.770: INFO: Got endpoints: latency-svc-dq76t [748.820879ms] +Oct 26 05:39:32.793: INFO: Created: latency-svc-xps2k +Oct 26 05:39:32.820: INFO: Got endpoints: latency-svc-sx2k2 [744.496176ms] +Oct 26 05:39:32.829: INFO: Created: latency-svc-sbkpg +Oct 26 05:39:32.870: INFO: Got endpoints: latency-svc-smqnb [749.928339ms] +Oct 26 05:39:32.882: INFO: Created: latency-svc-vxzkq +Oct 26 05:39:32.921: INFO: Got endpoints: latency-svc-5vt8p [741.205705ms] +Oct 26 05:39:32.930: INFO: Created: latency-svc-vp2nm +Oct 26 05:39:32.971: INFO: Got endpoints: latency-svc-8qw7w [751.934815ms] +Oct 26 05:39:32.982: INFO: Created: latency-svc-z5z5w +Oct 26 05:39:33.018: INFO: Got endpoints: latency-svc-jxxpq [748.194878ms] +Oct 26 05:39:33.030: INFO: Created: latency-svc-xcfmf +Oct 26 05:39:33.069: INFO: Got endpoints: latency-svc-gmpv7 [748.569942ms] +Oct 26 05:39:33.079: INFO: Created: latency-svc-btzqv +Oct 26 05:39:33.119: INFO: Got endpoints: latency-svc-4gbwd [747.663427ms] +Oct 26 05:39:33.142: INFO: Created: latency-svc-kj6tv +Oct 26 05:39:33.171: INFO: Got endpoints: latency-svc-4j7tk [751.74966ms] +Oct 26 05:39:33.179: INFO: Created: latency-svc-spnft +Oct 26 05:39:33.223: INFO: Got endpoints: latency-svc-zptlv [745.569824ms] +Oct 26 05:39:33.232: INFO: Created: latency-svc-dh9sh +Oct 26 05:39:33.270: INFO: Got endpoints: latency-svc-d824k [747.014545ms] +Oct 26 05:39:33.285: INFO: Created: latency-svc-tvwkz +Oct 26 05:39:33.326: INFO: Got endpoints: latency-svc-6n9vt [753.021059ms] +Oct 26 05:39:33.369: INFO: Got endpoints: latency-svc-sp7cl [750.859892ms] +Oct 26 05:39:33.419: INFO: Got endpoints: latency-svc-6hq4b [750.358982ms] +Oct 26 05:39:33.469: INFO: Got endpoints: latency-svc-w98v7 [749.320158ms] +Oct 26 05:39:33.530: INFO: Got endpoints: latency-svc-xps2k [760.141278ms] +Oct 26 05:39:33.572: INFO: Got endpoints: latency-svc-sbkpg [751.550924ms] +Oct 26 05:39:33.634: INFO: Got endpoints: latency-svc-vxzkq [763.194079ms] +Oct 26 05:39:33.675: INFO: Got endpoints: latency-svc-vp2nm [753.134909ms] +Oct 26 05:39:33.719: INFO: Got endpoints: latency-svc-z5z5w [748.069749ms] +Oct 26 05:39:33.771: INFO: Got endpoints: latency-svc-xcfmf [752.562812ms] +Oct 26 05:39:33.822: INFO: Got endpoints: latency-svc-btzqv [752.819955ms] +Oct 26 05:39:33.871: INFO: Got endpoints: latency-svc-kj6tv [752.231388ms] +Oct 26 05:39:33.920: INFO: Got endpoints: latency-svc-spnft [748.98477ms] +Oct 26 05:39:33.970: INFO: Got endpoints: latency-svc-dh9sh [746.455066ms] +Oct 26 05:39:34.021: INFO: Got endpoints: latency-svc-tvwkz [750.564339ms] +Oct 26 05:39:34.021: INFO: Latencies: [25.053857ms 41.659024ms 54.873718ms 91.709945ms 91.947051ms 98.693218ms 112.948121ms 121.929933ms 136.639937ms 152.652492ms 164.841093ms 181.608694ms 204.043757ms 212.37347ms 229.82507ms 237.756309ms 238.151936ms 238.277982ms 239.158034ms 240.318915ms 243.304469ms 247.947384ms 249.627178ms 258.269066ms 258.929831ms 261.696811ms 261.928443ms 269.65458ms 270.068129ms 273.578121ms 274.05731ms 275.676989ms 275.967821ms 279.86784ms 282.930822ms 291.327142ms 297.666485ms 304.157093ms 313.099597ms 315.56655ms 319.908373ms 319.987651ms 336.667887ms 363.586497ms 380.649738ms 419.106045ms 435.120958ms 475.268522ms 495.149677ms 497.427603ms 524.304215ms 524.511614ms 525.981827ms 526.621901ms 535.554174ms 537.781762ms 542.782929ms 546.083591ms 555.940864ms 561.081388ms 582.013854ms 598.569942ms 638.9762ms 701.212461ms 737.913291ms 738.016393ms 738.957996ms 739.037159ms 740.163604ms 741.205705ms 742.087667ms 742.174928ms 742.885571ms 744.496176ms 744.981835ms 745.533075ms 745.569824ms 745.922902ms 746.076263ms 746.449032ms 746.455066ms 746.547672ms 746.648252ms 746.707036ms 746.708574ms 746.781624ms 746.8067ms 747.014545ms 747.078058ms 747.258685ms 747.264982ms 747.274643ms 747.559455ms 747.585375ms 747.589602ms 747.663427ms 747.705665ms 747.896465ms 747.906349ms 747.953413ms 747.96999ms 748.069749ms 748.167374ms 748.194878ms 748.342104ms 748.355806ms 748.522272ms 748.569942ms 748.615819ms 748.635285ms 748.646514ms 748.648227ms 748.726448ms 748.820879ms 748.832091ms 748.911642ms 748.98477ms 748.987111ms 749.225335ms 749.243014ms 749.295854ms 749.320158ms 749.335825ms 749.580663ms 749.625473ms 749.67002ms 749.679553ms 749.783342ms 749.928339ms 749.951152ms 750.029372ms 750.068313ms 750.119004ms 750.119691ms 750.149915ms 750.264135ms 750.358982ms 750.364229ms 750.428712ms 750.477246ms 750.494651ms 750.519607ms 750.564339ms 750.780913ms 750.81899ms 750.859892ms 750.899143ms 750.965113ms 751.023878ms 751.121812ms 751.167739ms 751.275976ms 751.371305ms 751.426464ms 751.461233ms 751.503117ms 751.550924ms 751.555163ms 751.56103ms 751.633265ms 751.636387ms 751.659118ms 751.74966ms 751.754358ms 751.827804ms 751.934815ms 751.976762ms 751.98113ms 752.000464ms 752.107485ms 752.231388ms 752.293661ms 752.303509ms 752.450892ms 752.51095ms 752.51991ms 752.548278ms 752.550742ms 752.562812ms 752.80665ms 752.819955ms 752.853461ms 752.906628ms 753.021059ms 753.134909ms 753.801788ms 754.428071ms 754.433335ms 754.825515ms 755.497408ms 755.700122ms 757.98101ms 759.302896ms 760.141278ms 760.144112ms 760.624174ms 760.78712ms 763.194079ms 802.420807ms 899.078958ms] +Oct 26 05:39:34.021: INFO: 50 %ile: 747.96999ms +Oct 26 05:39:34.021: INFO: 90 %ile: 752.819955ms +Oct 26 05:39:34.021: INFO: 99 %ile: 802.420807ms +Oct 26 05:39:34.022: INFO: Total sample count: 200 +[AfterEach] [sig-network] Service endpoints latency + test/e2e/framework/framework.go:188 +Oct 26 05:39:34.022: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "svc-latency-2700" for this suite. + +• [SLOW TEST:10.780 seconds] +[sig-network] Service endpoints latency +test/e2e/network/common/framework.go:23 + should not be very high [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Service endpoints latency should not be very high [Conformance]","total":356,"completed":273,"skipped":4918,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Containers + should be able to override the image's default arguments (container cmd) [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Containers + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:39:34.034: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename containers +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be able to override the image's default arguments (container cmd) [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test override arguments +Oct 26 05:39:34.052: INFO: Waiting up to 5m0s for pod "client-containers-69f26bb7-a3a9-44be-aa9f-c841d909c9f4" in namespace "containers-9108" to be "Succeeded or Failed" +Oct 26 05:39:34.056: INFO: Pod "client-containers-69f26bb7-a3a9-44be-aa9f-c841d909c9f4": Phase="Pending", Reason="", readiness=false. Elapsed: 4.299858ms +Oct 26 05:39:36.061: INFO: Pod "client-containers-69f26bb7-a3a9-44be-aa9f-c841d909c9f4": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008819614s +Oct 26 05:39:38.065: INFO: Pod "client-containers-69f26bb7-a3a9-44be-aa9f-c841d909c9f4": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.013137046s +STEP: Saw pod success +Oct 26 05:39:38.065: INFO: Pod "client-containers-69f26bb7-a3a9-44be-aa9f-c841d909c9f4" satisfied condition "Succeeded or Failed" +Oct 26 05:39:38.068: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod client-containers-69f26bb7-a3a9-44be-aa9f-c841d909c9f4 container agnhost-container: +STEP: delete the pod +Oct 26 05:39:38.081: INFO: Waiting for pod client-containers-69f26bb7-a3a9-44be-aa9f-c841d909c9f4 to disappear +Oct 26 05:39:38.084: INFO: Pod client-containers-69f26bb7-a3a9-44be-aa9f-c841d909c9f4 no longer exists +[AfterEach] [sig-node] Containers + test/e2e/framework/framework.go:188 +Oct 26 05:39:38.084: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "containers-9108" for this suite. +•{"msg":"PASSED [sig-node] Containers should be able to override the image's default arguments (container cmd) [NodeConformance] [Conformance]","total":356,"completed":274,"skipped":4944,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Security Context + should support container.SecurityContext.RunAsUser And container.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:39:38.092: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename security-context +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support container.SecurityContext.RunAsUser And container.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test pod.Spec.SecurityContext.RunAsUser +Oct 26 05:39:38.134: INFO: Waiting up to 5m0s for pod "security-context-7f7f5953-6245-4c2f-8fdd-8277b40e4712" in namespace "security-context-4544" to be "Succeeded or Failed" +Oct 26 05:39:38.136: INFO: Pod "security-context-7f7f5953-6245-4c2f-8fdd-8277b40e4712": Phase="Pending", Reason="", readiness=false. Elapsed: 2.205051ms +Oct 26 05:39:40.150: INFO: Pod "security-context-7f7f5953-6245-4c2f-8fdd-8277b40e4712": Phase="Pending", Reason="", readiness=false. Elapsed: 2.015956187s +Oct 26 05:39:42.166: INFO: Pod "security-context-7f7f5953-6245-4c2f-8fdd-8277b40e4712": Phase="Pending", Reason="", readiness=false. Elapsed: 4.032115192s +Oct 26 05:39:44.172: INFO: Pod "security-context-7f7f5953-6245-4c2f-8fdd-8277b40e4712": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.038157266s +STEP: Saw pod success +Oct 26 05:39:44.173: INFO: Pod "security-context-7f7f5953-6245-4c2f-8fdd-8277b40e4712" satisfied condition "Succeeded or Failed" +Oct 26 05:39:44.175: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod security-context-7f7f5953-6245-4c2f-8fdd-8277b40e4712 container test-container: +STEP: delete the pod +Oct 26 05:39:44.185: INFO: Waiting for pod security-context-7f7f5953-6245-4c2f-8fdd-8277b40e4712 to disappear +Oct 26 05:39:44.188: INFO: Pod security-context-7f7f5953-6245-4c2f-8fdd-8277b40e4712 no longer exists +[AfterEach] [sig-node] Security Context + test/e2e/framework/framework.go:188 +Oct 26 05:39:44.188: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "security-context-4544" for this suite. + +• [SLOW TEST:6.101 seconds] +[sig-node] Security Context +test/e2e/node/framework.go:23 + should support container.SecurityContext.RunAsUser And container.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Security Context should support container.SecurityContext.RunAsUser And container.SecurityContext.RunAsGroup [LinuxOnly] [Conformance]","total":356,"completed":275,"skipped":4967,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + Should recreate evicted statefulset [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:39:44.195: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename statefulset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:96 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:111 +STEP: Creating service test in namespace statefulset-7775 +[It] Should recreate evicted statefulset [Conformance] + test/e2e/framework/framework.go:652 +STEP: Looking for a node to schedule stateful set and pod +STEP: Creating pod with conflicting port in namespace statefulset-7775 +STEP: Waiting until pod test-pod will start running in namespace statefulset-7775 +STEP: Creating statefulset with conflicting port in namespace statefulset-7775 +STEP: Waiting until stateful pod ss-0 will be recreated and deleted at least once in namespace statefulset-7775 +Oct 26 05:39:46.277: INFO: Observed stateful pod in namespace: statefulset-7775, name: ss-0, uid: 3e27f932-31b3-47b7-94c0-0f063e531621, status phase: Pending. Waiting for statefulset controller to delete. +Oct 26 05:39:46.302: INFO: Observed stateful pod in namespace: statefulset-7775, name: ss-0, uid: 3e27f932-31b3-47b7-94c0-0f063e531621, status phase: Failed. Waiting for statefulset controller to delete. +Oct 26 05:39:46.317: INFO: Observed stateful pod in namespace: statefulset-7775, name: ss-0, uid: 3e27f932-31b3-47b7-94c0-0f063e531621, status phase: Failed. Waiting for statefulset controller to delete. +Oct 26 05:39:46.321: INFO: Observed delete event for stateful pod ss-0 in namespace statefulset-7775 +STEP: Removing pod with conflicting port in namespace statefulset-7775 +STEP: Waiting when stateful pod ss-0 will be recreated in namespace statefulset-7775 and will be in running state +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:122 +Oct 26 05:39:48.359: INFO: Deleting all statefulset in ns statefulset-7775 +Oct 26 05:39:48.361: INFO: Scaling statefulset ss to 0 +Oct 26 05:39:58.375: INFO: Waiting for statefulset status.replicas updated to 0 +Oct 26 05:39:58.378: INFO: Deleting statefulset ss +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:188 +Oct 26 05:39:58.389: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "statefulset-7775" for this suite. + +• [SLOW TEST:14.206 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:101 + Should recreate evicted statefulset [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] Should recreate evicted statefulset [Conformance]","total":356,"completed":276,"skipped":5020,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Garbage collector + should delete RS created by deployment when not orphaning [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:39:58.403: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename gc +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should delete RS created by deployment when not orphaning [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the deployment +STEP: Wait for the Deployment to create new ReplicaSet +STEP: delete the deployment +STEP: wait for all rs to be garbage collected +STEP: expected 0 rs, got 1 rs +STEP: expected 0 pods, got 2 pods +STEP: Gathering metrics +Oct 26 05:39:59.004: INFO: The status of Pod kube-controller-manager-i-01a506a1cd9f42b49 is Running (Ready = true) +Oct 26 05:39:59.067: INFO: For apiserver_request_total: +For apiserver_request_latency_seconds: +For apiserver_init_events_total: +For garbage_collector_attempt_to_delete_queue_latency: +For garbage_collector_attempt_to_delete_work_duration: +For garbage_collector_attempt_to_orphan_queue_latency: +For garbage_collector_attempt_to_orphan_work_duration: +For garbage_collector_dirty_processing_latency_microseconds: +For garbage_collector_event_processing_latency_microseconds: +For garbage_collector_graph_changes_queue_latency: +For garbage_collector_graph_changes_work_duration: +For garbage_collector_orphan_processing_latency_microseconds: +For namespace_queue_latency: +For namespace_queue_latency_sum: +For namespace_queue_latency_count: +For namespace_retries: +For namespace_work_duration: +For namespace_work_duration_sum: +For namespace_work_duration_count: +For function_duration_seconds: +For errors_total: +For evicted_pods_total: + +[AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:188 +Oct 26 05:39:59.068: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "gc-3799" for this suite. +•{"msg":"PASSED [sig-api-machinery] Garbage collector should delete RS created by deployment when not orphaning [Conformance]","total":356,"completed":277,"skipped":5049,"failed":0} +SSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + listing validating webhooks should work [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:39:59.076: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:39:59.911: INFO: new replicaset for deployment "sample-webhook-deployment" is yet to be created +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:40:02.930: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] listing validating webhooks should work [Conformance] + test/e2e/framework/framework.go:652 +STEP: Listing all of the created validation webhooks +STEP: Creating a configMap that does not comply to the validation webhook rules +STEP: Deleting the collection of validation webhooks +STEP: Creating a configMap that does not comply to the validation webhook rules +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:40:03.168: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-368" for this suite. +STEP: Destroying namespace "webhook-368-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 +•{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] listing validating webhooks should work [Conformance]","total":356,"completed":278,"skipped":5056,"failed":0} +SSSSSSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should fail substituting values in a volume subpath with absolute path [Slow] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:40:03.230: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename var-expansion +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should fail substituting values in a volume subpath with absolute path [Slow] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:40:07.283: INFO: Deleting pod "var-expansion-0f8bc8ad-deb6-46ef-b5e9-b4d34fe6c5c7" in namespace "var-expansion-8381" +Oct 26 05:40:07.297: INFO: Wait up to 5m0s for pod "var-expansion-0f8bc8ad-deb6-46ef-b5e9-b4d34fe6c5c7" to be fully deleted +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:188 +Oct 26 05:40:09.308: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "var-expansion-8381" for this suite. + +• [SLOW TEST:6.086 seconds] +[sig-node] Variable Expansion +test/e2e/common/node/framework.go:23 + should fail substituting values in a volume subpath with absolute path [Slow] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Variable Expansion should fail substituting values in a volume subpath with absolute path [Slow] [Conformance]","total":356,"completed":279,"skipped":5068,"failed":0} +SSSSSSS +------------------------------ +[sig-node] Pods + should be submitted and removed [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Pods + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:40:09.318: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pods +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:191 +[It] should be submitted and removed [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating the pod +STEP: setting up watch +STEP: submitting the pod to kubernetes +Oct 26 05:40:09.337: INFO: observed the pod list +STEP: verifying the pod is in kubernetes +STEP: verifying pod creation was observed +STEP: deleting the pod gracefully +STEP: verifying pod deletion was observed +[AfterEach] [sig-node] Pods + test/e2e/framework/framework.go:188 +Oct 26 05:40:13.918: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pods-940" for this suite. +•{"msg":"PASSED [sig-node] Pods should be submitted and removed [NodeConformance] [Conformance]","total":356,"completed":280,"skipped":5075,"failed":0} +SSSS +------------------------------ +[sig-auth] Certificates API [Privileged:ClusterAdmin] + should support CSR API operations [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-auth] Certificates API [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:40:13.924: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename certificates +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support CSR API operations [Conformance] + test/e2e/framework/framework.go:652 +STEP: getting /apis +STEP: getting /apis/certificates.k8s.io +STEP: getting /apis/certificates.k8s.io/v1 +STEP: creating +STEP: getting +STEP: listing +STEP: watching +Oct 26 05:40:14.688: INFO: starting watch +STEP: patching +STEP: updating +Oct 26 05:40:14.706: INFO: waiting for watch events with expected annotations +Oct 26 05:40:14.706: INFO: saw patched and updated annotations +STEP: getting /approval +STEP: patching /approval +STEP: updating /approval +STEP: getting /status +STEP: patching /status +STEP: updating /status +STEP: deleting +STEP: deleting a collection +[AfterEach] [sig-auth] Certificates API [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:40:14.739: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "certificates-9731" for this suite. +•{"msg":"PASSED [sig-auth] Certificates API [Privileged:ClusterAdmin] should support CSR API operations [Conformance]","total":356,"completed":281,"skipped":5079,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Update Demo + should scale a replication controller [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:40:14.748: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[BeforeEach] Update Demo + test/e2e/kubectl/kubectl.go:297 +[It] should scale a replication controller [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a replication controller +Oct 26 05:40:14.763: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 create -f -' +Oct 26 05:40:15.724: INFO: stderr: "" +Oct 26 05:40:15.724: INFO: stdout: "replicationcontroller/update-demo-nautilus created\n" +STEP: waiting for all containers in name=update-demo pods to come up. +Oct 26 05:40:15.724: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Oct 26 05:40:15.792: INFO: stderr: "" +Oct 26 05:40:15.792: INFO: stdout: "update-demo-nautilus-2dlqq update-demo-nautilus-w87c6 " +Oct 26 05:40:15.793: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-2dlqq -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Oct 26 05:40:15.858: INFO: stderr: "" +Oct 26 05:40:15.858: INFO: stdout: "" +Oct 26 05:40:15.858: INFO: update-demo-nautilus-2dlqq is created but not running +Oct 26 05:40:20.858: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Oct 26 05:40:20.935: INFO: stderr: "" +Oct 26 05:40:20.935: INFO: stdout: "update-demo-nautilus-2dlqq update-demo-nautilus-w87c6 " +Oct 26 05:40:20.935: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-2dlqq -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Oct 26 05:40:21.022: INFO: stderr: "" +Oct 26 05:40:21.022: INFO: stdout: "true" +Oct 26 05:40:21.022: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-2dlqq -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Oct 26 05:40:21.085: INFO: stderr: "" +Oct 26 05:40:21.085: INFO: stdout: "k8s.gcr.io/e2e-test-images/nautilus:1.5" +Oct 26 05:40:21.085: INFO: validating pod update-demo-nautilus-2dlqq +Oct 26 05:40:21.089: INFO: got data: { + "image": "nautilus.jpg" +} + +Oct 26 05:40:21.089: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Oct 26 05:40:21.089: INFO: update-demo-nautilus-2dlqq is verified up and running +Oct 26 05:40:21.089: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-w87c6 -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Oct 26 05:40:21.155: INFO: stderr: "" +Oct 26 05:40:21.155: INFO: stdout: "true" +Oct 26 05:40:21.155: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-w87c6 -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Oct 26 05:40:21.213: INFO: stderr: "" +Oct 26 05:40:21.213: INFO: stdout: "k8s.gcr.io/e2e-test-images/nautilus:1.5" +Oct 26 05:40:21.213: INFO: validating pod update-demo-nautilus-w87c6 +Oct 26 05:40:21.218: INFO: got data: { + "image": "nautilus.jpg" +} + +Oct 26 05:40:21.218: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Oct 26 05:40:21.218: INFO: update-demo-nautilus-w87c6 is verified up and running +STEP: scaling down the replication controller +Oct 26 05:40:21.219: INFO: scanned /root for discovery docs: +Oct 26 05:40:21.219: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 scale rc update-demo-nautilus --replicas=1 --timeout=5m' +Oct 26 05:40:22.296: INFO: stderr: "" +Oct 26 05:40:22.296: INFO: stdout: "replicationcontroller/update-demo-nautilus scaled\n" +STEP: waiting for all containers in name=update-demo pods to come up. +Oct 26 05:40:22.296: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Oct 26 05:40:22.358: INFO: stderr: "" +Oct 26 05:40:22.358: INFO: stdout: "update-demo-nautilus-2dlqq " +Oct 26 05:40:22.358: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-2dlqq -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Oct 26 05:40:22.420: INFO: stderr: "" +Oct 26 05:40:22.420: INFO: stdout: "true" +Oct 26 05:40:22.420: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-2dlqq -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Oct 26 05:40:22.493: INFO: stderr: "" +Oct 26 05:40:22.494: INFO: stdout: "k8s.gcr.io/e2e-test-images/nautilus:1.5" +Oct 26 05:40:22.494: INFO: validating pod update-demo-nautilus-2dlqq +Oct 26 05:40:22.500: INFO: got data: { + "image": "nautilus.jpg" +} + +Oct 26 05:40:22.500: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Oct 26 05:40:22.500: INFO: update-demo-nautilus-2dlqq is verified up and running +STEP: scaling up the replication controller +Oct 26 05:40:22.502: INFO: scanned /root for discovery docs: +Oct 26 05:40:22.502: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 scale rc update-demo-nautilus --replicas=2 --timeout=5m' +Oct 26 05:40:23.634: INFO: stderr: "" +Oct 26 05:40:23.634: INFO: stdout: "replicationcontroller/update-demo-nautilus scaled\n" +STEP: waiting for all containers in name=update-demo pods to come up. +Oct 26 05:40:23.634: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Oct 26 05:40:23.698: INFO: stderr: "" +Oct 26 05:40:23.698: INFO: stdout: "update-demo-nautilus-2dlqq update-demo-nautilus-xdcpg " +Oct 26 05:40:23.698: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-2dlqq -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Oct 26 05:40:23.760: INFO: stderr: "" +Oct 26 05:40:23.760: INFO: stdout: "true" +Oct 26 05:40:23.760: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-2dlqq -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Oct 26 05:40:23.824: INFO: stderr: "" +Oct 26 05:40:23.824: INFO: stdout: "k8s.gcr.io/e2e-test-images/nautilus:1.5" +Oct 26 05:40:23.824: INFO: validating pod update-demo-nautilus-2dlqq +Oct 26 05:40:23.827: INFO: got data: { + "image": "nautilus.jpg" +} + +Oct 26 05:40:23.827: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Oct 26 05:40:23.827: INFO: update-demo-nautilus-2dlqq is verified up and running +Oct 26 05:40:23.827: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-xdcpg -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Oct 26 05:40:23.893: INFO: stderr: "" +Oct 26 05:40:23.893: INFO: stdout: "" +Oct 26 05:40:23.893: INFO: update-demo-nautilus-xdcpg is created but not running +Oct 26 05:40:28.893: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods -o template --template={{range.items}}{{.metadata.name}} {{end}} -l name=update-demo' +Oct 26 05:40:28.972: INFO: stderr: "" +Oct 26 05:40:28.972: INFO: stdout: "update-demo-nautilus-2dlqq update-demo-nautilus-xdcpg " +Oct 26 05:40:28.972: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-2dlqq -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Oct 26 05:40:29.037: INFO: stderr: "" +Oct 26 05:40:29.037: INFO: stdout: "true" +Oct 26 05:40:29.038: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-2dlqq -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Oct 26 05:40:29.102: INFO: stderr: "" +Oct 26 05:40:29.102: INFO: stdout: "k8s.gcr.io/e2e-test-images/nautilus:1.5" +Oct 26 05:40:29.102: INFO: validating pod update-demo-nautilus-2dlqq +Oct 26 05:40:29.105: INFO: got data: { + "image": "nautilus.jpg" +} + +Oct 26 05:40:29.105: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Oct 26 05:40:29.105: INFO: update-demo-nautilus-2dlqq is verified up and running +Oct 26 05:40:29.105: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-xdcpg -o template --template={{if (exists . "status" "containerStatuses")}}{{range .status.containerStatuses}}{{if (and (eq .name "update-demo") (exists . "state" "running"))}}true{{end}}{{end}}{{end}}' +Oct 26 05:40:29.165: INFO: stderr: "" +Oct 26 05:40:29.165: INFO: stdout: "true" +Oct 26 05:40:29.165: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods update-demo-nautilus-xdcpg -o template --template={{if (exists . "spec" "containers")}}{{range .spec.containers}}{{if eq .name "update-demo"}}{{.image}}{{end}}{{end}}{{end}}' +Oct 26 05:40:29.225: INFO: stderr: "" +Oct 26 05:40:29.225: INFO: stdout: "k8s.gcr.io/e2e-test-images/nautilus:1.5" +Oct 26 05:40:29.225: INFO: validating pod update-demo-nautilus-xdcpg +Oct 26 05:40:29.237: INFO: got data: { + "image": "nautilus.jpg" +} + +Oct 26 05:40:29.237: INFO: Unmarshalled json jpg/img => {nautilus.jpg} , expecting nautilus.jpg . +Oct 26 05:40:29.237: INFO: update-demo-nautilus-xdcpg is verified up and running +STEP: using delete to clean up resources +Oct 26 05:40:29.237: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 delete --grace-period=0 --force -f -' +Oct 26 05:40:29.302: INFO: stderr: "warning: Immediate deletion does not wait for confirmation that the running resource has been terminated. The resource may continue to run on the cluster indefinitely.\n" +Oct 26 05:40:29.302: INFO: stdout: "replicationcontroller \"update-demo-nautilus\" force deleted\n" +Oct 26 05:40:29.302: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get rc,svc -l name=update-demo --no-headers' +Oct 26 05:40:29.435: INFO: stderr: "No resources found in kubectl-8672 namespace.\n" +Oct 26 05:40:29.435: INFO: stdout: "" +Oct 26 05:40:29.435: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-8672 get pods -l name=update-demo -o go-template={{ range .items }}{{ if not .metadata.deletionTimestamp }}{{ .metadata.name }}{{ "\n" }}{{ end }}{{ end }}' +Oct 26 05:40:29.596: INFO: stderr: "" +Oct 26 05:40:29.596: INFO: stdout: "" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 05:40:29.596: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-8672" for this suite. + +• [SLOW TEST:14.860 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Update Demo + test/e2e/kubectl/kubectl.go:295 + should scale a replication controller [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-cli] Kubectl client Update Demo should scale a replication controller [Conformance]","total":356,"completed":282,"skipped":5107,"failed":0} +SSSSSSS +------------------------------ +[sig-instrumentation] Events + should ensure that an event can be fetched, patched, deleted, and listed [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-instrumentation] Events + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:40:29.609: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename events +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should ensure that an event can be fetched, patched, deleted, and listed [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a test event +STEP: listing all events in all namespaces +STEP: patching the test event +STEP: fetching the test event +STEP: deleting the test event +STEP: listing all events in all namespaces +[AfterEach] [sig-instrumentation] Events + test/e2e/framework/framework.go:188 +Oct 26 05:40:29.651: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "events-6516" for this suite. +•{"msg":"PASSED [sig-instrumentation] Events should ensure that an event can be fetched, patched, deleted, and listed [Conformance]","total":356,"completed":283,"skipped":5114,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-storage] Projected secret + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:40:29.660: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating secret with name s-test-opt-del-ef4cac49-19ad-4206-9fd9-88f31b4b7e96 +STEP: Creating secret with name s-test-opt-upd-bfca8e13-dbc2-4da9-a9cc-87ea96d5d286 +STEP: Creating the pod +Oct 26 05:40:29.703: INFO: The status of Pod pod-projected-secrets-49adbe9a-4251-4446-87a8-c13762a1cecc is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:40:31.710: INFO: The status of Pod pod-projected-secrets-49adbe9a-4251-4446-87a8-c13762a1cecc is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:40:33.709: INFO: The status of Pod pod-projected-secrets-49adbe9a-4251-4446-87a8-c13762a1cecc is Running (Ready = true) +STEP: Deleting secret s-test-opt-del-ef4cac49-19ad-4206-9fd9-88f31b4b7e96 +STEP: Updating secret s-test-opt-upd-bfca8e13-dbc2-4da9-a9cc-87ea96d5d286 +STEP: Creating secret with name s-test-opt-create-7c19c3d3-6c44-4eaf-a3c8-70227ff5a14b +STEP: waiting to observe update in volume +[AfterEach] [sig-storage] Projected secret + test/e2e/framework/framework.go:188 +Oct 26 05:41:37.956: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-9275" for this suite. + +• [SLOW TEST:68.341 seconds] +[sig-storage] Projected secret +test/e2e/common/storage/framework.go:23 + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected secret optional updates should be reflected in volume [NodeConformance] [Conformance]","total":356,"completed":284,"skipped":5125,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Secrets + should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:41:38.004: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating secret with name secret-test-20739dc4-ee25-45e3-aaa6-b5068c3e1706 +STEP: Creating a pod to test consume secrets +Oct 26 05:41:38.087: INFO: Waiting up to 5m0s for pod "pod-secrets-2edb8c21-ae5c-47f9-b02a-cc723fb3116c" in namespace "secrets-2512" to be "Succeeded or Failed" +Oct 26 05:41:38.092: INFO: Pod "pod-secrets-2edb8c21-ae5c-47f9-b02a-cc723fb3116c": Phase="Pending", Reason="", readiness=false. Elapsed: 5.208538ms +Oct 26 05:41:40.096: INFO: Pod "pod-secrets-2edb8c21-ae5c-47f9-b02a-cc723fb3116c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009226902s +Oct 26 05:41:42.105: INFO: Pod "pod-secrets-2edb8c21-ae5c-47f9-b02a-cc723fb3116c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.017860715s +STEP: Saw pod success +Oct 26 05:41:42.105: INFO: Pod "pod-secrets-2edb8c21-ae5c-47f9-b02a-cc723fb3116c" satisfied condition "Succeeded or Failed" +Oct 26 05:41:42.107: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-secrets-2edb8c21-ae5c-47f9-b02a-cc723fb3116c container secret-volume-test: +STEP: delete the pod +Oct 26 05:41:42.119: INFO: Waiting for pod pod-secrets-2edb8c21-ae5c-47f9-b02a-cc723fb3116c to disappear +Oct 26 05:41:42.121: INFO: Pod pod-secrets-2edb8c21-ae5c-47f9-b02a-cc723fb3116c no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/framework.go:188 +Oct 26 05:41:42.121: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-2512" for this suite. +•{"msg":"PASSED [sig-storage] Secrets should be consumable in multiple volumes in a pod [NodeConformance] [Conformance]","total":356,"completed":285,"skipped":5179,"failed":0} +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl label + should update the label on a resource [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:41:42.127: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[BeforeEach] Kubectl label + test/e2e/kubectl/kubectl.go:1334 +STEP: creating the pod +Oct 26 05:41:42.143: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-5828 create -f -' +Oct 26 05:41:42.342: INFO: stderr: "" +Oct 26 05:41:42.342: INFO: stdout: "pod/pause created\n" +Oct 26 05:41:42.342: INFO: Waiting up to 5m0s for 1 pods to be running and ready: [pause] +Oct 26 05:41:42.342: INFO: Waiting up to 5m0s for pod "pause" in namespace "kubectl-5828" to be "running and ready" +Oct 26 05:41:42.348: INFO: Pod "pause": Phase="Pending", Reason="", readiness=false. Elapsed: 5.457148ms +Oct 26 05:41:44.353: INFO: Pod "pause": Phase="Running", Reason="", readiness=true. Elapsed: 2.010703078s +Oct 26 05:41:44.353: INFO: Pod "pause" satisfied condition "running and ready" +Oct 26 05:41:44.353: INFO: Wanted all 1 pods to be running and ready. Result: true. Pods: [pause] +[It] should update the label on a resource [Conformance] + test/e2e/framework/framework.go:652 +STEP: adding the label testing-label with value testing-label-value to a pod +Oct 26 05:41:44.353: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-5828 label pods pause testing-label=testing-label-value' +Oct 26 05:41:44.549: INFO: stderr: "" +Oct 26 05:41:44.549: INFO: stdout: "pod/pause labeled\n" +STEP: verifying the pod has the label testing-label with the value testing-label-value +Oct 26 05:41:44.549: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-5828 get pod pause -L testing-label' +Oct 26 05:41:44.759: INFO: stderr: "" +Oct 26 05:41:44.759: INFO: stdout: "NAME READY STATUS RESTARTS AGE TESTING-LABEL\npause 1/1 Running 0 2s testing-label-value\n" +STEP: removing the label testing-label of a pod +Oct 26 05:41:44.759: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-5828 label pods pause testing-label-' +Oct 26 05:41:44.922: INFO: stderr: "" +Oct 26 05:41:44.922: INFO: stdout: "pod/pause unlabeled\n" +STEP: verifying the pod doesn't have the label testing-label +Oct 26 05:41:44.922: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-5828 get pod pause -L testing-label' +Oct 26 05:41:45.064: INFO: stderr: "" +Oct 26 05:41:45.064: INFO: stdout: "NAME READY STATUS RESTARTS AGE TESTING-LABEL\npause 1/1 Running 0 3s \n" +[AfterEach] Kubectl label + test/e2e/kubectl/kubectl.go:1340 +STEP: using delete to clean up resources +Oct 26 05:41:45.064: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-5828 delete --grace-period=0 --force -f -' +Oct 26 05:41:45.144: INFO: stderr: "warning: Immediate deletion does not wait for confirmation that the running resource has been terminated. The resource may continue to run on the cluster indefinitely.\n" +Oct 26 05:41:45.144: INFO: stdout: "pod \"pause\" force deleted\n" +Oct 26 05:41:45.144: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-5828 get rc,svc -l name=pause --no-headers' +Oct 26 05:41:45.224: INFO: stderr: "No resources found in kubectl-5828 namespace.\n" +Oct 26 05:41:45.224: INFO: stdout: "" +Oct 26 05:41:45.224: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-5828 get pods -l name=pause -o go-template={{ range .items }}{{ if not .metadata.deletionTimestamp }}{{ .metadata.name }}{{ "\n" }}{{ end }}{{ end }}' +Oct 26 05:41:45.287: INFO: stderr: "" +Oct 26 05:41:45.287: INFO: stdout: "" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 05:41:45.287: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-5828" for this suite. +•{"msg":"PASSED [sig-cli] Kubectl client Kubectl label should update the label on a resource [Conformance]","total":356,"completed":286,"skipped":5196,"failed":0} +SSSSSSS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:41:45.294: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name projected-configmap-test-volume-280ce51d-24ca-4ab0-bb5a-234e78208058 +STEP: Creating a pod to test consume configMaps +Oct 26 05:41:45.320: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-ede53bae-39ea-4e03-b6e8-da1b1458e7f7" in namespace "projected-7808" to be "Succeeded or Failed" +Oct 26 05:41:45.323: INFO: Pod "pod-projected-configmaps-ede53bae-39ea-4e03-b6e8-da1b1458e7f7": Phase="Pending", Reason="", readiness=false. Elapsed: 3.342319ms +Oct 26 05:41:47.341: INFO: Pod "pod-projected-configmaps-ede53bae-39ea-4e03-b6e8-da1b1458e7f7": Phase="Pending", Reason="", readiness=false. Elapsed: 2.021293683s +Oct 26 05:41:49.346: INFO: Pod "pod-projected-configmaps-ede53bae-39ea-4e03-b6e8-da1b1458e7f7": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.025761914s +STEP: Saw pod success +Oct 26 05:41:49.346: INFO: Pod "pod-projected-configmaps-ede53bae-39ea-4e03-b6e8-da1b1458e7f7" satisfied condition "Succeeded or Failed" +Oct 26 05:41:49.348: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-projected-configmaps-ede53bae-39ea-4e03-b6e8-da1b1458e7f7 container agnhost-container: +STEP: delete the pod +Oct 26 05:41:49.362: INFO: Waiting for pod pod-projected-configmaps-ede53bae-39ea-4e03-b6e8-da1b1458e7f7 to disappear +Oct 26 05:41:49.364: INFO: Pod pod-projected-configmaps-ede53bae-39ea-4e03-b6e8-da1b1458e7f7 no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:188 +Oct 26 05:41:49.365: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-7808" for this suite. +•{"msg":"PASSED [sig-storage] Projected configMap should be consumable from pods in volume [NodeConformance] [Conformance]","total":356,"completed":287,"skipped":5203,"failed":0} +S +------------------------------ +[sig-architecture] Conformance Tests + should have at least two untainted nodes [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-architecture] Conformance Tests + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:41:49.372: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename conformance-tests +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should have at least two untainted nodes [Conformance] + test/e2e/framework/framework.go:652 +STEP: Getting node addresses +Oct 26 05:41:49.392: INFO: Waiting up to 10m0s for all (but 0) nodes to be schedulable +[AfterEach] [sig-architecture] Conformance Tests + test/e2e/framework/framework.go:188 +Oct 26 05:41:49.399: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "conformance-tests-930" for this suite. +•{"msg":"PASSED [sig-architecture] Conformance Tests should have at least two untainted nodes [Conformance]","total":356,"completed":288,"skipped":5204,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook + should execute poststart http hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:41:49.407: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-lifecycle-hook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:55 +STEP: create the container to handle the HTTPGet hook request. +Oct 26 05:41:49.435: INFO: The status of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:41:51.441: INFO: The status of Pod pod-handle-http-request is Running (Ready = true) +[It] should execute poststart http hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the pod with lifecycle hook +Oct 26 05:41:51.450: INFO: The status of Pod pod-with-poststart-http-hook is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:41:53.455: INFO: The status of Pod pod-with-poststart-http-hook is Running (Ready = true) +STEP: check poststart hook +STEP: delete the pod with lifecycle hook +Oct 26 05:41:53.465: INFO: Waiting for pod pod-with-poststart-http-hook to disappear +Oct 26 05:41:53.468: INFO: Pod pod-with-poststart-http-hook still exists +Oct 26 05:41:55.469: INFO: Waiting for pod pod-with-poststart-http-hook to disappear +Oct 26 05:41:55.475: INFO: Pod pod-with-poststart-http-hook still exists +Oct 26 05:41:57.469: INFO: Waiting for pod pod-with-poststart-http-hook to disappear +Oct 26 05:41:57.472: INFO: Pod pod-with-poststart-http-hook no longer exists +[AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/framework.go:188 +Oct 26 05:41:57.472: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-lifecycle-hook-7398" for this suite. + +• [SLOW TEST:8.074 seconds] +[sig-node] Container Lifecycle Hook +test/e2e/common/node/framework.go:23 + when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:46 + should execute poststart http hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart http hook properly [NodeConformance] [Conformance]","total":356,"completed":289,"skipped":5219,"failed":0} +SSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should verify changes to a daemon set status [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:41:57.482: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename daemonsets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:145 +[It] should verify changes to a daemon set status [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating simple DaemonSet "daemon-set" +STEP: Check that daemon pods launch on every node of the cluster. +Oct 26 05:41:57.520: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:41:57.527: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:41:57.527: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:41:58.533: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:41:58.540: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:41:58.541: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:41:59.535: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:41:59.537: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Oct 26 05:41:59.537: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:42:00.535: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:42:00.538: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Oct 26 05:42:00.538: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +STEP: Getting /status +Oct 26 05:42:00.542: INFO: Daemon Set daemon-set has Conditions: [] +STEP: updating the DaemonSet Status +Oct 26 05:42:00.548: INFO: updatedStatus.Conditions: []v1.DaemonSetCondition{v1.DaemonSetCondition{Type:"StatusUpdate", Status:"True", LastTransitionTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), Reason:"E2E", Message:"Set from e2e test"}} +STEP: watching for the daemon set status to be updated +Oct 26 05:42:00.550: INFO: Observed &DaemonSet event: ADDED +Oct 26 05:42:00.550: INFO: Observed &DaemonSet event: MODIFIED +Oct 26 05:42:00.550: INFO: Observed &DaemonSet event: MODIFIED +Oct 26 05:42:00.550: INFO: Observed &DaemonSet event: MODIFIED +Oct 26 05:42:00.550: INFO: Observed &DaemonSet event: MODIFIED +Oct 26 05:42:00.551: INFO: Observed &DaemonSet event: MODIFIED +Oct 26 05:42:00.551: INFO: Found daemon set daemon-set in namespace daemonsets-3402 with labels: map[daemonset-name:daemon-set] annotations: map[deprecated.daemonset.template.generation:1] & Conditions: [{StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test}] +Oct 26 05:42:00.551: INFO: Daemon set daemon-set has an updated status +STEP: patching the DaemonSet Status +STEP: watching for the daemon set status to be patched +Oct 26 05:42:00.557: INFO: Observed &DaemonSet event: ADDED +Oct 26 05:42:00.557: INFO: Observed &DaemonSet event: MODIFIED +Oct 26 05:42:00.557: INFO: Observed &DaemonSet event: MODIFIED +Oct 26 05:42:00.557: INFO: Observed &DaemonSet event: MODIFIED +Oct 26 05:42:00.558: INFO: Observed &DaemonSet event: MODIFIED +Oct 26 05:42:00.558: INFO: Observed &DaemonSet event: MODIFIED +Oct 26 05:42:00.558: INFO: Observed daemon set daemon-set in namespace daemonsets-3402 with annotations: map[deprecated.daemonset.template.generation:1] & Conditions: [{StatusUpdate True 0001-01-01 00:00:00 +0000 UTC E2E Set from e2e test}] +Oct 26 05:42:00.558: INFO: Observed &DaemonSet event: MODIFIED +Oct 26 05:42:00.558: INFO: Found daemon set daemon-set in namespace daemonsets-3402 with labels: map[daemonset-name:daemon-set] annotations: map[deprecated.daemonset.template.generation:1] & Conditions: [{StatusPatched True 0001-01-01 00:00:00 +0000 UTC }] +Oct 26 05:42:00.558: INFO: Daemon set daemon-set has a patched status +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:110 +STEP: Deleting DaemonSet "daemon-set" +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-3402, will wait for the garbage collector to delete the pods +Oct 26 05:42:00.620: INFO: Deleting DaemonSet.extensions daemon-set took: 3.768359ms +Oct 26 05:42:00.721: INFO: Terminating DaemonSet.extensions daemon-set pods took: 101.07132ms +Oct 26 05:42:03.225: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:42:03.225: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Oct 26 05:42:03.227: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"31983"},"items":null} + +Oct 26 05:42:03.229: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"31983"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:42:03.238: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "daemonsets-3402" for this suite. + +• [SLOW TEST:5.763 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should verify changes to a daemon set status [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Daemon set [Serial] should verify changes to a daemon set status [Conformance]","total":356,"completed":290,"skipped":5240,"failed":0} +SSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + updates the published spec when one version gets renamed [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:42:03.245: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-publish-openapi +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] updates the published spec when one version gets renamed [Conformance] + test/e2e/framework/framework.go:652 +STEP: set up a multi version CRD +Oct 26 05:42:03.261: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: rename a version +STEP: check the new version name is served +STEP: check the old version name is removed +STEP: check the other version is not changed +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:42:19.608: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-publish-openapi-8320" for this suite. + +• [SLOW TEST:16.375 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + updates the published spec when one version gets renamed [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] updates the published spec when one version gets renamed [Conformance]","total":356,"completed":291,"skipped":5256,"failed":0} +SS +------------------------------ +[sig-storage] Downward API volume + should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:42:19.620: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:43 +[It] should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 05:42:19.643: INFO: Waiting up to 5m0s for pod "downwardapi-volume-c11cdb9b-105b-4e98-90a1-4cc92bf65c54" in namespace "downward-api-4550" to be "Succeeded or Failed" +Oct 26 05:42:19.646: INFO: Pod "downwardapi-volume-c11cdb9b-105b-4e98-90a1-4cc92bf65c54": Phase="Pending", Reason="", readiness=false. Elapsed: 2.781247ms +Oct 26 05:42:21.653: INFO: Pod "downwardapi-volume-c11cdb9b-105b-4e98-90a1-4cc92bf65c54": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009974629s +Oct 26 05:42:23.659: INFO: Pod "downwardapi-volume-c11cdb9b-105b-4e98-90a1-4cc92bf65c54": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.01552797s +STEP: Saw pod success +Oct 26 05:42:23.659: INFO: Pod "downwardapi-volume-c11cdb9b-105b-4e98-90a1-4cc92bf65c54" satisfied condition "Succeeded or Failed" +Oct 26 05:42:23.661: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-c11cdb9b-105b-4e98-90a1-4cc92bf65c54 container client-container: +STEP: delete the pod +Oct 26 05:42:23.681: INFO: Waiting for pod downwardapi-volume-c11cdb9b-105b-4e98-90a1-4cc92bf65c54 to disappear +Oct 26 05:42:23.683: INFO: Pod downwardapi-volume-c11cdb9b-105b-4e98-90a1-4cc92bf65c54 no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:188 +Oct 26 05:42:23.683: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-4550" for this suite. +•{"msg":"PASSED [sig-storage] Downward API volume should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance]","total":356,"completed":292,"skipped":5258,"failed":0} +SSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should have session affinity timeout work for NodePort service [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:42:23.690: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should have session affinity timeout work for NodePort service [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating service in namespace services-8830 +Oct 26 05:42:23.712: INFO: The status of Pod kube-proxy-mode-detector is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:42:25.718: INFO: The status of Pod kube-proxy-mode-detector is Running (Ready = true) +Oct 26 05:42:25.720: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8830 exec kube-proxy-mode-detector -- /bin/sh -x -c curl -q -s --connect-timeout 1 http://localhost:10249/proxyMode' +Oct 26 05:42:25.854: INFO: stderr: "+ curl -q -s --connect-timeout 1 http://localhost:10249/proxyMode\n" +Oct 26 05:42:25.854: INFO: stdout: "iptables" +Oct 26 05:42:25.854: INFO: proxyMode: iptables +Oct 26 05:42:25.864: INFO: Waiting for pod kube-proxy-mode-detector to disappear +Oct 26 05:42:25.866: INFO: Pod kube-proxy-mode-detector no longer exists +STEP: creating service affinity-nodeport-timeout in namespace services-8830 +STEP: creating replication controller affinity-nodeport-timeout in namespace services-8830 +I1026 05:42:25.884992 20 runners.go:193] Created replication controller with name: affinity-nodeport-timeout, namespace: services-8830, replica count: 3 +I1026 05:42:28.945006 20 runners.go:193] affinity-nodeport-timeout Pods: 3 out of 3 created, 3 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Oct 26 05:42:28.954: INFO: Creating new exec pod +Oct 26 05:42:33.974: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8830 exec execpod-affinityl8b6c -- /bin/sh -x -c echo hostName | nc -v -t -w 2 affinity-nodeport-timeout 80' +Oct 26 05:42:34.133: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 affinity-nodeport-timeout 80\nConnection to affinity-nodeport-timeout 80 port [tcp/http] succeeded!\n" +Oct 26 05:42:34.133: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:42:34.137: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8830 exec execpod-affinityl8b6c -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.64.210.229 80' +Oct 26 05:42:34.268: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.64.210.229 80\nConnection to 100.64.210.229 80 port [tcp/http] succeeded!\n" +Oct 26 05:42:34.269: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:42:34.269: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8830 exec execpod-affinityl8b6c -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.115.72 30989' +Oct 26 05:42:34.430: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.115.72 30989\nConnection to 172.20.115.72 30989 port [tcp/*] succeeded!\n" +Oct 26 05:42:34.430: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:42:34.430: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8830 exec execpod-affinityl8b6c -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.54.156 30989' +Oct 26 05:42:34.581: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.54.156 30989\nConnection to 172.20.54.156 30989 port [tcp/*] succeeded!\n" +Oct 26 05:42:34.581: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:42:34.581: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8830 exec execpod-affinityl8b6c -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://172.20.115.72:30989/ ; done' +Oct 26 05:42:34.776: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n" +Oct 26 05:42:34.776: INFO: stdout: "\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c\naffinity-nodeport-timeout-t7j4c" +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Received response from host: affinity-nodeport-timeout-t7j4c +Oct 26 05:42:34.776: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8830 exec execpod-affinityl8b6c -- /bin/sh -x -c curl -q -s --connect-timeout 2 http://172.20.115.72:30989/' +Oct 26 05:42:34.907: INFO: stderr: "+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n" +Oct 26 05:42:34.907: INFO: stdout: "affinity-nodeport-timeout-t7j4c" +Oct 26 05:42:54.909: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8830 exec execpod-affinityl8b6c -- /bin/sh -x -c curl -q -s --connect-timeout 2 http://172.20.115.72:30989/' +Oct 26 05:42:55.101: INFO: stderr: "+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n" +Oct 26 05:42:55.101: INFO: stdout: "affinity-nodeport-timeout-t7j4c" +Oct 26 05:43:15.102: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8830 exec execpod-affinityl8b6c -- /bin/sh -x -c curl -q -s --connect-timeout 2 http://172.20.115.72:30989/' +Oct 26 05:43:15.260: INFO: stderr: "+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n" +Oct 26 05:43:15.260: INFO: stdout: "affinity-nodeport-timeout-t7j4c" +Oct 26 05:43:35.262: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8830 exec execpod-affinityl8b6c -- /bin/sh -x -c curl -q -s --connect-timeout 2 http://172.20.115.72:30989/' +Oct 26 05:43:35.393: INFO: stderr: "+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n" +Oct 26 05:43:35.393: INFO: stdout: "affinity-nodeport-timeout-t7j4c" +Oct 26 05:43:55.394: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8830 exec execpod-affinityl8b6c -- /bin/sh -x -c curl -q -s --connect-timeout 2 http://172.20.115.72:30989/' +Oct 26 05:43:55.560: INFO: stderr: "+ curl -q -s --connect-timeout 2 http://172.20.115.72:30989/\n" +Oct 26 05:43:55.560: INFO: stdout: "affinity-nodeport-timeout-2hhkq" +Oct 26 05:43:55.560: INFO: Cleaning up the exec pod +STEP: deleting ReplicationController affinity-nodeport-timeout in namespace services-8830, will wait for the garbage collector to delete the pods +Oct 26 05:43:55.634: INFO: Deleting ReplicationController affinity-nodeport-timeout took: 4.084818ms +Oct 26 05:43:55.734: INFO: Terminating ReplicationController affinity-nodeport-timeout pods took: 100.194961ms +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 05:43:57.656: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-8830" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:93.972 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should have session affinity timeout work for NodePort service [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should have session affinity timeout work for NodePort service [LinuxOnly] [Conformance]","total":356,"completed":293,"skipped":5278,"failed":0} +SSSS +------------------------------ +[sig-network] DNS + should support configurable pod DNS nameservers [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] DNS + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:43:57.663: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename dns +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support configurable pod DNS nameservers [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod with dnsPolicy=None and customized dnsConfig... +Oct 26 05:43:57.687: INFO: Created pod &Pod{ObjectMeta:{test-dns-nameservers dns-6896 feb3863e-83e1-4bcb-8d14-653629d69fe0 32553 0 2022-10-26 05:43:57 +0000 UTC map[] map[] [] [] [{e2e.test Update v1 2022-10-26 05:43:57 +0000 UTC FieldsV1 {"f:spec":{"f:containers":{"k:{\"name\":\"agnhost-container\"}":{".":{},"f:args":{},"f:image":{},"f:imagePullPolicy":{},"f:name":{},"f:resources":{},"f:securityContext":{},"f:terminationMessagePath":{},"f:terminationMessagePolicy":{}}},"f:dnsConfig":{".":{},"f:nameservers":{},"f:searches":{}},"f:dnsPolicy":{},"f:enableServiceLinks":{},"f:restartPolicy":{},"f:schedulerName":{},"f:securityContext":{},"f:terminationGracePeriodSeconds":{}}} }]},Spec:PodSpec{Volumes:[]Volume{Volume{Name:kube-api-access-hwldw,VolumeSource:VolumeSource{HostPath:nil,EmptyDir:nil,GCEPersistentDisk:nil,AWSElasticBlockStore:nil,GitRepo:nil,Secret:nil,NFS:nil,ISCSI:nil,Glusterfs:nil,PersistentVolumeClaim:nil,RBD:nil,FlexVolume:nil,Cinder:nil,CephFS:nil,Flocker:nil,DownwardAPI:nil,FC:nil,AzureFile:nil,ConfigMap:nil,VsphereVolume:nil,Quobyte:nil,AzureDisk:nil,PhotonPersistentDisk:nil,PortworxVolume:nil,ScaleIO:nil,Projected:&ProjectedVolumeSource{Sources:[]VolumeProjection{VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:nil,ServiceAccountToken:&ServiceAccountTokenProjection{Audience:,ExpirationSeconds:*3607,Path:token,},},VolumeProjection{Secret:nil,DownwardAPI:nil,ConfigMap:&ConfigMapProjection{LocalObjectReference:LocalObjectReference{Name:kube-root-ca.crt,},Items:[]KeyToPath{KeyToPath{Key:ca.crt,Path:ca.crt,Mode:nil,},},Optional:nil,},ServiceAccountToken:nil,},VolumeProjection{Secret:nil,DownwardAPI:&DownwardAPIProjection{Items:[]DownwardAPIVolumeFile{DownwardAPIVolumeFile{Path:namespace,FieldRef:&ObjectFieldSelector{APIVersion:v1,FieldPath:metadata.namespace,},ResourceFieldRef:nil,Mode:nil,},},},ConfigMap:nil,ServiceAccountToken:nil,},},DefaultMode:*420,},StorageOS:nil,CSI:nil,Ephemeral:nil,},},},Containers:[]Container{Container{Name:agnhost-container,Image:k8s.gcr.io/e2e-test-images/agnhost:2.39,Command:[],Args:[pause],WorkingDir:,Ports:[]ContainerPort{},Env:[]EnvVar{},Resources:ResourceRequirements{Limits:ResourceList{},Requests:ResourceList{},},VolumeMounts:[]VolumeMount{VolumeMount{Name:kube-api-access-hwldw,ReadOnly:true,MountPath:/var/run/secrets/kubernetes.io/serviceaccount,SubPath:,MountPropagation:nil,SubPathExpr:,},},LivenessProbe:nil,ReadinessProbe:nil,Lifecycle:nil,TerminationMessagePath:/dev/termination-log,ImagePullPolicy:IfNotPresent,SecurityContext:&SecurityContext{Capabilities:nil,Privileged:nil,SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,ReadOnlyRootFilesystem:nil,AllowPrivilegeEscalation:nil,RunAsGroup:nil,ProcMount:nil,WindowsOptions:nil,SeccompProfile:nil,},Stdin:false,StdinOnce:false,TTY:false,EnvFrom:[]EnvFromSource{},TerminationMessagePolicy:File,VolumeDevices:[]VolumeDevice{},StartupProbe:nil,},},RestartPolicy:Always,TerminationGracePeriodSeconds:*0,ActiveDeadlineSeconds:nil,DNSPolicy:None,NodeSelector:map[string]string{},ServiceAccountName:default,DeprecatedServiceAccount:default,NodeName:,HostNetwork:false,HostPID:false,HostIPC:false,SecurityContext:&PodSecurityContext{SELinuxOptions:nil,RunAsUser:nil,RunAsNonRoot:nil,SupplementalGroups:[],FSGroup:nil,RunAsGroup:nil,Sysctls:[]Sysctl{},WindowsOptions:nil,FSGroupChangePolicy:nil,SeccompProfile:nil,},ImagePullSecrets:[]LocalObjectReference{},Hostname:,Subdomain:,Affinity:nil,SchedulerName:default-scheduler,InitContainers:[]Container{},AutomountServiceAccountToken:nil,Tolerations:[]Toleration{Toleration{Key:node.kubernetes.io/not-ready,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},Toleration{Key:node.kubernetes.io/unreachable,Operator:Exists,Value:,Effect:NoExecute,TolerationSeconds:*300,},},HostAliases:[]HostAlias{},PriorityClassName:,Priority:*0,DNSConfig:&PodDNSConfig{Nameservers:[1.1.1.1],Searches:[resolv.conf.local],Options:[]PodDNSConfigOption{},},ShareProcessNamespace:nil,ReadinessGates:[]PodReadinessGate{},RuntimeClassName:nil,EnableServiceLinks:*true,PreemptionPolicy:*PreemptLowerPriority,Overhead:ResourceList{},TopologySpreadConstraints:[]TopologySpreadConstraint{},EphemeralContainers:[]EphemeralContainer{},SetHostnameAsFQDN:nil,OS:nil,},Status:PodStatus{Phase:Pending,Conditions:[]PodCondition{},Message:,Reason:,HostIP:,PodIP:,StartTime:,ContainerStatuses:[]ContainerStatus{},QOSClass:BestEffort,InitContainerStatuses:[]ContainerStatus{},NominatedNodeName:,PodIPs:[]PodIP{},EphemeralContainerStatuses:[]ContainerStatus{},},} +Oct 26 05:43:57.691: INFO: The status of Pod test-dns-nameservers is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:43:59.697: INFO: The status of Pod test-dns-nameservers is Running (Ready = true) +STEP: Verifying customized DNS suffix list is configured on pod... +Oct 26 05:43:59.697: INFO: ExecWithOptions {Command:[/agnhost dns-suffix] Namespace:dns-6896 PodName:test-dns-nameservers ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 05:43:59.697: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 05:43:59.697: INFO: ExecWithOptions: Clientset creation +Oct 26 05:43:59.697: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/dns-6896/pods/test-dns-nameservers/exec?command=%2Fagnhost&command=dns-suffix&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +STEP: Verifying customized DNS server is configured on pod... +Oct 26 05:43:59.762: INFO: ExecWithOptions {Command:[/agnhost dns-server-list] Namespace:dns-6896 PodName:test-dns-nameservers ContainerName:agnhost-container Stdin: CaptureStdout:true CaptureStderr:true PreserveWhitespace:false Quiet:false} +Oct 26 05:43:59.762: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +Oct 26 05:43:59.763: INFO: ExecWithOptions: Clientset creation +Oct 26 05:43:59.763: INFO: ExecWithOptions: execute(POST https://100.64.0.1:443/api/v1/namespaces/dns-6896/pods/test-dns-nameservers/exec?command=%2Fagnhost&command=dns-server-list&container=agnhost-container&container=agnhost-container&stderr=true&stdout=true) +Oct 26 05:43:59.838: INFO: Deleting pod test-dns-nameservers... +[AfterEach] [sig-network] DNS + test/e2e/framework/framework.go:188 +Oct 26 05:43:59.848: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "dns-6896" for this suite. +•{"msg":"PASSED [sig-network] DNS should support configurable pod DNS nameservers [Conformance]","total":356,"completed":294,"skipped":5282,"failed":0} +SSSSSSSSS +------------------------------ +[sig-node] Pods + should contain environment variables for services [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Pods + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:43:59.863: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pods +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:191 +[It] should contain environment variables for services [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:43:59.896: INFO: The status of Pod server-envvars-d6198d6f-3feb-4762-a071-c7cc13a3b8ec is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:44:01.904: INFO: The status of Pod server-envvars-d6198d6f-3feb-4762-a071-c7cc13a3b8ec is Running (Ready = true) +Oct 26 05:44:01.974: INFO: Waiting up to 5m0s for pod "client-envvars-e2f48f55-80f7-40bd-8b88-a10cc1f4539e" in namespace "pods-1321" to be "Succeeded or Failed" +Oct 26 05:44:02.016: INFO: Pod "client-envvars-e2f48f55-80f7-40bd-8b88-a10cc1f4539e": Phase="Pending", Reason="", readiness=false. Elapsed: 42.16794ms +Oct 26 05:44:04.028: INFO: Pod "client-envvars-e2f48f55-80f7-40bd-8b88-a10cc1f4539e": Phase="Pending", Reason="", readiness=false. Elapsed: 2.053756842s +Oct 26 05:44:06.034: INFO: Pod "client-envvars-e2f48f55-80f7-40bd-8b88-a10cc1f4539e": Phase="Pending", Reason="", readiness=false. Elapsed: 4.06049483s +Oct 26 05:44:08.039: INFO: Pod "client-envvars-e2f48f55-80f7-40bd-8b88-a10cc1f4539e": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.06518139s +STEP: Saw pod success +Oct 26 05:44:08.039: INFO: Pod "client-envvars-e2f48f55-80f7-40bd-8b88-a10cc1f4539e" satisfied condition "Succeeded or Failed" +Oct 26 05:44:08.043: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod client-envvars-e2f48f55-80f7-40bd-8b88-a10cc1f4539e container env3cont: +STEP: delete the pod +Oct 26 05:44:08.076: INFO: Waiting for pod client-envvars-e2f48f55-80f7-40bd-8b88-a10cc1f4539e to disappear +Oct 26 05:44:08.080: INFO: Pod client-envvars-e2f48f55-80f7-40bd-8b88-a10cc1f4539e no longer exists +[AfterEach] [sig-node] Pods + test/e2e/framework/framework.go:188 +Oct 26 05:44:08.080: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pods-1321" for this suite. + +• [SLOW TEST:8.224 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should contain environment variables for services [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Pods should contain environment variables for services [NodeConformance] [Conformance]","total":356,"completed":295,"skipped":5291,"failed":0} +SSSSSSSSSSSS +------------------------------ +[sig-apps] CronJob + should not schedule jobs when suspended [Slow] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] CronJob + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:44:08.088: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename cronjob +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should not schedule jobs when suspended [Slow] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a suspended cronjob +STEP: Ensuring no jobs are scheduled +STEP: Ensuring no job exists by listing jobs explicitly +STEP: Removing cronjob +[AfterEach] [sig-apps] CronJob + test/e2e/framework/framework.go:188 +Oct 26 05:49:08.126: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "cronjob-4418" for this suite. + +• [SLOW TEST:300.045 seconds] +[sig-apps] CronJob +test/e2e/apps/framework.go:23 + should not schedule jobs when suspended [Slow] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] CronJob should not schedule jobs when suspended [Slow] [Conformance]","total":356,"completed":296,"skipped":5303,"failed":0} +SSSSSSSSSSSSSS +------------------------------ +[sig-storage] Subpath Atomic writer volumes + should support subpaths with configmap pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Subpath + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:49:08.135: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename subpath +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 +STEP: Setting up data +[It] should support subpaths with configmap pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating pod pod-subpath-test-configmap-b9hp +STEP: Creating a pod to test atomic-volume-subpath +Oct 26 05:49:08.165: INFO: Waiting up to 5m0s for pod "pod-subpath-test-configmap-b9hp" in namespace "subpath-9064" to be "Succeeded or Failed" +Oct 26 05:49:08.168: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Pending", Reason="", readiness=false. Elapsed: 3.590851ms +Oct 26 05:49:10.177: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Running", Reason="", readiness=true. Elapsed: 2.012221836s +Oct 26 05:49:12.183: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Running", Reason="", readiness=true. Elapsed: 4.01845929s +Oct 26 05:49:14.187: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Running", Reason="", readiness=true. Elapsed: 6.022147409s +Oct 26 05:49:16.196: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Running", Reason="", readiness=true. Elapsed: 8.031114484s +Oct 26 05:49:18.201: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Running", Reason="", readiness=true. Elapsed: 10.036068957s +Oct 26 05:49:20.213: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Running", Reason="", readiness=true. Elapsed: 12.048716557s +Oct 26 05:49:22.222: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Running", Reason="", readiness=true. Elapsed: 14.057277004s +Oct 26 05:49:24.228: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Running", Reason="", readiness=true. Elapsed: 16.063187914s +Oct 26 05:49:26.246: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Running", Reason="", readiness=true. Elapsed: 18.081117923s +Oct 26 05:49:28.251: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Running", Reason="", readiness=true. Elapsed: 20.086493134s +Oct 26 05:49:30.258: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Running", Reason="", readiness=false. Elapsed: 22.093487458s +Oct 26 05:49:32.263: INFO: Pod "pod-subpath-test-configmap-b9hp": Phase="Succeeded", Reason="", readiness=false. Elapsed: 24.098391477s +STEP: Saw pod success +Oct 26 05:49:32.263: INFO: Pod "pod-subpath-test-configmap-b9hp" satisfied condition "Succeeded or Failed" +Oct 26 05:49:32.266: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-subpath-test-configmap-b9hp container test-container-subpath-configmap-b9hp: +STEP: delete the pod +Oct 26 05:49:32.299: INFO: Waiting for pod pod-subpath-test-configmap-b9hp to disappear +Oct 26 05:49:32.303: INFO: Pod pod-subpath-test-configmap-b9hp no longer exists +STEP: Deleting pod pod-subpath-test-configmap-b9hp +Oct 26 05:49:32.303: INFO: Deleting pod "pod-subpath-test-configmap-b9hp" in namespace "subpath-9064" +[AfterEach] [sig-storage] Subpath + test/e2e/framework/framework.go:188 +Oct 26 05:49:32.307: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "subpath-9064" for this suite. + +• [SLOW TEST:24.187 seconds] +[sig-storage] Subpath +test/e2e/storage/utils/framework.go:23 + Atomic writer volumes + test/e2e/storage/subpath.go:36 + should support subpaths with configmap pod [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Subpath Atomic writer volumes should support subpaths with configmap pod [Conformance]","total":356,"completed":297,"skipped":5317,"failed":0} +SSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should mutate pod and apply defaults after mutation [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:49:32.323: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:49:33.052: INFO: new replicaset for deployment "sample-webhook-deployment" is yet to be created +Oct 26 05:49:35.060: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 49, 33, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 49, 33, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 49, 33, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 49, 33, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:49:38.076: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should mutate pod and apply defaults after mutation [Conformance] + test/e2e/framework/framework.go:652 +STEP: Registering the mutating pod webhook via the AdmissionRegistration API +STEP: create a pod that should be updated by the webhook +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:49:38.114: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-5074" for this suite. +STEP: Destroying namespace "webhook-5074-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:5.859 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should mutate pod and apply defaults after mutation [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate pod and apply defaults after mutation [Conformance]","total":356,"completed":298,"skipped":5322,"failed":0} +[sig-storage] Secrets + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:49:38.183: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating secret with name secret-test-map-7efb79b0-ba02-4aae-ab45-1d254f79be67 +STEP: Creating a pod to test consume secrets +Oct 26 05:49:38.223: INFO: Waiting up to 5m0s for pod "pod-secrets-a992e5af-ece7-43fd-923b-84e2e5fcf6e0" in namespace "secrets-3841" to be "Succeeded or Failed" +Oct 26 05:49:38.229: INFO: Pod "pod-secrets-a992e5af-ece7-43fd-923b-84e2e5fcf6e0": Phase="Pending", Reason="", readiness=false. Elapsed: 6.35265ms +Oct 26 05:49:40.236: INFO: Pod "pod-secrets-a992e5af-ece7-43fd-923b-84e2e5fcf6e0": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013631945s +Oct 26 05:49:42.244: INFO: Pod "pod-secrets-a992e5af-ece7-43fd-923b-84e2e5fcf6e0": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.021001825s +STEP: Saw pod success +Oct 26 05:49:42.245: INFO: Pod "pod-secrets-a992e5af-ece7-43fd-923b-84e2e5fcf6e0" satisfied condition "Succeeded or Failed" +Oct 26 05:49:42.254: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-secrets-a992e5af-ece7-43fd-923b-84e2e5fcf6e0 container secret-volume-test: +STEP: delete the pod +Oct 26 05:49:42.266: INFO: Waiting for pod pod-secrets-a992e5af-ece7-43fd-923b-84e2e5fcf6e0 to disappear +Oct 26 05:49:42.268: INFO: Pod pod-secrets-a992e5af-ece7-43fd-923b-84e2e5fcf6e0 no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/framework.go:188 +Oct 26 05:49:42.268: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-3841" for this suite. +•{"msg":"PASSED [sig-storage] Secrets should be consumable from pods in volume with mappings [NodeConformance] [Conformance]","total":356,"completed":299,"skipped":5322,"failed":0} +SSSSSS +------------------------------ +[sig-node] Security Context when creating containers with AllowPrivilegeEscalation + should not allow privilege escalation when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Security Context + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:49:42.274: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename security-context-test +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Security Context + test/e2e/common/node/security_context.go:48 +[It] should not allow privilege escalation when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:49:42.300: INFO: Waiting up to 5m0s for pod "alpine-nnp-false-a105a2d5-433a-4d48-9a03-9d2fbb8a0331" in namespace "security-context-test-1380" to be "Succeeded or Failed" +Oct 26 05:49:42.303: INFO: Pod "alpine-nnp-false-a105a2d5-433a-4d48-9a03-9d2fbb8a0331": Phase="Pending", Reason="", readiness=false. Elapsed: 2.311331ms +Oct 26 05:49:44.305: INFO: Pod "alpine-nnp-false-a105a2d5-433a-4d48-9a03-9d2fbb8a0331": Phase="Pending", Reason="", readiness=false. Elapsed: 2.004667496s +Oct 26 05:49:46.311: INFO: Pod "alpine-nnp-false-a105a2d5-433a-4d48-9a03-9d2fbb8a0331": Phase="Pending", Reason="", readiness=false. Elapsed: 4.011092403s +Oct 26 05:49:48.319: INFO: Pod "alpine-nnp-false-a105a2d5-433a-4d48-9a03-9d2fbb8a0331": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.018246277s +Oct 26 05:49:48.319: INFO: Pod "alpine-nnp-false-a105a2d5-433a-4d48-9a03-9d2fbb8a0331" satisfied condition "Succeeded or Failed" +[AfterEach] [sig-node] Security Context + test/e2e/framework/framework.go:188 +Oct 26 05:49:48.327: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "security-context-test-1380" for this suite. + +• [SLOW TEST:6.060 seconds] +[sig-node] Security Context +test/e2e/common/node/framework.go:23 + when creating containers with AllowPrivilegeEscalation + test/e2e/common/node/security_context.go:298 + should not allow privilege escalation when false [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Security Context when creating containers with AllowPrivilegeEscalation should not allow privilege escalation when false [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":300,"skipped":5328,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:49:48.336: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:43 +[It] should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 05:49:48.366: INFO: Waiting up to 5m0s for pod "downwardapi-volume-b7a6526f-4ad2-4581-9309-78bb789ee72e" in namespace "projected-1107" to be "Succeeded or Failed" +Oct 26 05:49:48.369: INFO: Pod "downwardapi-volume-b7a6526f-4ad2-4581-9309-78bb789ee72e": Phase="Pending", Reason="", readiness=false. Elapsed: 2.310627ms +Oct 26 05:49:50.383: INFO: Pod "downwardapi-volume-b7a6526f-4ad2-4581-9309-78bb789ee72e": Phase="Pending", Reason="", readiness=false. Elapsed: 2.016816715s +Oct 26 05:49:52.390: INFO: Pod "downwardapi-volume-b7a6526f-4ad2-4581-9309-78bb789ee72e": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.023216085s +STEP: Saw pod success +Oct 26 05:49:52.390: INFO: Pod "downwardapi-volume-b7a6526f-4ad2-4581-9309-78bb789ee72e" satisfied condition "Succeeded or Failed" +Oct 26 05:49:52.392: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-b7a6526f-4ad2-4581-9309-78bb789ee72e container client-container: +STEP: delete the pod +Oct 26 05:49:52.404: INFO: Waiting for pod downwardapi-volume-b7a6526f-4ad2-4581-9309-78bb789ee72e to disappear +Oct 26 05:49:52.407: INFO: Pod downwardapi-volume-b7a6526f-4ad2-4581-9309-78bb789ee72e no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:188 +Oct 26 05:49:52.407: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-1107" for this suite. +•{"msg":"PASSED [sig-storage] Projected downwardAPI should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance]","total":356,"completed":301,"skipped":5352,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-node] Downward API + should provide pod UID as env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Downward API + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:49:52.415: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should provide pod UID as env vars [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward api env vars +Oct 26 05:49:52.442: INFO: Waiting up to 5m0s for pod "downward-api-51fcb03a-9425-4644-a396-006020856f15" in namespace "downward-api-8283" to be "Succeeded or Failed" +Oct 26 05:49:52.447: INFO: Pod "downward-api-51fcb03a-9425-4644-a396-006020856f15": Phase="Pending", Reason="", readiness=false. Elapsed: 4.809273ms +Oct 26 05:49:54.454: INFO: Pod "downward-api-51fcb03a-9425-4644-a396-006020856f15": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012281175s +Oct 26 05:49:56.460: INFO: Pod "downward-api-51fcb03a-9425-4644-a396-006020856f15": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.017656696s +STEP: Saw pod success +Oct 26 05:49:56.460: INFO: Pod "downward-api-51fcb03a-9425-4644-a396-006020856f15" satisfied condition "Succeeded or Failed" +Oct 26 05:49:56.467: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downward-api-51fcb03a-9425-4644-a396-006020856f15 container dapi-container: +STEP: delete the pod +Oct 26 05:49:56.504: INFO: Waiting for pod downward-api-51fcb03a-9425-4644-a396-006020856f15 to disappear +Oct 26 05:49:56.518: INFO: Pod downward-api-51fcb03a-9425-4644-a396-006020856f15 no longer exists +[AfterEach] [sig-node] Downward API + test/e2e/framework/framework.go:188 +Oct 26 05:49:56.518: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-8283" for this suite. +•{"msg":"PASSED [sig-node] Downward API should provide pod UID as env vars [NodeConformance] [Conformance]","total":356,"completed":302,"skipped":5367,"failed":0} +SSS +------------------------------ +[sig-cli] Kubectl client Kubectl expose + should create services for rc [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:49:56.532: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[It] should create services for rc [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating Agnhost RC +Oct 26 05:49:56.566: INFO: namespace kubectl-88 +Oct 26 05:49:56.567: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-88 create -f -' +Oct 26 05:49:57.472: INFO: stderr: "" +Oct 26 05:49:57.472: INFO: stdout: "replicationcontroller/agnhost-primary created\n" +STEP: Waiting for Agnhost primary to start. +Oct 26 05:49:58.478: INFO: Selector matched 1 pods for map[app:agnhost] +Oct 26 05:49:58.478: INFO: Found 0 / 1 +Oct 26 05:49:59.477: INFO: Selector matched 1 pods for map[app:agnhost] +Oct 26 05:49:59.477: INFO: Found 1 / 1 +Oct 26 05:49:59.477: INFO: WaitFor completed with timeout 5m0s. Pods found = 1 out of 1 +Oct 26 05:49:59.479: INFO: Selector matched 1 pods for map[app:agnhost] +Oct 26 05:49:59.479: INFO: ForEach: Found 1 pods from the filter. Now looping through them. +Oct 26 05:49:59.479: INFO: wait on agnhost-primary startup in kubectl-88 +Oct 26 05:49:59.479: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-88 logs agnhost-primary-nc9j8 agnhost-primary' +Oct 26 05:49:59.575: INFO: stderr: "" +Oct 26 05:49:59.575: INFO: stdout: "Paused\n" +STEP: exposing RC +Oct 26 05:49:59.575: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-88 expose rc agnhost-primary --name=rm2 --port=1234 --target-port=6379' +Oct 26 05:49:59.670: INFO: stderr: "" +Oct 26 05:49:59.670: INFO: stdout: "service/rm2 exposed\n" +Oct 26 05:49:59.673: INFO: Service rm2 in namespace kubectl-88 found. +STEP: exposing service +Oct 26 05:50:01.685: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-88 expose service rm2 --name=rm3 --port=2345 --target-port=6379' +Oct 26 05:50:01.774: INFO: stderr: "" +Oct 26 05:50:01.774: INFO: stdout: "service/rm3 exposed\n" +Oct 26 05:50:01.779: INFO: Service rm3 in namespace kubectl-88 found. +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 05:50:03.785: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-88" for this suite. + +• [SLOW TEST:7.261 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl expose + test/e2e/kubectl/kubectl.go:1249 + should create services for rc [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-cli] Kubectl client Kubectl expose should create services for rc [Conformance]","total":356,"completed":303,"skipped":5370,"failed":0} +SSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should mutate custom resource [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:50:03.793: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:50:04.487: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:50:07.510: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should mutate custom resource [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:50:07.513: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Registering the mutating webhook for custom resource e2e-test-webhook-990-crds.webhook.example.com via the AdmissionRegistration API +STEP: Creating a custom resource that should be mutated by the webhook +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:50:10.587: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-9999" for this suite. +STEP: Destroying namespace "webhook-9999-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:6.905 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should mutate custom resource [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate custom resource [Conformance]","total":356,"completed":304,"skipped":5374,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should provide podname only [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:50:10.698: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:43 +[It] should provide podname only [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 05:50:10.756: INFO: Waiting up to 5m0s for pod "downwardapi-volume-6aa79078-1520-441b-8368-f6c748631e83" in namespace "downward-api-4366" to be "Succeeded or Failed" +Oct 26 05:50:10.765: INFO: Pod "downwardapi-volume-6aa79078-1520-441b-8368-f6c748631e83": Phase="Pending", Reason="", readiness=false. Elapsed: 9.268313ms +Oct 26 05:50:12.769: INFO: Pod "downwardapi-volume-6aa79078-1520-441b-8368-f6c748631e83": Phase="Pending", Reason="", readiness=false. Elapsed: 2.013423164s +Oct 26 05:50:14.779: INFO: Pod "downwardapi-volume-6aa79078-1520-441b-8368-f6c748631e83": Phase="Pending", Reason="", readiness=false. Elapsed: 4.022633896s +Oct 26 05:50:16.783: INFO: Pod "downwardapi-volume-6aa79078-1520-441b-8368-f6c748631e83": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.026630852s +STEP: Saw pod success +Oct 26 05:50:16.783: INFO: Pod "downwardapi-volume-6aa79078-1520-441b-8368-f6c748631e83" satisfied condition "Succeeded or Failed" +Oct 26 05:50:16.785: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-6aa79078-1520-441b-8368-f6c748631e83 container client-container: +STEP: delete the pod +Oct 26 05:50:16.794: INFO: Waiting for pod downwardapi-volume-6aa79078-1520-441b-8368-f6c748631e83 to disappear +Oct 26 05:50:16.798: INFO: Pod downwardapi-volume-6aa79078-1520-441b-8368-f6c748631e83 no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:188 +Oct 26 05:50:16.798: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-4366" for this suite. + +• [SLOW TEST:6.108 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should provide podname only [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Downward API volume should provide podname only [NodeConformance] [Conformance]","total":356,"completed":305,"skipped":5385,"failed":0} +SS +------------------------------ +[sig-node] RuntimeClass + should reject a Pod requesting a deleted RuntimeClass [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:50:16.808: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename runtimeclass +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should reject a Pod requesting a deleted RuntimeClass [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Deleting RuntimeClass runtimeclass-1834-delete-me +STEP: Waiting for the RuntimeClass to disappear +[AfterEach] [sig-node] RuntimeClass + test/e2e/framework/framework.go:188 +Oct 26 05:50:16.860: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "runtimeclass-1834" for this suite. +•{"msg":"PASSED [sig-node] RuntimeClass should reject a Pod requesting a deleted RuntimeClass [NodeConformance] [Conformance]","total":356,"completed":306,"skipped":5387,"failed":0} +SSSSS +------------------------------ +[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook + should execute prestop exec hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:50:16.871: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-lifecycle-hook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:55 +STEP: create the container to handle the HTTPGet hook request. +Oct 26 05:50:16.909: INFO: The status of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:50:18.915: INFO: The status of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:50:20.918: INFO: The status of Pod pod-handle-http-request is Running (Ready = true) +[It] should execute prestop exec hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the pod with lifecycle hook +Oct 26 05:50:20.929: INFO: The status of Pod pod-with-prestop-exec-hook is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:50:22.934: INFO: The status of Pod pod-with-prestop-exec-hook is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:50:24.932: INFO: The status of Pod pod-with-prestop-exec-hook is Running (Ready = true) +STEP: delete the pod with lifecycle hook +Oct 26 05:50:24.938: INFO: Waiting for pod pod-with-prestop-exec-hook to disappear +Oct 26 05:50:24.942: INFO: Pod pod-with-prestop-exec-hook still exists +Oct 26 05:50:26.942: INFO: Waiting for pod pod-with-prestop-exec-hook to disappear +Oct 26 05:50:26.947: INFO: Pod pod-with-prestop-exec-hook no longer exists +STEP: check prestop hook +[AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/framework.go:188 +Oct 26 05:50:26.951: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-lifecycle-hook-3806" for this suite. + +• [SLOW TEST:10.087 seconds] +[sig-node] Container Lifecycle Hook +test/e2e/common/node/framework.go:23 + when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:46 + should execute prestop exec hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop exec hook properly [NodeConformance] [Conformance]","total":356,"completed":307,"skipped":5392,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] ReplicaSet + should adopt matching pods on creation and release no longer matching pods [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:50:26.961: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename replicaset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should adopt matching pods on creation and release no longer matching pods [Conformance] + test/e2e/framework/framework.go:652 +STEP: Given a Pod with a 'name' label pod-adoption-release is created +Oct 26 05:50:26.992: INFO: The status of Pod pod-adoption-release is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:50:28.997: INFO: The status of Pod pod-adoption-release is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:50:31.000: INFO: The status of Pod pod-adoption-release is Running (Ready = true) +STEP: When a replicaset with a matching selector is created +STEP: Then the orphan pod is adopted +STEP: When the matched label of one of its pods change +Oct 26 05:50:32.020: INFO: Pod name pod-adoption-release: Found 1 pods out of 1 +STEP: Then the pod is released +[AfterEach] [sig-apps] ReplicaSet + test/e2e/framework/framework.go:188 +Oct 26 05:50:32.054: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "replicaset-5072" for this suite. + +• [SLOW TEST:5.148 seconds] +[sig-apps] ReplicaSet +test/e2e/apps/framework.go:23 + should adopt matching pods on creation and release no longer matching pods [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] ReplicaSet should adopt matching pods on creation and release no longer matching pods [Conformance]","total":356,"completed":308,"skipped":5470,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Container Runtime blackbox test on terminated container + should report termination message from log output if TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Container Runtime + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:50:32.115: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-runtime +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should report termination message from log output if TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the container +STEP: wait for the container to reach Failed +STEP: get the container status +STEP: the container should be terminated +STEP: the termination message should be set +Oct 26 05:50:37.196: INFO: Expected: &{DONE} to match Container's Termination Message: DONE -- +STEP: delete the container +[AfterEach] [sig-node] Container Runtime + test/e2e/framework/framework.go:188 +Oct 26 05:50:37.210: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-runtime-7768" for this suite. + +• [SLOW TEST:5.104 seconds] +[sig-node] Container Runtime +test/e2e/common/node/framework.go:23 + blackbox test + test/e2e/common/node/runtime.go:43 + on terminated container + test/e2e/common/node/runtime.go:136 + should report termination message from log output if TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Container Runtime blackbox test on terminated container should report termination message from log output if TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance]","total":356,"completed":309,"skipped":5526,"failed":0} +SSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should run and stop complex daemon [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:50:37.219: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename daemonsets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:145 +[It] should run and stop complex daemon [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:50:37.254: INFO: Creating daemon "daemon-set" with a node selector +STEP: Initially, daemon pods should not be running on any nodes. +Oct 26 05:50:37.272: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:37.272: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +STEP: Change node label to blue, check that daemon pod is launched. +Oct 26 05:50:37.295: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:37.295: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:50:38.300: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:38.300: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:50:39.301: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:39.301: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:50:40.300: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 +Oct 26 05:50:40.300: INFO: Number of running nodes: 1, number of available pods: 1 in daemonset daemon-set +STEP: Update the node label to green, and wait for daemons to be unscheduled +Oct 26 05:50:40.330: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 +Oct 26 05:50:40.330: INFO: Number of running nodes: 0, number of available pods: 1 in daemonset daemon-set +Oct 26 05:50:41.334: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:41.334: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +STEP: Update DaemonSet node selector to green, and change its update strategy to RollingUpdate +Oct 26 05:50:41.345: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:41.346: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:50:42.364: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:42.364: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:50:43.352: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:43.352: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:50:44.352: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:44.352: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:50:45.351: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 +Oct 26 05:50:45.351: INFO: Number of running nodes: 1, number of available pods: 1 in daemonset daemon-set +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:110 +STEP: Deleting DaemonSet "daemon-set" +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-2876, will wait for the garbage collector to delete the pods +Oct 26 05:50:45.413: INFO: Deleting DaemonSet.extensions daemon-set took: 4.879396ms +Oct 26 05:50:45.514: INFO: Terminating DaemonSet.extensions daemon-set pods took: 101.166386ms +Oct 26 05:50:47.517: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:47.517: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Oct 26 05:50:47.520: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"34636"},"items":null} + +Oct 26 05:50:47.526: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"34636"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:50:47.572: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "daemonsets-2876" for this suite. + +• [SLOW TEST:10.369 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should run and stop complex daemon [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Daemon set [Serial] should run and stop complex daemon [Conformance]","total":356,"completed":310,"skipped":5548,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Containers + should be able to override the image's default command (container entrypoint) [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Containers + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:50:47.596: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename containers +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be able to override the image's default command (container entrypoint) [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test override command +Oct 26 05:50:47.616: INFO: Waiting up to 5m0s for pod "client-containers-3a10c67b-a6e3-4938-98b6-3ba2d0baa0a2" in namespace "containers-9811" to be "Succeeded or Failed" +Oct 26 05:50:47.618: INFO: Pod "client-containers-3a10c67b-a6e3-4938-98b6-3ba2d0baa0a2": Phase="Pending", Reason="", readiness=false. Elapsed: 1.783088ms +Oct 26 05:50:49.629: INFO: Pod "client-containers-3a10c67b-a6e3-4938-98b6-3ba2d0baa0a2": Phase="Pending", Reason="", readiness=false. Elapsed: 2.012633974s +Oct 26 05:50:51.635: INFO: Pod "client-containers-3a10c67b-a6e3-4938-98b6-3ba2d0baa0a2": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.019212845s +STEP: Saw pod success +Oct 26 05:50:51.636: INFO: Pod "client-containers-3a10c67b-a6e3-4938-98b6-3ba2d0baa0a2" satisfied condition "Succeeded or Failed" +Oct 26 05:50:51.638: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod client-containers-3a10c67b-a6e3-4938-98b6-3ba2d0baa0a2 container agnhost-container: +STEP: delete the pod +Oct 26 05:50:51.648: INFO: Waiting for pod client-containers-3a10c67b-a6e3-4938-98b6-3ba2d0baa0a2 to disappear +Oct 26 05:50:51.651: INFO: Pod client-containers-3a10c67b-a6e3-4938-98b6-3ba2d0baa0a2 no longer exists +[AfterEach] [sig-node] Containers + test/e2e/framework/framework.go:188 +Oct 26 05:50:51.651: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "containers-9811" for this suite. +•{"msg":"PASSED [sig-node] Containers should be able to override the image's default command (container entrypoint) [NodeConformance] [Conformance]","total":356,"completed":311,"skipped":5622,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-instrumentation] Events API + should delete a collection of events [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-instrumentation] Events API + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:50:51.660: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename events +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-instrumentation] Events API + test/e2e/instrumentation/events.go:84 +[It] should delete a collection of events [Conformance] + test/e2e/framework/framework.go:652 +STEP: Create set of events +STEP: get a list of Events with a label in the current namespace +STEP: delete a list of events +Oct 26 05:50:51.685: INFO: requesting DeleteCollection of events +STEP: check that the list of events matches the requested quantity +[AfterEach] [sig-instrumentation] Events API + test/e2e/framework/framework.go:188 +Oct 26 05:50:51.694: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "events-5118" for this suite. +•{"msg":"PASSED [sig-instrumentation] Events API should delete a collection of events [Conformance]","total":356,"completed":312,"skipped":5661,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-apps] Daemon set [Serial] + should run and stop simple daemon [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:50:51.704: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename daemonsets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:145 +[It] should run and stop simple daemon [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating simple DaemonSet "daemon-set" +STEP: Check that daemon pods launch on every node of the cluster. +Oct 26 05:50:51.763: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:50:51.777: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:51.778: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:50:52.783: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:50:52.786: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:50:52.786: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:50:53.783: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:50:53.786: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 1 +Oct 26 05:50:53.786: INFO: Node i-066ef2cf0d4227da4 is running 0 daemon pod, expected 1 +Oct 26 05:50:54.784: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:50:54.787: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Oct 26 05:50:54.787: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +STEP: Stop a daemon pod, check that the daemon pod is revived. +Oct 26 05:50:54.809: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:50:54.812: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Oct 26 05:50:54.812: INFO: Node i-0ac1bb196421f13a1 is running 0 daemon pod, expected 1 +Oct 26 05:50:55.822: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:50:55.825: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Oct 26 05:50:55.825: INFO: Node i-0ac1bb196421f13a1 is running 0 daemon pod, expected 1 +Oct 26 05:50:56.819: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:50:56.823: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Oct 26 05:50:56.823: INFO: Node i-0ac1bb196421f13a1 is running 0 daemon pod, expected 1 +Oct 26 05:50:57.816: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:50:57.818: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 2 +Oct 26 05:50:57.818: INFO: Node i-0ac1bb196421f13a1 is running 0 daemon pod, expected 1 +Oct 26 05:50:58.818: INFO: DaemonSet pods can't tolerate node i-01a506a1cd9f42b49 with taints [{Key:node-role.kubernetes.io/control-plane Value: Effect:NoSchedule TimeAdded:}], skip checking this node +Oct 26 05:50:58.824: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 3 +Oct 26 05:50:58.824: INFO: Number of running nodes: 3, number of available pods: 3 in daemonset daemon-set +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/apps/daemon_set.go:110 +STEP: Deleting DaemonSet "daemon-set" +STEP: deleting DaemonSet.extensions daemon-set in namespace daemonsets-9571, will wait for the garbage collector to delete the pods +Oct 26 05:50:58.887: INFO: Deleting DaemonSet.extensions daemon-set took: 4.981388ms +Oct 26 05:50:58.988: INFO: Terminating DaemonSet.extensions daemon-set pods took: 100.927108ms +Oct 26 05:51:01.598: INFO: Number of nodes with available pods controlled by daemonset daemon-set: 0 +Oct 26 05:51:01.598: INFO: Number of running nodes: 0, number of available pods: 0 in daemonset daemon-set +Oct 26 05:51:01.601: INFO: daemonset: {"kind":"DaemonSetList","apiVersion":"apps/v1","metadata":{"resourceVersion":"34781"},"items":null} + +Oct 26 05:51:01.603: INFO: pods: {"kind":"PodList","apiVersion":"v1","metadata":{"resourceVersion":"34781"},"items":null} + +[AfterEach] [sig-apps] Daemon set [Serial] + test/e2e/framework/framework.go:188 +Oct 26 05:51:01.611: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "daemonsets-9571" for this suite. + +• [SLOW TEST:9.914 seconds] +[sig-apps] Daemon set [Serial] +test/e2e/apps/framework.go:23 + should run and stop simple daemon [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] Daemon set [Serial] should run and stop simple daemon [Conformance]","total":356,"completed":313,"skipped":5696,"failed":0} +SSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + custom resource defaulting for requests and from storage works [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:51:01.619: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename custom-resource-definition +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] custom resource defaulting for requests and from storage works [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:51:01.638: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +[AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:51:04.776: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "custom-resource-definition-4635" for this suite. +•{"msg":"PASSED [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] custom resource defaulting for requests and from storage works [Conformance]","total":356,"completed":314,"skipped":5715,"failed":0} +SSSSS +------------------------------ +[sig-api-machinery] server version + should find the server version [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] server version + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:51:04.784: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename server-version +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should find the server version [Conformance] + test/e2e/framework/framework.go:652 +STEP: Request ServerVersion +STEP: Confirm major version +Oct 26 05:51:04.803: INFO: Major version: 1 +STEP: Confirm minor version +Oct 26 05:51:04.804: INFO: cleanMinorVersion: 24 +Oct 26 05:51:04.804: INFO: Minor version: 24 +[AfterEach] [sig-api-machinery] server version + test/e2e/framework/framework.go:188 +Oct 26 05:51:04.804: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "server-version-2156" for this suite. +•{"msg":"PASSED [sig-api-machinery] server version should find the server version [Conformance]","total":356,"completed":315,"skipped":5720,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-network] Services + should be able to switch session affinity for NodePort service [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:51:04.811: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should be able to switch session affinity for NodePort service [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating service in namespace services-8083 +STEP: creating service affinity-nodeport-transition in namespace services-8083 +STEP: creating replication controller affinity-nodeport-transition in namespace services-8083 +I1026 05:51:04.845828 20 runners.go:193] Created replication controller with name: affinity-nodeport-transition, namespace: services-8083, replica count: 3 +I1026 05:51:07.897779 20 runners.go:193] affinity-nodeport-transition Pods: 3 out of 3 created, 3 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Oct 26 05:51:07.905: INFO: Creating new exec pod +Oct 26 05:51:12.926: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8083 exec execpod-affinity5t2bf -- /bin/sh -x -c echo hostName | nc -v -t -w 2 affinity-nodeport-transition 80' +Oct 26 05:51:13.106: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 affinity-nodeport-transition 80\nConnection to affinity-nodeport-transition 80 port [tcp/http] succeeded!\n" +Oct 26 05:51:13.107: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:51:13.107: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8083 exec execpod-affinity5t2bf -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.69.117.211 80' +Oct 26 05:51:13.234: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.69.117.211 80\nConnection to 100.69.117.211 80 port [tcp/http] succeeded!\n" +Oct 26 05:51:13.234: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:51:13.234: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8083 exec execpod-affinity5t2bf -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.115.72 31260' +Oct 26 05:51:13.368: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.115.72 31260\nConnection to 172.20.115.72 31260 port [tcp/*] succeeded!\n" +Oct 26 05:51:13.368: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:51:13.368: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8083 exec execpod-affinity5t2bf -- /bin/sh -x -c echo hostName | nc -v -t -w 2 172.20.86.64 31260' +Oct 26 05:51:13.505: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 172.20.86.64 31260\nConnection to 172.20.86.64 31260 port [tcp/*] succeeded!\n" +Oct 26 05:51:13.505: INFO: stdout: "HTTP/1.1 400 Bad Request\r\nContent-Type: text/plain; charset=utf-8\r\nConnection: close\r\n\r\n400 Bad Request" +Oct 26 05:51:13.511: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8083 exec execpod-affinity5t2bf -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://172.20.115.72:31260/ ; done' +Oct 26 05:51:13.747: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n" +Oct 26 05:51:13.747: INFO: stdout: "\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-2j9zv\naffinity-nodeport-transition-2j9zv\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-2j9zv\naffinity-nodeport-transition-2j9zv\naffinity-nodeport-transition-2j9zv\naffinity-nodeport-transition-wfrnl\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-2j9zv\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-wfrnl\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-wfrnl" +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-2j9zv +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-2j9zv +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-2j9zv +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-2j9zv +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-2j9zv +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-wfrnl +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-2j9zv +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-wfrnl +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:13.747: INFO: Received response from host: affinity-nodeport-transition-wfrnl +Oct 26 05:51:13.758: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-8083 exec execpod-affinity5t2bf -- /bin/sh -x -c for i in $(seq 0 15); do echo; curl -q -s --connect-timeout 2 http://172.20.115.72:31260/ ; done' +Oct 26 05:51:14.038: INFO: stderr: "+ seq 0 15\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n+ echo\n+ curl -q -s --connect-timeout 2 http://172.20.115.72:31260/\n" +Oct 26 05:51:14.038: INFO: stdout: "\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc\naffinity-nodeport-transition-cxsmc" +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Received response from host: affinity-nodeport-transition-cxsmc +Oct 26 05:51:14.038: INFO: Cleaning up the exec pod +STEP: deleting ReplicationController affinity-nodeport-transition in namespace services-8083, will wait for the garbage collector to delete the pods +Oct 26 05:51:14.110: INFO: Deleting ReplicationController affinity-nodeport-transition took: 4.170374ms +Oct 26 05:51:14.210: INFO: Terminating ReplicationController affinity-nodeport-transition pods took: 100.194562ms +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 05:51:16.431: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-8083" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:11.626 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should be able to switch session affinity for NodePort service [LinuxOnly] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should be able to switch session affinity for NodePort service [LinuxOnly] [Conformance]","total":356,"completed":316,"skipped":5731,"failed":0} +SSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Secrets + should be able to mount in a volume regardless of a different secret existing with same name in different namespace [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Secrets + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:51:16.438: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename secrets +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be able to mount in a volume regardless of a different secret existing with same name in different namespace [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating secret with name secret-test-053311b5-4a65-4045-b59d-e4ce57fa7778 +STEP: Creating a pod to test consume secrets +Oct 26 05:51:16.466: INFO: Waiting up to 5m0s for pod "pod-secrets-eb65ad20-c2eb-423e-b99b-b85ab14e990c" in namespace "secrets-1107" to be "Succeeded or Failed" +Oct 26 05:51:16.469: INFO: Pod "pod-secrets-eb65ad20-c2eb-423e-b99b-b85ab14e990c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.516898ms +Oct 26 05:51:18.475: INFO: Pod "pod-secrets-eb65ad20-c2eb-423e-b99b-b85ab14e990c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008726783s +Oct 26 05:51:20.482: INFO: Pod "pod-secrets-eb65ad20-c2eb-423e-b99b-b85ab14e990c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015838447s +Oct 26 05:51:22.486: INFO: Pod "pod-secrets-eb65ad20-c2eb-423e-b99b-b85ab14e990c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.019259794s +STEP: Saw pod success +Oct 26 05:51:22.486: INFO: Pod "pod-secrets-eb65ad20-c2eb-423e-b99b-b85ab14e990c" satisfied condition "Succeeded or Failed" +Oct 26 05:51:22.488: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-secrets-eb65ad20-c2eb-423e-b99b-b85ab14e990c container secret-volume-test: +STEP: delete the pod +Oct 26 05:51:22.498: INFO: Waiting for pod pod-secrets-eb65ad20-c2eb-423e-b99b-b85ab14e990c to disappear +Oct 26 05:51:22.501: INFO: Pod pod-secrets-eb65ad20-c2eb-423e-b99b-b85ab14e990c no longer exists +[AfterEach] [sig-storage] Secrets + test/e2e/framework/framework.go:188 +Oct 26 05:51:22.501: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "secrets-1107" for this suite. +STEP: Destroying namespace "secret-namespace-7307" for this suite. + +• [SLOW TEST:6.073 seconds] +[sig-storage] Secrets +test/e2e/common/storage/framework.go:23 + should be able to mount in a volume regardless of a different secret existing with same name in different namespace [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Secrets should be able to mount in a volume regardless of a different secret existing with same name in different namespace [NodeConformance] [Conformance]","total":356,"completed":317,"skipped":5749,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Services + should delete a collection of services [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:51:22.511: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should delete a collection of services [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a collection of services +Oct 26 05:51:22.532: INFO: Creating e2e-svc-a-ljgkj +Oct 26 05:51:22.538: INFO: Creating e2e-svc-b-zg7ct +Oct 26 05:51:22.549: INFO: Creating e2e-svc-c-5kqvz +STEP: deleting service collection +Oct 26 05:51:22.604: INFO: Collection of services has been deleted +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 05:51:22.605: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-8644" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 +•{"msg":"PASSED [sig-network] Services should delete a collection of services [Conformance]","total":356,"completed":318,"skipped":5781,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] InitContainer [NodeConformance] + should invoke init containers on a RestartNever pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:51:22.624: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename init-container +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:164 +[It] should invoke init containers on a RestartNever pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating the pod +Oct 26 05:51:22.659: INFO: PodSpec: initContainers in spec.initContainers +[AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/framework.go:188 +Oct 26 05:51:28.570: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "init-container-5710" for this suite. + +• [SLOW TEST:5.958 seconds] +[sig-node] InitContainer [NodeConformance] +test/e2e/common/node/framework.go:23 + should invoke init containers on a RestartNever pod [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] InitContainer [NodeConformance] should invoke init containers on a RestartNever pod [Conformance]","total":356,"completed":319,"skipped":5875,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should include webhook resources in discovery documents [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:51:28.584: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:51:29.199: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Oct 26 05:51:31.234: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 51, 29, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 51, 29, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 51, 29, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 51, 29, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:51:34.247: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should include webhook resources in discovery documents [Conformance] + test/e2e/framework/framework.go:652 +STEP: fetching the /apis discovery document +STEP: finding the admissionregistration.k8s.io API group in the /apis discovery document +STEP: finding the admissionregistration.k8s.io/v1 API group/version in the /apis discovery document +STEP: fetching the /apis/admissionregistration.k8s.io discovery document +STEP: finding the admissionregistration.k8s.io/v1 API group/version in the /apis/admissionregistration.k8s.io discovery document +STEP: fetching the /apis/admissionregistration.k8s.io/v1 discovery document +STEP: finding mutatingwebhookconfigurations and validatingwebhookconfigurations resources in the /apis/admissionregistration.k8s.io/v1 discovery document +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:51:34.258: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-4953" for this suite. +STEP: Destroying namespace "webhook-4953-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:5.742 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should include webhook resources in discovery documents [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should include webhook resources in discovery documents [Conformance]","total":356,"completed":320,"skipped":5901,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:51:34.327: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:43 +[It] should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 05:51:34.368: INFO: Waiting up to 5m0s for pod "downwardapi-volume-c5d70be2-1a6c-4a97-ba47-2d3592de6ae5" in namespace "downward-api-8708" to be "Succeeded or Failed" +Oct 26 05:51:34.372: INFO: Pod "downwardapi-volume-c5d70be2-1a6c-4a97-ba47-2d3592de6ae5": Phase="Pending", Reason="", readiness=false. Elapsed: 3.464775ms +Oct 26 05:51:36.377: INFO: Pod "downwardapi-volume-c5d70be2-1a6c-4a97-ba47-2d3592de6ae5": Phase="Pending", Reason="", readiness=false. Elapsed: 2.008736265s +Oct 26 05:51:38.383: INFO: Pod "downwardapi-volume-c5d70be2-1a6c-4a97-ba47-2d3592de6ae5": Phase="Pending", Reason="", readiness=false. Elapsed: 4.01491066s +Oct 26 05:51:40.390: INFO: Pod "downwardapi-volume-c5d70be2-1a6c-4a97-ba47-2d3592de6ae5": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.02130475s +STEP: Saw pod success +Oct 26 05:51:40.390: INFO: Pod "downwardapi-volume-c5d70be2-1a6c-4a97-ba47-2d3592de6ae5" satisfied condition "Succeeded or Failed" +Oct 26 05:51:40.392: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-c5d70be2-1a6c-4a97-ba47-2d3592de6ae5 container client-container: +STEP: delete the pod +Oct 26 05:51:40.406: INFO: Waiting for pod downwardapi-volume-c5d70be2-1a6c-4a97-ba47-2d3592de6ae5 to disappear +Oct 26 05:51:40.408: INFO: Pod downwardapi-volume-c5d70be2-1a6c-4a97-ba47-2d3592de6ae5 no longer exists +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:188 +Oct 26 05:51:40.408: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-8708" for this suite. + +• [SLOW TEST:6.089 seconds] +[sig-storage] Downward API volume +test/e2e/common/storage/framework.go:23 + should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Downward API volume should set mode on item file [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":321,"skipped":5936,"failed":0} +SSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + should perform canary updates and phased rolling updates of template modifications [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:51:40.417: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename statefulset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:96 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:111 +STEP: Creating service test in namespace statefulset-1082 +[It] should perform canary updates and phased rolling updates of template modifications [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a new StatefulSet +Oct 26 05:51:40.450: INFO: Found 0 stateful pods, waiting for 3 +Oct 26 05:51:50.454: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 05:51:50.455: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 05:51:50.455: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Running - Ready=true +STEP: Updating stateful set template: update image from k8s.gcr.io/e2e-test-images/httpd:2.4.38-2 to k8s.gcr.io/e2e-test-images/httpd:2.4.39-2 +Oct 26 05:51:50.479: INFO: Updating stateful set ss2 +STEP: Creating a new revision +STEP: Not applying an update when the partition is greater than the number of replicas +STEP: Performing a canary update +Oct 26 05:52:00.521: INFO: Updating stateful set ss2 +Oct 26 05:52:00.527: INFO: Waiting for Pod statefulset-1082/ss2-2 to have revision ss2-5f8764d585 update revision ss2-57bbdd95cb +STEP: Restoring Pods to the correct revision when they are deleted +Oct 26 05:52:10.615: INFO: Found 1 stateful pods, waiting for 3 +Oct 26 05:52:20.625: INFO: Waiting for pod ss2-0 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 05:52:20.626: INFO: Waiting for pod ss2-1 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 05:52:20.626: INFO: Waiting for pod ss2-2 to enter Running - Ready=true, currently Running - Ready=true +STEP: Performing a phased rolling update +Oct 26 05:52:20.655: INFO: Updating stateful set ss2 +Oct 26 05:52:20.682: INFO: Waiting for Pod statefulset-1082/ss2-1 to have revision ss2-5f8764d585 update revision ss2-57bbdd95cb +Oct 26 05:52:30.710: INFO: Updating stateful set ss2 +Oct 26 05:52:30.738: INFO: Waiting for StatefulSet statefulset-1082/ss2 to complete update +Oct 26 05:52:30.738: INFO: Waiting for Pod statefulset-1082/ss2-0 to have revision ss2-5f8764d585 update revision ss2-57bbdd95cb +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:122 +Oct 26 05:52:40.749: INFO: Deleting all statefulset in ns statefulset-1082 +Oct 26 05:52:40.751: INFO: Scaling statefulset ss2 to 0 +Oct 26 05:52:50.771: INFO: Waiting for statefulset status.replicas updated to 0 +Oct 26 05:52:50.773: INFO: Deleting statefulset ss2 +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:188 +Oct 26 05:52:50.799: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "statefulset-1082" for this suite. + +• [SLOW TEST:70.395 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:101 + should perform canary updates and phased rolling updates of template modifications [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform canary updates and phased rolling updates of template modifications [Conformance]","total":356,"completed":322,"skipped":5942,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Variable Expansion + should fail substituting values in a volume subpath with backticks [Slow] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:52:50.818: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename var-expansion +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should fail substituting values in a volume subpath with backticks [Slow] [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:52:52.850: INFO: Deleting pod "var-expansion-33630cf1-6871-4410-ac60-5873c0be8b0e" in namespace "var-expansion-6801" +Oct 26 05:52:52.861: INFO: Wait up to 5m0s for pod "var-expansion-33630cf1-6871-4410-ac60-5873c0be8b0e" to be fully deleted +[AfterEach] [sig-node] Variable Expansion + test/e2e/framework/framework.go:188 +Oct 26 05:52:54.871: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "var-expansion-6801" for this suite. +•{"msg":"PASSED [sig-node] Variable Expansion should fail substituting values in a volume subpath with backticks [Slow] [Conformance]","total":356,"completed":323,"skipped":6001,"failed":0} +SSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide podname only [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:52:54.881: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:43 +[It] should provide podname only [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 05:52:54.904: INFO: Waiting up to 5m0s for pod "downwardapi-volume-0ee8c7ca-daa1-45e5-a787-e534adb2173d" in namespace "projected-5009" to be "Succeeded or Failed" +Oct 26 05:52:54.909: INFO: Pod "downwardapi-volume-0ee8c7ca-daa1-45e5-a787-e534adb2173d": Phase="Pending", Reason="", readiness=false. Elapsed: 4.51999ms +Oct 26 05:52:56.915: INFO: Pod "downwardapi-volume-0ee8c7ca-daa1-45e5-a787-e534adb2173d": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010875032s +Oct 26 05:52:58.922: INFO: Pod "downwardapi-volume-0ee8c7ca-daa1-45e5-a787-e534adb2173d": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.017889688s +STEP: Saw pod success +Oct 26 05:52:58.922: INFO: Pod "downwardapi-volume-0ee8c7ca-daa1-45e5-a787-e534adb2173d" satisfied condition "Succeeded or Failed" +Oct 26 05:52:58.924: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-0ee8c7ca-daa1-45e5-a787-e534adb2173d container client-container: +STEP: delete the pod +Oct 26 05:52:58.936: INFO: Waiting for pod downwardapi-volume-0ee8c7ca-daa1-45e5-a787-e534adb2173d to disappear +Oct 26 05:52:58.940: INFO: Pod downwardapi-volume-0ee8c7ca-daa1-45e5-a787-e534adb2173d no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:188 +Oct 26 05:52:58.940: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-5009" for this suite. +•{"msg":"PASSED [sig-storage] Projected downwardAPI should provide podname only [NodeConformance] [Conformance]","total":356,"completed":324,"skipped":6005,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected configMap + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:52:58.951: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name cm-test-opt-del-11577047-3fb2-4af8-aade-500de59db355 +STEP: Creating configMap with name cm-test-opt-upd-5e27fed0-d4b3-4a03-849d-6bb1a1fdaaba +STEP: Creating the pod +Oct 26 05:52:58.996: INFO: The status of Pod pod-projected-configmaps-a9bc9985-94e6-4271-ba01-ca12c1c6fa57 is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:53:01.004: INFO: The status of Pod pod-projected-configmaps-a9bc9985-94e6-4271-ba01-ca12c1c6fa57 is Running (Ready = true) +STEP: Deleting configmap cm-test-opt-del-11577047-3fb2-4af8-aade-500de59db355 +STEP: Updating configmap cm-test-opt-upd-5e27fed0-d4b3-4a03-849d-6bb1a1fdaaba +STEP: Creating configMap with name cm-test-opt-create-7851d330-4aea-406c-9b8f-f3063ca7de55 +STEP: waiting to observe update in volume +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:188 +Oct 26 05:53:03.049: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-9268" for this suite. +•{"msg":"PASSED [sig-storage] Projected configMap optional updates should be reflected in volume [NodeConformance] [Conformance]","total":356,"completed":325,"skipped":6041,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] Proxy version v1 + should proxy through a service and a pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] version v1 + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:53:03.063: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename proxy +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should proxy through a service and a pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: starting an echo server on multiple ports +STEP: creating replication controller proxy-service-c7s8l in namespace proxy-7387 +I1026 05:53:03.122219 20 runners.go:193] Created replication controller with name: proxy-service-c7s8l, namespace: proxy-7387, replica count: 1 +I1026 05:53:04.173614 20 runners.go:193] proxy-service-c7s8l Pods: 1 out of 1 created, 0 running, 1 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +I1026 05:53:05.174321 20 runners.go:193] proxy-service-c7s8l Pods: 1 out of 1 created, 0 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 1 runningButNotReady +I1026 05:53:06.174938 20 runners.go:193] proxy-service-c7s8l Pods: 1 out of 1 created, 1 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Oct 26 05:53:06.180: INFO: setup took 3.082290122s, starting test cases +STEP: running 16 cases, 20 attempts per case, 320 total attempts +Oct 26 05:53:06.186: INFO: (0) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 5.568752ms) +Oct 26 05:53:06.186: INFO: (0) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 5.682878ms) +Oct 26 05:53:06.188: INFO: (0) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 6.640474ms) +Oct 26 05:53:06.188: INFO: (0) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 6.993952ms) +Oct 26 05:53:06.188: INFO: (0) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 6.85544ms) +Oct 26 05:53:06.190: INFO: (0) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 8.425968ms) +Oct 26 05:53:06.192: INFO: (0) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 10.692185ms) +Oct 26 05:53:06.192: INFO: (0) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 11.666011ms) +Oct 26 05:53:06.192: INFO: (0) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 10.683116ms) +Oct 26 05:53:06.194: INFO: (0) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 13.336193ms) +Oct 26 05:53:06.195: INFO: (0) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 14.039183ms) +Oct 26 05:53:06.195: INFO: (0) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 14.009794ms) +Oct 26 05:53:06.197: INFO: (0) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 16.369005ms) +Oct 26 05:53:06.201: INFO: (0) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: test<... (200; 9.285369ms) +Oct 26 05:53:06.212: INFO: (1) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 9.676275ms) +Oct 26 05:53:06.212: INFO: (1) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 10.046575ms) +Oct 26 05:53:06.212: INFO: (1) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: ... (200; 10.257876ms) +Oct 26 05:53:06.213: INFO: (1) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 11.43922ms) +Oct 26 05:53:06.213: INFO: (1) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 11.119131ms) +Oct 26 05:53:06.214: INFO: (1) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 11.876007ms) +Oct 26 05:53:06.214: INFO: (1) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 11.577796ms) +Oct 26 05:53:06.217: INFO: (1) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 14.438143ms) +Oct 26 05:53:06.217: INFO: (1) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 14.531292ms) +Oct 26 05:53:06.217: INFO: (1) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 14.679976ms) +Oct 26 05:53:06.217: INFO: (1) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 15.132598ms) +Oct 26 05:53:06.217: INFO: (1) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 14.872332ms) +Oct 26 05:53:06.223: INFO: (2) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 5.562935ms) +Oct 26 05:53:06.223: INFO: (2) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 5.777378ms) +Oct 26 05:53:06.225: INFO: (2) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 7.195879ms) +Oct 26 05:53:06.227: INFO: (2) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 8.649448ms) +Oct 26 05:53:06.227: INFO: (2) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 9.292572ms) +Oct 26 05:53:06.227: INFO: (2) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 8.994106ms) +Oct 26 05:53:06.228: INFO: (2) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: ... (200; 10.89401ms) +Oct 26 05:53:06.229: INFO: (2) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 10.560642ms) +Oct 26 05:53:06.229: INFO: (2) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 10.892202ms) +Oct 26 05:53:06.229: INFO: (2) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 11.495616ms) +Oct 26 05:53:06.230: INFO: (2) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 12.096972ms) +Oct 26 05:53:06.230: INFO: (2) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 12.636212ms) +Oct 26 05:53:06.231: INFO: (2) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 13.336015ms) +Oct 26 05:53:06.240: INFO: (3) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 8.959047ms) +Oct 26 05:53:06.256: INFO: (3) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 23.986333ms) +Oct 26 05:53:06.256: INFO: (3) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 24.547464ms) +Oct 26 05:53:06.256: INFO: (3) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 25.059095ms) +Oct 26 05:53:06.256: INFO: (3) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 24.604036ms) +Oct 26 05:53:06.256: INFO: (3) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 24.159526ms) +Oct 26 05:53:06.256: INFO: (3) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 24.098169ms) +Oct 26 05:53:06.256: INFO: (3) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 24.830877ms) +Oct 26 05:53:06.256: INFO: (3) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 24.347953ms) +Oct 26 05:53:06.256: INFO: (3) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 24.465907ms) +Oct 26 05:53:06.256: INFO: (3) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 24.657558ms) +Oct 26 05:53:06.256: INFO: (3) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 24.380427ms) +Oct 26 05:53:06.257: INFO: (3) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 24.687364ms) +Oct 26 05:53:06.257: INFO: (3) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 24.804324ms) +Oct 26 05:53:06.257: INFO: (3) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 24.871649ms) +Oct 26 05:53:06.257: INFO: (3) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: test (200; 18.349374ms) +Oct 26 05:53:06.277: INFO: (4) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 18.741335ms) +Oct 26 05:53:06.277: INFO: (4) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 20.343839ms) +Oct 26 05:53:06.277: INFO: (4) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 18.995716ms) +Oct 26 05:53:06.278: INFO: (4) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 19.608942ms) +Oct 26 05:53:06.278: INFO: (4) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 19.14518ms) +Oct 26 05:53:06.278: INFO: (4) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 19.833961ms) +Oct 26 05:53:06.278: INFO: (4) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 20.499328ms) +Oct 26 05:53:06.278: INFO: (4) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 19.336727ms) +Oct 26 05:53:06.278: INFO: (4) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 19.460735ms) +Oct 26 05:53:06.283: INFO: (5) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 5.05744ms) +Oct 26 05:53:06.283: INFO: (5) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 5.238781ms) +Oct 26 05:53:06.284: INFO: (5) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 5.526251ms) +Oct 26 05:53:06.290: INFO: (5) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 11.366254ms) +Oct 26 05:53:06.290: INFO: (5) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 10.941614ms) +Oct 26 05:53:06.290: INFO: (5) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 11.796714ms) +Oct 26 05:53:06.290: INFO: (5) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 11.165205ms) +Oct 26 05:53:06.290: INFO: (5) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 11.381827ms) +Oct 26 05:53:06.290: INFO: (5) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 11.599531ms) +Oct 26 05:53:06.290: INFO: (5) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 11.719504ms) +Oct 26 05:53:06.290: INFO: (5) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 11.908229ms) +Oct 26 05:53:06.290: INFO: (5) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 11.872302ms) +Oct 26 05:53:06.290: INFO: (5) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 11.823636ms) +Oct 26 05:53:06.290: INFO: (5) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: ... (200; 10.391565ms) +Oct 26 05:53:06.302: INFO: (6) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 10.245715ms) +Oct 26 05:53:06.302: INFO: (6) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 10.907432ms) +Oct 26 05:53:06.302: INFO: (6) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 10.400688ms) +Oct 26 05:53:06.302: INFO: (6) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 10.341374ms) +Oct 26 05:53:06.303: INFO: (6) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 11.307609ms) +Oct 26 05:53:06.303: INFO: (6) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 11.134087ms) +Oct 26 05:53:06.303: INFO: (6) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 11.631216ms) +Oct 26 05:53:06.303: INFO: (6) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 11.566579ms) +Oct 26 05:53:06.303: INFO: (6) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 11.811642ms) +Oct 26 05:53:06.303: INFO: (6) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 11.605824ms) +Oct 26 05:53:06.304: INFO: (6) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 12.369101ms) +Oct 26 05:53:06.310: INFO: (7) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 4.995531ms) +Oct 26 05:53:06.310: INFO: (7) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 4.956386ms) +Oct 26 05:53:06.312: INFO: (7) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 7.646769ms) +Oct 26 05:53:06.314: INFO: (7) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 9.13053ms) +Oct 26 05:53:06.314: INFO: (7) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 9.563638ms) +Oct 26 05:53:06.314: INFO: (7) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 9.261305ms) +Oct 26 05:53:06.314: INFO: (7) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 9.039576ms) +Oct 26 05:53:06.314: INFO: (7) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 9.213483ms) +Oct 26 05:53:06.314: INFO: (7) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: test (200; 5.428455ms) +Oct 26 05:53:06.323: INFO: (8) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 5.406497ms) +Oct 26 05:53:06.323: INFO: (8) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 5.431952ms) +Oct 26 05:53:06.324: INFO: (8) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 6.203764ms) +Oct 26 05:53:06.324: INFO: (8) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 7.000611ms) +Oct 26 05:53:06.325: INFO: (8) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: ... (200; 8.953735ms) +Oct 26 05:53:06.327: INFO: (8) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 9.036529ms) +Oct 26 05:53:06.327: INFO: (8) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 9.329649ms) +Oct 26 05:53:06.328: INFO: (8) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 10.772966ms) +Oct 26 05:53:06.328: INFO: (8) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 10.810624ms) +Oct 26 05:53:06.328: INFO: (8) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 10.945495ms) +Oct 26 05:53:06.333: INFO: (9) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 4.316083ms) +Oct 26 05:53:06.333: INFO: (9) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: ... (200; 9.964195ms) +Oct 26 05:53:06.340: INFO: (9) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 10.905478ms) +Oct 26 05:53:06.340: INFO: (9) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 10.553428ms) +Oct 26 05:53:06.340: INFO: (9) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 10.234884ms) +Oct 26 05:53:06.340: INFO: (9) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 11.273698ms) +Oct 26 05:53:06.340: INFO: (9) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 10.801366ms) +Oct 26 05:53:06.340: INFO: (9) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 11.099463ms) +Oct 26 05:53:06.340: INFO: (9) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 11.567549ms) +Oct 26 05:53:06.341: INFO: (9) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 11.073531ms) +Oct 26 05:53:06.341: INFO: (9) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 11.336478ms) +Oct 26 05:53:06.345: INFO: (10) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 4.390159ms) +Oct 26 05:53:06.350: INFO: (10) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 8.435864ms) +Oct 26 05:53:06.350: INFO: (10) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 8.418514ms) +Oct 26 05:53:06.350: INFO: (10) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 8.637495ms) +Oct 26 05:53:06.351: INFO: (10) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 9.120161ms) +Oct 26 05:53:06.351: INFO: (10) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 9.070657ms) +Oct 26 05:53:06.352: INFO: (10) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 10.232841ms) +Oct 26 05:53:06.352: INFO: (10) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 10.283714ms) +Oct 26 05:53:06.352: INFO: (10) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: test<... (200; 12.390838ms) +Oct 26 05:53:06.367: INFO: (11) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 13.285218ms) +Oct 26 05:53:06.368: INFO: (11) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 13.046678ms) +Oct 26 05:53:06.368: INFO: (11) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 13.380544ms) +Oct 26 05:53:06.369: INFO: (11) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 14.538628ms) +Oct 26 05:53:06.369: INFO: (11) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 14.210395ms) +Oct 26 05:53:06.369: INFO: (11) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: test (200; 6.785389ms) +Oct 26 05:53:06.377: INFO: (12) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 7.017536ms) +Oct 26 05:53:06.377: INFO: (12) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 7.281982ms) +Oct 26 05:53:06.380: INFO: (12) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 9.772078ms) +Oct 26 05:53:06.380: INFO: (12) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: test<... (200; 15.430555ms) +Oct 26 05:53:06.386: INFO: (12) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 15.384485ms) +Oct 26 05:53:06.391: INFO: (13) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 5.245421ms) +Oct 26 05:53:06.395: INFO: (13) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 8.543187ms) +Oct 26 05:53:06.395: INFO: (13) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 8.701934ms) +Oct 26 05:53:06.395: INFO: (13) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 8.776498ms) +Oct 26 05:53:06.395: INFO: (13) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 8.929795ms) +Oct 26 05:53:06.396: INFO: (13) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 9.730112ms) +Oct 26 05:53:06.397: INFO: (13) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 9.925258ms) +Oct 26 05:53:06.397: INFO: (13) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 10.052119ms) +Oct 26 05:53:06.397: INFO: (13) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 10.484031ms) +Oct 26 05:53:06.397: INFO: (13) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: ... (200; 11.642073ms) +Oct 26 05:53:06.412: INFO: (14) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 11.865627ms) +Oct 26 05:53:06.412: INFO: (14) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 11.43334ms) +Oct 26 05:53:06.412: INFO: (14) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 11.549852ms) +Oct 26 05:53:06.412: INFO: (14) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 12.008585ms) +Oct 26 05:53:06.414: INFO: (14) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 13.353112ms) +Oct 26 05:53:06.414: INFO: (14) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 13.184182ms) +Oct 26 05:53:06.414: INFO: (14) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 13.607279ms) +Oct 26 05:53:06.415: INFO: (14) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 14.591364ms) +Oct 26 05:53:06.415: INFO: (14) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 14.947518ms) +Oct 26 05:53:06.416: INFO: (14) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 15.318765ms) +Oct 26 05:53:06.416: INFO: (14) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 15.302043ms) +Oct 26 05:53:06.416: INFO: (14) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 15.706592ms) +Oct 26 05:53:06.416: INFO: (14) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: test<... (200; 12.440113ms) +Oct 26 05:53:06.432: INFO: (15) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 15.607468ms) +Oct 26 05:53:06.433: INFO: (15) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 16.614073ms) +Oct 26 05:53:06.433: INFO: (15) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 16.5007ms) +Oct 26 05:53:06.433: INFO: (15) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 16.612319ms) +Oct 26 05:53:06.435: INFO: (15) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 18.224555ms) +Oct 26 05:53:06.435: INFO: (15) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 18.21826ms) +Oct 26 05:53:06.435: INFO: (15) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 18.332686ms) +Oct 26 05:53:06.435: INFO: (15) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 18.341617ms) +Oct 26 05:53:06.435: INFO: (15) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 18.339065ms) +Oct 26 05:53:06.435: INFO: (15) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 18.920483ms) +Oct 26 05:53:06.435: INFO: (15) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 19.094111ms) +Oct 26 05:53:06.435: INFO: (15) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 18.538528ms) +Oct 26 05:53:06.435: INFO: (15) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: test<... (200; 12.300838ms) +Oct 26 05:53:06.448: INFO: (16) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 12.256887ms) +Oct 26 05:53:06.448: INFO: (16) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 12.394609ms) +Oct 26 05:53:06.449: INFO: (16) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 13.012649ms) +Oct 26 05:53:06.449: INFO: (16) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: test (200; 13.401125ms) +Oct 26 05:53:06.450: INFO: (16) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 13.231979ms) +Oct 26 05:53:06.450: INFO: (16) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 13.581256ms) +Oct 26 05:53:06.451: INFO: (16) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 14.285274ms) +Oct 26 05:53:06.452: INFO: (16) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 16.222969ms) +Oct 26 05:53:06.453: INFO: (16) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 16.599602ms) +Oct 26 05:53:06.453: INFO: (16) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 16.526747ms) +Oct 26 05:53:06.453: INFO: (16) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 16.936275ms) +Oct 26 05:53:06.453: INFO: (16) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 18.058837ms) +Oct 26 05:53:06.454: INFO: (16) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 17.526623ms) +Oct 26 05:53:06.464: INFO: (17) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 10.357444ms) +Oct 26 05:53:06.476: INFO: (17) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 21.796471ms) +Oct 26 05:53:06.476: INFO: (17) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 22.16499ms) +Oct 26 05:53:06.477: INFO: (17) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 22.674614ms) +Oct 26 05:53:06.477: INFO: (17) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 22.706973ms) +Oct 26 05:53:06.477: INFO: (17) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:1080/proxy/: test<... (200; 22.844562ms) +Oct 26 05:53:06.477: INFO: (17) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 22.813505ms) +Oct 26 05:53:06.477: INFO: (17) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 22.546382ms) +Oct 26 05:53:06.477: INFO: (17) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 23.102701ms) +Oct 26 05:53:06.478: INFO: (17) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 23.826207ms) +Oct 26 05:53:06.478: INFO: (17) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 23.527706ms) +Oct 26 05:53:06.479: INFO: (17) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 23.981831ms) +Oct 26 05:53:06.479: INFO: (17) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 24.376725ms) +Oct 26 05:53:06.479: INFO: (17) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 25.281666ms) +Oct 26 05:53:06.479: INFO: (17) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: test<... (200; 9.433961ms) +Oct 26 05:53:06.490: INFO: (18) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:460/proxy/: tls baz (200; 10.24457ms) +Oct 26 05:53:06.490: INFO: (18) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 9.502639ms) +Oct 26 05:53:06.490: INFO: (18) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 10.361725ms) +Oct 26 05:53:06.499: INFO: (18) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 18.886034ms) +Oct 26 05:53:06.500: INFO: (18) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 19.859898ms) +Oct 26 05:53:06.500: INFO: (18) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 19.536125ms) +Oct 26 05:53:06.500: INFO: (18) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 19.781029ms) +Oct 26 05:53:06.501: INFO: (18) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 20.725505ms) +Oct 26 05:53:06.501: INFO: (18) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 20.676454ms) +Oct 26 05:53:06.501: INFO: (18) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 20.479753ms) +Oct 26 05:53:06.501: INFO: (18) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 20.188865ms) +Oct 26 05:53:06.501: INFO: (18) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 20.975215ms) +Oct 26 05:53:06.501: INFO: (18) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 20.93823ms) +Oct 26 05:53:06.511: INFO: (19) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:443/proxy/: test<... (200; 9.995521ms) +Oct 26 05:53:06.513: INFO: (19) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 10.951174ms) +Oct 26 05:53:06.513: INFO: (19) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g/proxy/: test (200; 11.573673ms) +Oct 26 05:53:06.513: INFO: (19) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 11.307843ms) +Oct 26 05:53:06.514: INFO: (19) /api/v1/namespaces/proxy-7387/pods/http:proxy-service-c7s8l-thr8g:1080/proxy/: ... (200; 11.644995ms) +Oct 26 05:53:06.514: INFO: (19) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:160/proxy/: foo (200; 12.034959ms) +Oct 26 05:53:06.514: INFO: (19) /api/v1/namespaces/proxy-7387/pods/https:proxy-service-c7s8l-thr8g:462/proxy/: tls qux (200; 11.640383ms) +Oct 26 05:53:06.515: INFO: (19) /api/v1/namespaces/proxy-7387/pods/proxy-service-c7s8l-thr8g:162/proxy/: bar (200; 13.523832ms) +Oct 26 05:53:06.518: INFO: (19) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname1/proxy/: foo (200; 15.577641ms) +Oct 26 05:53:06.518: INFO: (19) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname1/proxy/: tls baz (200; 16.009935ms) +Oct 26 05:53:06.518: INFO: (19) /api/v1/namespaces/proxy-7387/services/http:proxy-service-c7s8l:portname2/proxy/: bar (200; 15.750616ms) +Oct 26 05:53:06.518: INFO: (19) /api/v1/namespaces/proxy-7387/services/https:proxy-service-c7s8l:tlsportname2/proxy/: tls qux (200; 16.618003ms) +Oct 26 05:53:06.518: INFO: (19) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname1/proxy/: foo (200; 16.185838ms) +Oct 26 05:53:06.518: INFO: (19) /api/v1/namespaces/proxy-7387/services/proxy-service-c7s8l:portname2/proxy/: bar (200; 16.083052ms) +STEP: deleting ReplicationController proxy-service-c7s8l in namespace proxy-7387, will wait for the garbage collector to delete the pods +Oct 26 05:53:06.590: INFO: Deleting ReplicationController proxy-service-c7s8l took: 16.13408ms +Oct 26 05:53:06.691: INFO: Terminating ReplicationController proxy-service-c7s8l pods took: 100.829611ms +[AfterEach] version v1 + test/e2e/framework/framework.go:188 +Oct 26 05:53:08.891: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "proxy-7387" for this suite. + +• [SLOW TEST:5.850 seconds] +[sig-network] Proxy +test/e2e/network/common/framework.go:23 + version v1 + test/e2e/network/proxy.go:74 + should proxy through a service and a pod [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Proxy version v1 should proxy through a service and a pod [Conformance]","total":356,"completed":326,"skipped":6065,"failed":0} +[sig-network] Services + should test the lifecycle of an Endpoint [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:53:08.919: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should test the lifecycle of an Endpoint [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating an Endpoint +STEP: waiting for available Endpoint +STEP: listing all Endpoints +STEP: updating the Endpoint +STEP: fetching the Endpoint +STEP: patching the Endpoint +STEP: fetching the Endpoint +STEP: deleting the Endpoint by Collection +STEP: waiting for Endpoint deletion +STEP: fetching the Endpoint +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 05:53:08.992: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-3204" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 +•{"msg":"PASSED [sig-network] Services should test the lifecycle of an Endpoint [Conformance]","total":356,"completed":327,"skipped":6065,"failed":0} +SSSSSS +------------------------------ +[sig-storage] ConfigMap + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:53:09.001: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name cm-test-opt-del-bd7aeeb3-715a-4312-8dba-abad55c1d4d2 +STEP: Creating configMap with name cm-test-opt-upd-7bec19aa-d41a-4345-8244-6fad15cd99bf +STEP: Creating the pod +Oct 26 05:53:09.035: INFO: The status of Pod pod-configmaps-5d3544df-1ff1-4875-83fd-ae496d0d041c is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:53:11.046: INFO: The status of Pod pod-configmaps-5d3544df-1ff1-4875-83fd-ae496d0d041c is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:53:13.040: INFO: The status of Pod pod-configmaps-5d3544df-1ff1-4875-83fd-ae496d0d041c is Running (Ready = true) +STEP: Deleting configmap cm-test-opt-del-bd7aeeb3-715a-4312-8dba-abad55c1d4d2 +STEP: Updating configmap cm-test-opt-upd-7bec19aa-d41a-4345-8244-6fad15cd99bf +STEP: Creating configMap with name cm-test-opt-create-08057d93-c525-4823-8325-bb3a6c116711 +STEP: waiting to observe update in volume +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 05:54:43.367: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-9630" for this suite. + +• [SLOW TEST:94.376 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + optional updates should be reflected in volume [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] ConfigMap optional updates should be reflected in volume [NodeConformance] [Conformance]","total":356,"completed":328,"skipped":6071,"failed":0} +SSSSSS +------------------------------ +[sig-node] Downward API + should provide host IP as an env var [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Downward API + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:54:43.377: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should provide host IP as an env var [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward api env vars +Oct 26 05:54:43.401: INFO: Waiting up to 5m0s for pod "downward-api-d31aa4df-420a-4daa-a8df-7cd8f9f8ae64" in namespace "downward-api-7064" to be "Succeeded or Failed" +Oct 26 05:54:43.404: INFO: Pod "downward-api-d31aa4df-420a-4daa-a8df-7cd8f9f8ae64": Phase="Pending", Reason="", readiness=false. Elapsed: 2.700262ms +Oct 26 05:54:45.408: INFO: Pod "downward-api-d31aa4df-420a-4daa-a8df-7cd8f9f8ae64": Phase="Pending", Reason="", readiness=false. Elapsed: 2.007075169s +Oct 26 05:54:47.415: INFO: Pod "downward-api-d31aa4df-420a-4daa-a8df-7cd8f9f8ae64": Phase="Succeeded", Reason="", readiness=false. Elapsed: 4.014100744s +STEP: Saw pod success +Oct 26 05:54:47.415: INFO: Pod "downward-api-d31aa4df-420a-4daa-a8df-7cd8f9f8ae64" satisfied condition "Succeeded or Failed" +Oct 26 05:54:47.417: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downward-api-d31aa4df-420a-4daa-a8df-7cd8f9f8ae64 container dapi-container: +STEP: delete the pod +Oct 26 05:54:47.428: INFO: Waiting for pod downward-api-d31aa4df-420a-4daa-a8df-7cd8f9f8ae64 to disappear +Oct 26 05:54:47.430: INFO: Pod downward-api-d31aa4df-420a-4daa-a8df-7cd8f9f8ae64 no longer exists +[AfterEach] [sig-node] Downward API + test/e2e/framework/framework.go:188 +Oct 26 05:54:47.430: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-7064" for this suite. +•{"msg":"PASSED [sig-node] Downward API should provide host IP as an env var [NodeConformance] [Conformance]","total":356,"completed":329,"skipped":6077,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + removes definition from spec when one version gets changed to not be served [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:54:47.436: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename crd-publish-openapi +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] removes definition from spec when one version gets changed to not be served [Conformance] + test/e2e/framework/framework.go:652 +STEP: set up a multi version CRD +Oct 26 05:54:47.455: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: mark a version not serverd +STEP: check the unserved version gets removed +STEP: check the other version is not changed +[AfterEach] [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:55:03.035: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "crd-publish-openapi-2282" for this suite. + +• [SLOW TEST:15.623 seconds] +[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + removes definition from spec when one version gets changed to not be served [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] removes definition from spec when one version gets changed to not be served [Conformance]","total":356,"completed":330,"skipped":6131,"failed":0} +SSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] PodTemplates + should delete a collection of pod templates [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] PodTemplates + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:55:03.062: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename podtemplate +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should delete a collection of pod templates [Conformance] + test/e2e/framework/framework.go:652 +STEP: Create set of pod templates +Oct 26 05:55:03.141: INFO: created test-podtemplate-1 +Oct 26 05:55:03.160: INFO: created test-podtemplate-2 +Oct 26 05:55:03.175: INFO: created test-podtemplate-3 +STEP: get a list of pod templates with a label in the current namespace +STEP: delete collection of pod templates +Oct 26 05:55:03.193: INFO: requesting DeleteCollection of pod templates +STEP: check that the list of pod templates matches the requested quantity +Oct 26 05:55:03.252: INFO: requesting list of pod templates to confirm quantity +[AfterEach] [sig-node] PodTemplates + test/e2e/framework/framework.go:188 +Oct 26 05:55:03.264: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "podtemplate-9763" for this suite. +•{"msg":"PASSED [sig-node] PodTemplates should delete a collection of pod templates [Conformance]","total":356,"completed":331,"skipped":6152,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should be able to deny attaching pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:55:03.358: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 05:55:03.887: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Oct 26 05:55:05.898: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 5, 55, 3, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 55, 3, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 5, 55, 3, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 5, 55, 3, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 05:55:08.952: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should be able to deny attaching pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: Registering the webhook via the AdmissionRegistration API +STEP: create a pod +STEP: 'kubectl attach' the pod, should be denied by the webhook +Oct 26 05:55:12.986: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=webhook-8416 attach --namespace=webhook-8416 to-be-attached-pod -i -c=container1' +Oct 26 05:55:13.066: INFO: rc: 1 +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:55:13.070: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-8416" for this suite. +STEP: Destroying namespace "webhook-8416-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:9.801 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should be able to deny attaching pod [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to deny attaching pod [Conformance]","total":356,"completed":332,"skipped":6190,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook + should execute poststart exec hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:55:13.160: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-lifecycle-hook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:55 +STEP: create the container to handle the HTTPGet hook request. +Oct 26 05:55:13.233: INFO: The status of Pod pod-handle-http-request is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:55:15.237: INFO: The status of Pod pod-handle-http-request is Running (Ready = true) +[It] should execute poststart exec hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the pod with lifecycle hook +Oct 26 05:55:15.248: INFO: The status of Pod pod-with-poststart-exec-hook is Pending, waiting for it to be Running (with Ready = true) +Oct 26 05:55:17.254: INFO: The status of Pod pod-with-poststart-exec-hook is Running (Ready = true) +STEP: check poststart hook +STEP: delete the pod with lifecycle hook +Oct 26 05:55:17.273: INFO: Waiting for pod pod-with-poststart-exec-hook to disappear +Oct 26 05:55:17.278: INFO: Pod pod-with-poststart-exec-hook still exists +Oct 26 05:55:19.278: INFO: Waiting for pod pod-with-poststart-exec-hook to disappear +Oct 26 05:55:19.283: INFO: Pod pod-with-poststart-exec-hook still exists +Oct 26 05:55:21.278: INFO: Waiting for pod pod-with-poststart-exec-hook to disappear +Oct 26 05:55:21.282: INFO: Pod pod-with-poststart-exec-hook no longer exists +[AfterEach] [sig-node] Container Lifecycle Hook + test/e2e/framework/framework.go:188 +Oct 26 05:55:21.282: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-lifecycle-hook-5996" for this suite. + +• [SLOW TEST:8.129 seconds] +[sig-node] Container Lifecycle Hook +test/e2e/common/node/framework.go:23 + when create a pod with lifecycle hook + test/e2e/common/node/lifecycle_hook.go:46 + should execute poststart exec hook properly [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart exec hook properly [NodeConformance] [Conformance]","total":356,"completed":333,"skipped":6241,"failed":0} +[sig-node] Pods + should delete a collection of pods [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Pods + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:55:21.289: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename pods +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Pods + test/e2e/common/node/pods.go:191 +[It] should delete a collection of pods [Conformance] + test/e2e/framework/framework.go:652 +STEP: Create set of pods +Oct 26 05:55:21.312: INFO: created test-pod-1 +Oct 26 05:55:21.319: INFO: created test-pod-2 +Oct 26 05:55:21.329: INFO: created test-pod-3 +STEP: waiting for all 3 pods to be running +Oct 26 05:55:21.329: INFO: Waiting up to 5m0s for all pods (need at least 3) in namespace 'pods-9821' to be running and ready +Oct 26 05:55:21.346: INFO: The status of Pod test-pod-1 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Oct 26 05:55:21.346: INFO: The status of Pod test-pod-2 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Oct 26 05:55:21.346: INFO: The status of Pod test-pod-3 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Oct 26 05:55:21.346: INFO: 0 / 3 pods in namespace 'pods-9821' are running and ready (0 seconds elapsed) +Oct 26 05:55:21.346: INFO: expected 0 pod replicas in namespace 'pods-9821', 0 are Running and Ready. +Oct 26 05:55:21.346: INFO: POD NODE PHASE GRACE CONDITIONS +Oct 26 05:55:21.346: INFO: test-pod-1 i-066ef2cf0d4227da4 Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC }] +Oct 26 05:55:21.346: INFO: test-pod-2 i-066ef2cf0d4227da4 Pending [{PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC }] +Oct 26 05:55:21.346: INFO: test-pod-3 i-066ef2cf0d4227da4 Pending [{PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC }] +Oct 26 05:55:21.347: INFO: +Oct 26 05:55:23.364: INFO: The status of Pod test-pod-1 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Oct 26 05:55:23.364: INFO: The status of Pod test-pod-2 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Oct 26 05:55:23.364: INFO: The status of Pod test-pod-3 is Pending (Ready = false), waiting for it to be either Running (with Ready = true) or Failed +Oct 26 05:55:23.364: INFO: 0 / 3 pods in namespace 'pods-9821' are running and ready (2 seconds elapsed) +Oct 26 05:55:23.364: INFO: expected 0 pod replicas in namespace 'pods-9821', 0 are Running and Ready. +Oct 26 05:55:23.364: INFO: POD NODE PHASE GRACE CONDITIONS +Oct 26 05:55:23.364: INFO: test-pod-1 i-066ef2cf0d4227da4 Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC }] +Oct 26 05:55:23.364: INFO: test-pod-2 i-066ef2cf0d4227da4 Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC }] +Oct 26 05:55:23.364: INFO: test-pod-3 i-066ef2cf0d4227da4 Pending [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC ContainersNotReady containers with unready status: [token-test]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 05:55:21 +0000 UTC }] +Oct 26 05:55:23.364: INFO: +Oct 26 05:55:25.354: INFO: 3 / 3 pods in namespace 'pods-9821' are running and ready (4 seconds elapsed) +Oct 26 05:55:25.354: INFO: expected 0 pod replicas in namespace 'pods-9821', 0 are Running and Ready. +STEP: waiting for all pods to be deleted +Oct 26 05:55:25.375: INFO: Pod quantity 3 is different from expected quantity 0 +Oct 26 05:55:26.380: INFO: Pod quantity 3 is different from expected quantity 0 +Oct 26 05:55:27.380: INFO: Pod quantity 1 is different from expected quantity 0 +[AfterEach] [sig-node] Pods + test/e2e/framework/framework.go:188 +Oct 26 05:55:28.379: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "pods-9821" for this suite. + +• [SLOW TEST:7.097 seconds] +[sig-node] Pods +test/e2e/common/node/framework.go:23 + should delete a collection of pods [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Pods should delete a collection of pods [Conformance]","total":356,"completed":334,"skipped":6241,"failed":0} +SS +------------------------------ +[sig-node] Sysctls [LinuxOnly] [NodeConformance] + should reject invalid sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:37 +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:55:28.387: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename sysctl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/common/node/sysctl.go:67 +[It] should reject invalid sysctls [MinimumKubeletVersion:1.21] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod with one valid and two invalid sysctls +[AfterEach] [sig-node] Sysctls [LinuxOnly] [NodeConformance] + test/e2e/framework/framework.go:188 +Oct 26 05:55:28.406: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "sysctl-8577" for this suite. +•{"msg":"PASSED [sig-node] Sysctls [LinuxOnly] [NodeConformance] should reject invalid sysctls [MinimumKubeletVersion:1.21] [Conformance]","total":356,"completed":335,"skipped":6243,"failed":0} +SSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition + getting/updating/patching custom resource definition status sub-resource works [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:55:28.412: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename custom-resource-definition +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] getting/updating/patching custom resource definition status sub-resource works [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 05:55:28.426: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +[AfterEach] [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 05:55:28.961: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "custom-resource-definition-1977" for this suite. +•{"msg":"PASSED [sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition getting/updating/patching custom resource definition status sub-resource works [Conformance]","total":356,"completed":336,"skipped":6258,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-storage] Subpath Atomic writer volumes + should support subpaths with secret pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Subpath + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:55:28.986: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename subpath +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] Atomic writer volumes + test/e2e/storage/subpath.go:40 +STEP: Setting up data +[It] should support subpaths with secret pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating pod pod-subpath-test-secret-8gbp +STEP: Creating a pod to test atomic-volume-subpath +Oct 26 05:55:29.016: INFO: Waiting up to 5m0s for pod "pod-subpath-test-secret-8gbp" in namespace "subpath-2906" to be "Succeeded or Failed" +Oct 26 05:55:29.019: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Pending", Reason="", readiness=false. Elapsed: 3.769628ms +Oct 26 05:55:31.024: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Pending", Reason="", readiness=false. Elapsed: 2.00831695s +Oct 26 05:55:33.033: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Running", Reason="", readiness=true. Elapsed: 4.017645489s +Oct 26 05:55:35.040: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Running", Reason="", readiness=true. Elapsed: 6.024172364s +Oct 26 05:55:37.046: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Running", Reason="", readiness=true. Elapsed: 8.030590727s +Oct 26 05:55:39.051: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Running", Reason="", readiness=true. Elapsed: 10.035479393s +Oct 26 05:55:41.059: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Running", Reason="", readiness=true. Elapsed: 12.043207517s +Oct 26 05:55:43.063: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Running", Reason="", readiness=true. Elapsed: 14.047349047s +Oct 26 05:55:45.068: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Running", Reason="", readiness=true. Elapsed: 16.052795288s +Oct 26 05:55:47.076: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Running", Reason="", readiness=true. Elapsed: 18.060187212s +Oct 26 05:55:49.083: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Running", Reason="", readiness=true. Elapsed: 20.067112068s +Oct 26 05:55:51.087: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Running", Reason="", readiness=true. Elapsed: 22.07161023s +Oct 26 05:55:53.091: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Running", Reason="", readiness=false. Elapsed: 24.075569737s +Oct 26 05:55:55.099: INFO: Pod "pod-subpath-test-secret-8gbp": Phase="Succeeded", Reason="", readiness=false. Elapsed: 26.083734221s +STEP: Saw pod success +Oct 26 05:55:55.099: INFO: Pod "pod-subpath-test-secret-8gbp" satisfied condition "Succeeded or Failed" +Oct 26 05:55:55.103: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-subpath-test-secret-8gbp container test-container-subpath-secret-8gbp: +STEP: delete the pod +Oct 26 05:55:55.120: INFO: Waiting for pod pod-subpath-test-secret-8gbp to disappear +Oct 26 05:55:55.122: INFO: Pod pod-subpath-test-secret-8gbp no longer exists +STEP: Deleting pod pod-subpath-test-secret-8gbp +Oct 26 05:55:55.122: INFO: Deleting pod "pod-subpath-test-secret-8gbp" in namespace "subpath-2906" +[AfterEach] [sig-storage] Subpath + test/e2e/framework/framework.go:188 +Oct 26 05:55:55.124: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "subpath-2906" for this suite. + +• [SLOW TEST:26.146 seconds] +[sig-storage] Subpath +test/e2e/storage/utils/framework.go:23 + Atomic writer volumes + test/e2e/storage/subpath.go:36 + should support subpaths with secret pod [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Subpath Atomic writer volumes should support subpaths with secret pod [Conformance]","total":356,"completed":337,"skipped":6269,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Projected downwardAPI + should provide container's memory request [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:55:55.133: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Projected downwardAPI + test/e2e/common/storage/projected_downwardapi.go:43 +[It] should provide container's memory request [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test downward API volume plugin +Oct 26 05:55:55.169: INFO: Waiting up to 5m0s for pod "downwardapi-volume-44517ba7-fd98-4892-9288-f296ffc694e3" in namespace "projected-5727" to be "Succeeded or Failed" +Oct 26 05:55:55.175: INFO: Pod "downwardapi-volume-44517ba7-fd98-4892-9288-f296ffc694e3": Phase="Pending", Reason="", readiness=false. Elapsed: 6.136791ms +Oct 26 05:55:57.180: INFO: Pod "downwardapi-volume-44517ba7-fd98-4892-9288-f296ffc694e3": Phase="Pending", Reason="", readiness=false. Elapsed: 2.011471861s +Oct 26 05:55:59.188: INFO: Pod "downwardapi-volume-44517ba7-fd98-4892-9288-f296ffc694e3": Phase="Pending", Reason="", readiness=false. Elapsed: 4.018731821s +Oct 26 05:56:01.196: INFO: Pod "downwardapi-volume-44517ba7-fd98-4892-9288-f296ffc694e3": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.027569241s +STEP: Saw pod success +Oct 26 05:56:01.196: INFO: Pod "downwardapi-volume-44517ba7-fd98-4892-9288-f296ffc694e3" satisfied condition "Succeeded or Failed" +Oct 26 05:56:01.205: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod downwardapi-volume-44517ba7-fd98-4892-9288-f296ffc694e3 container client-container: +STEP: delete the pod +Oct 26 05:56:01.227: INFO: Waiting for pod downwardapi-volume-44517ba7-fd98-4892-9288-f296ffc694e3 to disappear +Oct 26 05:56:01.235: INFO: Pod downwardapi-volume-44517ba7-fd98-4892-9288-f296ffc694e3 no longer exists +[AfterEach] [sig-storage] Projected downwardAPI + test/e2e/framework/framework.go:188 +Oct 26 05:56:01.235: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-5727" for this suite. + +• [SLOW TEST:6.111 seconds] +[sig-storage] Projected downwardAPI +test/e2e/common/storage/framework.go:23 + should provide container's memory request [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected downwardAPI should provide container's memory request [NodeConformance] [Conformance]","total":356,"completed":338,"skipped":6298,"failed":0} +SSSSSSSSSSSSS +------------------------------ +[sig-node] Probing container + should *not* be restarted with a tcp:8080 liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 05:56:01.248: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-probe +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:61 +[It] should *not* be restarted with a tcp:8080 liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating pod liveness-20187ee9-bdb0-438a-9865-18def04d328e in namespace container-probe-4327 +Oct 26 05:56:03.306: INFO: Started pod liveness-20187ee9-bdb0-438a-9865-18def04d328e in namespace container-probe-4327 +STEP: checking the pod's current state and verifying that restartCount is present +Oct 26 05:56:03.309: INFO: Initial restart count of pod liveness-20187ee9-bdb0-438a-9865-18def04d328e is 0 +STEP: deleting the pod +[AfterEach] [sig-node] Probing container + test/e2e/framework/framework.go:188 +Oct 26 06:00:04.053: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-probe-4327" for this suite. + +• [SLOW TEST:242.844 seconds] +[sig-node] Probing container +test/e2e/common/node/framework.go:23 + should *not* be restarted with a tcp:8080 liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Probing container should *not* be restarted with a tcp:8080 liveness probe [NodeConformance] [Conformance]","total":356,"completed":339,"skipped":6311,"failed":0} +SSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] EmptyDir volumes + should support (non-root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:00:04.097: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename emptydir +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should support (non-root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test emptydir 0666 on node default medium +Oct 26 06:00:04.153: INFO: Waiting up to 5m0s for pod "pod-5a9f867f-7d48-401c-9ef1-28fcf755a135" in namespace "emptydir-5823" to be "Succeeded or Failed" +Oct 26 06:00:04.157: INFO: Pod "pod-5a9f867f-7d48-401c-9ef1-28fcf755a135": Phase="Pending", Reason="", readiness=false. Elapsed: 4.539236ms +Oct 26 06:00:06.163: INFO: Pod "pod-5a9f867f-7d48-401c-9ef1-28fcf755a135": Phase="Pending", Reason="", readiness=false. Elapsed: 2.009841836s +Oct 26 06:00:08.168: INFO: Pod "pod-5a9f867f-7d48-401c-9ef1-28fcf755a135": Phase="Pending", Reason="", readiness=false. Elapsed: 4.015141491s +Oct 26 06:00:10.174: INFO: Pod "pod-5a9f867f-7d48-401c-9ef1-28fcf755a135": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.021180055s +STEP: Saw pod success +Oct 26 06:00:10.174: INFO: Pod "pod-5a9f867f-7d48-401c-9ef1-28fcf755a135" satisfied condition "Succeeded or Failed" +Oct 26 06:00:10.176: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-5a9f867f-7d48-401c-9ef1-28fcf755a135 container test-container: +STEP: delete the pod +Oct 26 06:00:10.201: INFO: Waiting for pod pod-5a9f867f-7d48-401c-9ef1-28fcf755a135 to disappear +Oct 26 06:00:10.203: INFO: Pod pod-5a9f867f-7d48-401c-9ef1-28fcf755a135 no longer exists +[AfterEach] [sig-storage] EmptyDir volumes + test/e2e/framework/framework.go:188 +Oct 26 06:00:10.203: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "emptydir-5823" for this suite. + +• [SLOW TEST:6.120 seconds] +[sig-storage] EmptyDir volumes +test/e2e/common/storage/framework.go:23 + should support (non-root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] EmptyDir volumes should support (non-root,0666,default) [LinuxOnly] [NodeConformance] [Conformance]","total":356,"completed":340,"skipped":6327,"failed":0} +SSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] ConfigMap + should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:00:10.218: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename configmap +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name configmap-test-volume-1ea6e92e-12de-44e8-9d51-b497331cb3ac +STEP: Creating a pod to test consume configMaps +Oct 26 06:00:10.259: INFO: Waiting up to 5m0s for pod "pod-configmaps-b01f143d-f9d0-401e-9252-7bd3b03f3c7f" in namespace "configmap-3084" to be "Succeeded or Failed" +Oct 26 06:00:10.265: INFO: Pod "pod-configmaps-b01f143d-f9d0-401e-9252-7bd3b03f3c7f": Phase="Pending", Reason="", readiness=false. Elapsed: 5.713286ms +Oct 26 06:00:12.269: INFO: Pod "pod-configmaps-b01f143d-f9d0-401e-9252-7bd3b03f3c7f": Phase="Pending", Reason="", readiness=false. Elapsed: 2.010163188s +Oct 26 06:00:14.277: INFO: Pod "pod-configmaps-b01f143d-f9d0-401e-9252-7bd3b03f3c7f": Phase="Pending", Reason="", readiness=false. Elapsed: 4.017844829s +Oct 26 06:00:16.288: INFO: Pod "pod-configmaps-b01f143d-f9d0-401e-9252-7bd3b03f3c7f": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.029088935s +STEP: Saw pod success +Oct 26 06:00:16.288: INFO: Pod "pod-configmaps-b01f143d-f9d0-401e-9252-7bd3b03f3c7f" satisfied condition "Succeeded or Failed" +Oct 26 06:00:16.291: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-configmaps-b01f143d-f9d0-401e-9252-7bd3b03f3c7f container configmap-volume-test: +STEP: delete the pod +Oct 26 06:00:16.319: INFO: Waiting for pod pod-configmaps-b01f143d-f9d0-401e-9252-7bd3b03f3c7f to disappear +Oct 26 06:00:16.324: INFO: Pod pod-configmaps-b01f143d-f9d0-401e-9252-7bd3b03f3c7f no longer exists +[AfterEach] [sig-storage] ConfigMap + test/e2e/framework/framework.go:188 +Oct 26 06:00:16.324: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "configmap-3084" for this suite. + +• [SLOW TEST:6.121 seconds] +[sig-storage] ConfigMap +test/e2e/common/storage/framework.go:23 + should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] ConfigMap should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance]","total":356,"completed":341,"skipped":6344,"failed":0} +SSSSSSSSS +------------------------------ +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + should not be able to mutate or prevent deletion of webhook configuration objects [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:00:16.340: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename webhook +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:89 +STEP: Setting up server cert +STEP: Create role binding to let webhook read extension-apiserver-authentication +STEP: Deploying the webhook pod +STEP: Wait for the deployment to be ready +Oct 26 06:00:16.596: INFO: deployment "sample-webhook-deployment" doesn't have the required revision set +Oct 26 06:00:18.608: INFO: deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:1, UpdatedReplicas:1, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:1, Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2022, time.October, 26, 6, 0, 16, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 6, 0, 16, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2022, time.October, 26, 6, 0, 16, 0, time.Local), LastTransitionTime:time.Date(2022, time.October, 26, 6, 0, 16, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"sample-webhook-deployment-68c7bd4684\" is progressing."}}, CollisionCount:(*int32)(nil)} +STEP: Deploying the webhook service +STEP: Verifying the service has paired with the endpoint +Oct 26 06:00:21.625: INFO: Waiting for amount of service:e2e-test-webhook endpoints to be 1 +[It] should not be able to mutate or prevent deletion of webhook configuration objects [Conformance] + test/e2e/framework/framework.go:652 +STEP: Registering a validating webhook on ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects, via the AdmissionRegistration API +STEP: Registering a mutating webhook on ValidatingWebhookConfiguration and MutatingWebhookConfiguration objects, via the AdmissionRegistration API +STEP: Creating a dummy validating-webhook-configuration object +STEP: Deleting the validating-webhook-configuration, which should be possible to remove +STEP: Creating a dummy mutating-webhook-configuration object +STEP: Deleting the mutating-webhook-configuration, which should be possible to remove +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/framework/framework.go:188 +Oct 26 06:00:21.676: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "webhook-9281" for this suite. +STEP: Destroying namespace "webhook-9281-markers" for this suite. +[AfterEach] [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] + test/e2e/apimachinery/webhook.go:104 + +• [SLOW TEST:5.396 seconds] +[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] +test/e2e/apimachinery/framework.go:23 + should not be able to mutate or prevent deletion of webhook configuration objects [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should not be able to mutate or prevent deletion of webhook configuration objects [Conformance]","total":356,"completed":342,"skipped":6353,"failed":0} +SSSSSSS +------------------------------ +[sig-api-machinery] ResourceQuota + should create a ResourceQuota and capture the life of a configMap. [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:00:21.736: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename resourcequota +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should create a ResourceQuota and capture the life of a configMap. [Conformance] + test/e2e/framework/framework.go:652 +STEP: Counting existing ResourceQuota +STEP: Creating a ResourceQuota +STEP: Ensuring resource quota status is calculated +STEP: Creating a ConfigMap +STEP: Ensuring resource quota status captures configMap creation +STEP: Deleting a ConfigMap +STEP: Ensuring resource quota status released usage +[AfterEach] [sig-api-machinery] ResourceQuota + test/e2e/framework/framework.go:188 +Oct 26 06:00:49.811: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "resourcequota-6051" for this suite. + +• [SLOW TEST:28.080 seconds] +[sig-api-machinery] ResourceQuota +test/e2e/apimachinery/framework.go:23 + should create a ResourceQuota and capture the life of a configMap. [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a configMap. [Conformance]","total":356,"completed":343,"skipped":6360,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] Probing container + should *not* be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:00:49.817: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-probe +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:61 +[It] should *not* be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating pod test-webserver-4239ced2-36bf-4416-a0b6-5aa8ced19d8f in namespace container-probe-7022 +Oct 26 06:00:53.859: INFO: Started pod test-webserver-4239ced2-36bf-4416-a0b6-5aa8ced19d8f in namespace container-probe-7022 +STEP: checking the pod's current state and verifying that restartCount is present +Oct 26 06:00:53.861: INFO: Initial restart count of pod test-webserver-4239ced2-36bf-4416-a0b6-5aa8ced19d8f is 0 +STEP: deleting the pod +[AfterEach] [sig-node] Probing container + test/e2e/framework/framework.go:188 +Oct 26 06:04:54.872: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-probe-7022" for this suite. + +• [SLOW TEST:245.090 seconds] +[sig-node] Probing container +test/e2e/common/node/framework.go:23 + should *not* be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Probing container should *not* be restarted with a /healthz http liveness probe [NodeConformance] [Conformance]","total":356,"completed":344,"skipped":6383,"failed":0} +SSSS +------------------------------ +[sig-node] Probing container + should have monotonically increasing restart count [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Probing container + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:04:54.909: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename container-probe +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] Probing container + test/e2e/common/node/container_probe.go:61 +[It] should have monotonically increasing restart count [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating pod liveness-d24f92ce-9efd-445f-97f5-b71f1fbae54d in namespace container-probe-8407 +Oct 26 06:04:56.989: INFO: Started pod liveness-d24f92ce-9efd-445f-97f5-b71f1fbae54d in namespace container-probe-8407 +STEP: checking the pod's current state and verifying that restartCount is present +Oct 26 06:04:56.991: INFO: Initial restart count of pod liveness-d24f92ce-9efd-445f-97f5-b71f1fbae54d is 0 +Oct 26 06:05:17.084: INFO: Restart count of pod container-probe-8407/liveness-d24f92ce-9efd-445f-97f5-b71f1fbae54d is now 1 (20.092701007s elapsed) +Oct 26 06:05:37.175: INFO: Restart count of pod container-probe-8407/liveness-d24f92ce-9efd-445f-97f5-b71f1fbae54d is now 2 (40.183406837s elapsed) +Oct 26 06:05:57.254: INFO: Restart count of pod container-probe-8407/liveness-d24f92ce-9efd-445f-97f5-b71f1fbae54d is now 3 (1m0.262574452s elapsed) +Oct 26 06:06:17.333: INFO: Restart count of pod container-probe-8407/liveness-d24f92ce-9efd-445f-97f5-b71f1fbae54d is now 4 (1m20.342179279s elapsed) +Oct 26 06:07:31.668: INFO: Restart count of pod container-probe-8407/liveness-d24f92ce-9efd-445f-97f5-b71f1fbae54d is now 5 (2m34.676565604s elapsed) +STEP: deleting the pod +[AfterEach] [sig-node] Probing container + test/e2e/framework/framework.go:188 +Oct 26 06:07:31.678: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "container-probe-8407" for this suite. + +• [SLOW TEST:156.786 seconds] +[sig-node] Probing container +test/e2e/common/node/framework.go:23 + should have monotonically increasing restart count [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Probing container should have monotonically increasing restart count [NodeConformance] [Conformance]","total":356,"completed":345,"skipped":6387,"failed":0} +SSSSSS +------------------------------ +[sig-node] RuntimeClass + should schedule a Pod requesting a RuntimeClass without PodOverhead [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] RuntimeClass + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:07:31.694: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename runtimeclass +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should schedule a Pod requesting a RuntimeClass without PodOverhead [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[AfterEach] [sig-node] RuntimeClass + test/e2e/framework/framework.go:188 +Oct 26 06:07:33.767: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "runtimeclass-6974" for this suite. +•{"msg":"PASSED [sig-node] RuntimeClass should schedule a Pod requesting a RuntimeClass without PodOverhead [NodeConformance] [Conformance]","total":356,"completed":346,"skipped":6393,"failed":0} +SSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-storage] Downward API volume + should update annotations on modification [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:07:33.775: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename downward-api +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-storage] Downward API volume + test/e2e/common/storage/downwardapi_volume.go:43 +[It] should update annotations on modification [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating the pod +Oct 26 06:07:33.818: INFO: The status of Pod annotationupdate3fb8c560-1c43-4b73-bb65-75a84276d28c is Pending, waiting for it to be Running (with Ready = true) +Oct 26 06:07:35.823: INFO: The status of Pod annotationupdate3fb8c560-1c43-4b73-bb65-75a84276d28c is Running (Ready = true) +Oct 26 06:07:36.357: INFO: Successfully updated pod "annotationupdate3fb8c560-1c43-4b73-bb65-75a84276d28c" +[AfterEach] [sig-storage] Downward API volume + test/e2e/framework/framework.go:188 +Oct 26 06:07:38.370: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "downward-api-149" for this suite. +•{"msg":"PASSED [sig-storage] Downward API volume should update annotations on modification [NodeConformance] [Conformance]","total":356,"completed":347,"skipped":6415,"failed":0} +SSSSS +------------------------------ +[sig-storage] Projected configMap + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:07:38.385: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename projected +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating configMap with name projected-configmap-test-volume-map-8f044355-2337-4dd2-901c-f2823cc49400 +STEP: Creating a pod to test consume configMaps +Oct 26 06:07:38.433: INFO: Waiting up to 5m0s for pod "pod-projected-configmaps-6cc0a239-57aa-40d7-b8d7-3f81e3874868" in namespace "projected-3038" to be "Succeeded or Failed" +Oct 26 06:07:38.438: INFO: Pod "pod-projected-configmaps-6cc0a239-57aa-40d7-b8d7-3f81e3874868": Phase="Pending", Reason="", readiness=false. Elapsed: 5.182015ms +Oct 26 06:07:40.448: INFO: Pod "pod-projected-configmaps-6cc0a239-57aa-40d7-b8d7-3f81e3874868": Phase="Pending", Reason="", readiness=false. Elapsed: 2.015358112s +Oct 26 06:07:42.451: INFO: Pod "pod-projected-configmaps-6cc0a239-57aa-40d7-b8d7-3f81e3874868": Phase="Pending", Reason="", readiness=false. Elapsed: 4.018365318s +Oct 26 06:07:44.456: INFO: Pod "pod-projected-configmaps-6cc0a239-57aa-40d7-b8d7-3f81e3874868": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.022959029s +STEP: Saw pod success +Oct 26 06:07:44.456: INFO: Pod "pod-projected-configmaps-6cc0a239-57aa-40d7-b8d7-3f81e3874868" satisfied condition "Succeeded or Failed" +Oct 26 06:07:44.458: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod pod-projected-configmaps-6cc0a239-57aa-40d7-b8d7-3f81e3874868 container agnhost-container: +STEP: delete the pod +Oct 26 06:07:44.474: INFO: Waiting for pod pod-projected-configmaps-6cc0a239-57aa-40d7-b8d7-3f81e3874868 to disappear +Oct 26 06:07:44.482: INFO: Pod pod-projected-configmaps-6cc0a239-57aa-40d7-b8d7-3f81e3874868 no longer exists +[AfterEach] [sig-storage] Projected configMap + test/e2e/framework/framework.go:188 +Oct 26 06:07:44.483: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "projected-3038" for this suite. + +• [SLOW TEST:6.110 seconds] +[sig-storage] Projected configMap +test/e2e/common/storage/framework.go:23 + should be consumable from pods in volume with mappings [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-storage] Projected configMap should be consumable from pods in volume with mappings [NodeConformance] [Conformance]","total":356,"completed":348,"skipped":6420,"failed":0} +SSSSSSSSSSSSSS +------------------------------ +[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] + Burst scaling should run to completion even with unhealthy pods [Slow] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:07:44.496: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename statefulset +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-apps] StatefulSet + test/e2e/apps/statefulset.go:96 +[BeforeEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:111 +STEP: Creating service test in namespace statefulset-8780 +[It] Burst scaling should run to completion even with unhealthy pods [Slow] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating stateful set ss in namespace statefulset-8780 +STEP: Waiting until all stateful set ss replicas will be running in namespace statefulset-8780 +Oct 26 06:07:44.558: INFO: Found 0 stateful pods, waiting for 1 +Oct 26 06:07:54.567: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true +STEP: Confirming that stateful set scale up will not halt with unhealthy stateful pod +Oct 26 06:07:54.570: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-8780 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Oct 26 06:07:54.790: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Oct 26 06:07:54.790: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Oct 26 06:07:54.790: INFO: stdout of mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true on ss-0: '/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html' + +Oct 26 06:07:54.795: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=true +Oct 26 06:08:04.803: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false +Oct 26 06:08:04.803: INFO: Waiting for statefulset status.replicas updated to 0 +Oct 26 06:08:04.818: INFO: POD NODE PHASE GRACE CONDITIONS +Oct 26 06:08:04.818: INFO: ss-0 i-066ef2cf0d4227da4 Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:07:44 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:07:54 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:07:54 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:07:44 +0000 UTC }] +Oct 26 06:08:04.818: INFO: +Oct 26 06:08:04.818: INFO: StatefulSet ss has not reached scale 3, at 1 +Oct 26 06:08:05.828: INFO: Verifying statefulset ss doesn't scale past 3 for another 8.992058222s +Oct 26 06:08:06.834: INFO: Verifying statefulset ss doesn't scale past 3 for another 7.983557745s +Oct 26 06:08:07.839: INFO: Verifying statefulset ss doesn't scale past 3 for another 6.977451735s +Oct 26 06:08:08.846: INFO: Verifying statefulset ss doesn't scale past 3 for another 5.972899599s +Oct 26 06:08:09.850: INFO: Verifying statefulset ss doesn't scale past 3 for another 4.965118537s +Oct 26 06:08:10.857: INFO: Verifying statefulset ss doesn't scale past 3 for another 3.961234279s +Oct 26 06:08:11.866: INFO: Verifying statefulset ss doesn't scale past 3 for another 2.954772118s +Oct 26 06:08:12.874: INFO: Verifying statefulset ss doesn't scale past 3 for another 1.945435095s +Oct 26 06:08:13.881: INFO: Verifying statefulset ss doesn't scale past 3 for another 937.968436ms +STEP: Scaling up stateful set ss to 3 replicas and waiting until all of them will be running in namespace statefulset-8780 +Oct 26 06:08:14.887: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-8780 exec ss-0 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Oct 26 06:08:15.091: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\n" +Oct 26 06:08:15.091: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Oct 26 06:08:15.091: INFO: stdout of mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true on ss-0: '/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html' + +Oct 26 06:08:15.091: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-8780 exec ss-1 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Oct 26 06:08:15.240: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\nmv: can't rename '/tmp/index.html': No such file or directory\n+ true\n" +Oct 26 06:08:15.240: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Oct 26 06:08:15.240: INFO: stdout of mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true on ss-1: '/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html' + +Oct 26 06:08:15.240: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-8780 exec ss-2 -- /bin/sh -x -c mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true' +Oct 26 06:08:15.401: INFO: stderr: "+ mv -v /tmp/index.html /usr/local/apache2/htdocs/\nmv: can't rename '/tmp/index.html': No such file or directory\n+ true\n" +Oct 26 06:08:15.401: INFO: stdout: "'/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html'\n" +Oct 26 06:08:15.401: INFO: stdout of mv -v /tmp/index.html /usr/local/apache2/htdocs/ || true on ss-2: '/tmp/index.html' -> '/usr/local/apache2/htdocs/index.html' + +Oct 26 06:08:15.406: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=false +Oct 26 06:08:25.415: INFO: Waiting for pod ss-0 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 06:08:25.415: INFO: Waiting for pod ss-1 to enter Running - Ready=true, currently Running - Ready=true +Oct 26 06:08:25.415: INFO: Waiting for pod ss-2 to enter Running - Ready=true, currently Running - Ready=true +STEP: Scale down will not halt with unhealthy stateful pod +Oct 26 06:08:25.419: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-8780 exec ss-0 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Oct 26 06:08:25.576: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Oct 26 06:08:25.576: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Oct 26 06:08:25.576: INFO: stdout of mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true on ss-0: '/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html' + +Oct 26 06:08:25.576: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-8780 exec ss-1 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Oct 26 06:08:25.732: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Oct 26 06:08:25.732: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Oct 26 06:08:25.732: INFO: stdout of mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true on ss-1: '/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html' + +Oct 26 06:08:25.732: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=statefulset-8780 exec ss-2 -- /bin/sh -x -c mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true' +Oct 26 06:08:25.881: INFO: stderr: "+ mv -v /usr/local/apache2/htdocs/index.html /tmp/\n" +Oct 26 06:08:25.881: INFO: stdout: "'/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html'\n" +Oct 26 06:08:25.881: INFO: stdout of mv -v /usr/local/apache2/htdocs/index.html /tmp/ || true on ss-2: '/usr/local/apache2/htdocs/index.html' -> '/tmp/index.html' + +Oct 26 06:08:25.881: INFO: Waiting for statefulset status.replicas updated to 0 +Oct 26 06:08:25.884: INFO: Waiting for stateful set status.readyReplicas to become 0, currently 3 +Oct 26 06:08:35.890: INFO: Waiting for pod ss-0 to enter Running - Ready=false, currently Running - Ready=false +Oct 26 06:08:35.890: INFO: Waiting for pod ss-1 to enter Running - Ready=false, currently Running - Ready=false +Oct 26 06:08:35.891: INFO: Waiting for pod ss-2 to enter Running - Ready=false, currently Running - Ready=false +Oct 26 06:08:35.903: INFO: POD NODE PHASE GRACE CONDITIONS +Oct 26 06:08:35.903: INFO: ss-0 i-066ef2cf0d4227da4 Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:07:44 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:25 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:25 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:07:44 +0000 UTC }] +Oct 26 06:08:35.903: INFO: ss-1 i-098fc8365626c8e13 Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:04 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:26 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:26 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:04 +0000 UTC }] +Oct 26 06:08:35.903: INFO: ss-2 i-0ac1bb196421f13a1 Running [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:04 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:26 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:26 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:04 +0000 UTC }] +Oct 26 06:08:35.903: INFO: +Oct 26 06:08:35.903: INFO: StatefulSet ss has not reached scale 0, at 3 +Oct 26 06:08:36.911: INFO: POD NODE PHASE GRACE CONDITIONS +Oct 26 06:08:36.911: INFO: ss-0 i-066ef2cf0d4227da4 Running 30s [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:07:44 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:25 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:25 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:07:44 +0000 UTC }] +Oct 26 06:08:36.911: INFO: ss-2 i-0ac1bb196421f13a1 Running 30s [{Initialized True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:04 +0000 UTC } {Ready False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:26 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {ContainersReady False 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:26 +0000 UTC ContainersNotReady containers with unready status: [webserver]} {PodScheduled True 0001-01-01 00:00:00 +0000 UTC 2022-10-26 06:08:04 +0000 UTC }] +Oct 26 06:08:36.911: INFO: +Oct 26 06:08:36.911: INFO: StatefulSet ss has not reached scale 0, at 2 +Oct 26 06:08:37.916: INFO: Verifying statefulset ss doesn't scale past 0 for another 7.98691545s +Oct 26 06:08:38.921: INFO: Verifying statefulset ss doesn't scale past 0 for another 6.981193473s +Oct 26 06:08:39.928: INFO: Verifying statefulset ss doesn't scale past 0 for another 5.977254222s +Oct 26 06:08:40.935: INFO: Verifying statefulset ss doesn't scale past 0 for another 4.96950784s +Oct 26 06:08:41.943: INFO: Verifying statefulset ss doesn't scale past 0 for another 3.963441489s +Oct 26 06:08:42.950: INFO: Verifying statefulset ss doesn't scale past 0 for another 2.953605637s +Oct 26 06:08:43.956: INFO: Verifying statefulset ss doesn't scale past 0 for another 1.948504622s +Oct 26 06:08:44.962: INFO: Verifying statefulset ss doesn't scale past 0 for another 942.057687ms +STEP: Scaling down stateful set ss to 0 replicas and waiting until none of pods will run in namespacestatefulset-8780 +Oct 26 06:08:45.966: INFO: Scaling statefulset ss to 0 +Oct 26 06:08:45.975: INFO: Waiting for statefulset status.replicas updated to 0 +[AfterEach] Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:122 +Oct 26 06:08:45.977: INFO: Deleting all statefulset in ns statefulset-8780 +Oct 26 06:08:45.980: INFO: Scaling statefulset ss to 0 +Oct 26 06:08:45.988: INFO: Waiting for statefulset status.replicas updated to 0 +Oct 26 06:08:45.990: INFO: Deleting statefulset ss +[AfterEach] [sig-apps] StatefulSet + test/e2e/framework/framework.go:188 +Oct 26 06:08:46.006: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "statefulset-8780" for this suite. + +• [SLOW TEST:61.524 seconds] +[sig-apps] StatefulSet +test/e2e/apps/framework.go:23 + Basic StatefulSet functionality [StatefulSetBasic] + test/e2e/apps/statefulset.go:101 + Burst scaling should run to completion even with unhealthy pods [Slow] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] Burst scaling should run to completion even with unhealthy pods [Slow] [Conformance]","total":356,"completed":349,"skipped":6434,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-api-machinery] Garbage collector + should not delete dependents that have both valid owner and owner that's waiting for dependents to be deleted [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:08:46.020: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename gc +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should not delete dependents that have both valid owner and owner that's waiting for dependents to be deleted [Conformance] + test/e2e/framework/framework.go:652 +STEP: create the rc1 +STEP: create the rc2 +STEP: set half of pods created by rc simpletest-rc-to-be-deleted to have rc simpletest-rc-to-stay as owner as well +STEP: delete the rc simpletest-rc-to-be-deleted +STEP: wait for the rc to be deleted +Oct 26 06:09:02.236: INFO: 86 pods remaining +Oct 26 06:09:02.236: INFO: 71 pods has nil DeletionTimestamp +Oct 26 06:09:02.236: INFO: +Oct 26 06:09:07.208: INFO: 60 pods remaining +Oct 26 06:09:07.208: INFO: 50 pods has nil DeletionTimestamp +Oct 26 06:09:07.208: INFO: +STEP: Gathering metrics +Oct 26 06:09:12.277: INFO: The status of Pod kube-controller-manager-i-01a506a1cd9f42b49 is Running (Ready = true) +Oct 26 06:09:12.361: INFO: For apiserver_request_total: +For apiserver_request_latency_seconds: +For apiserver_init_events_total: +For garbage_collector_attempt_to_delete_queue_latency: +For garbage_collector_attempt_to_delete_work_duration: +For garbage_collector_attempt_to_orphan_queue_latency: +For garbage_collector_attempt_to_orphan_work_duration: +For garbage_collector_dirty_processing_latency_microseconds: +For garbage_collector_event_processing_latency_microseconds: +For garbage_collector_graph_changes_queue_latency: +For garbage_collector_graph_changes_work_duration: +For garbage_collector_orphan_processing_latency_microseconds: +For namespace_queue_latency: +For namespace_queue_latency_sum: +For namespace_queue_latency_count: +For namespace_retries: +For namespace_work_duration: +For namespace_work_duration_sum: +For namespace_work_duration_count: +For function_duration_seconds: +For errors_total: +For evicted_pods_total: + +Oct 26 06:09:12.362: INFO: Deleting pod "simpletest-rc-to-be-deleted-26h2q" in namespace "gc-5544" +Oct 26 06:09:12.378: INFO: Deleting pod "simpletest-rc-to-be-deleted-26ndg" in namespace "gc-5544" +Oct 26 06:09:12.395: INFO: Deleting pod "simpletest-rc-to-be-deleted-2dbdb" in namespace "gc-5544" +Oct 26 06:09:12.414: INFO: Deleting pod "simpletest-rc-to-be-deleted-2fx4s" in namespace "gc-5544" +Oct 26 06:09:12.431: INFO: Deleting pod "simpletest-rc-to-be-deleted-2pjx7" in namespace "gc-5544" +Oct 26 06:09:12.452: INFO: Deleting pod "simpletest-rc-to-be-deleted-2ptms" in namespace "gc-5544" +Oct 26 06:09:12.465: INFO: Deleting pod "simpletest-rc-to-be-deleted-4fqtf" in namespace "gc-5544" +Oct 26 06:09:12.475: INFO: Deleting pod "simpletest-rc-to-be-deleted-4jszc" in namespace "gc-5544" +Oct 26 06:09:12.489: INFO: Deleting pod "simpletest-rc-to-be-deleted-4jw57" in namespace "gc-5544" +Oct 26 06:09:12.523: INFO: Deleting pod "simpletest-rc-to-be-deleted-4wst9" in namespace "gc-5544" +Oct 26 06:09:12.539: INFO: Deleting pod "simpletest-rc-to-be-deleted-4wxqx" in namespace "gc-5544" +Oct 26 06:09:12.556: INFO: Deleting pod "simpletest-rc-to-be-deleted-5fxxl" in namespace "gc-5544" +Oct 26 06:09:12.574: INFO: Deleting pod "simpletest-rc-to-be-deleted-5hxwc" in namespace "gc-5544" +Oct 26 06:09:12.592: INFO: Deleting pod "simpletest-rc-to-be-deleted-5vls9" in namespace "gc-5544" +Oct 26 06:09:12.610: INFO: Deleting pod "simpletest-rc-to-be-deleted-5zzp5" in namespace "gc-5544" +Oct 26 06:09:12.628: INFO: Deleting pod "simpletest-rc-to-be-deleted-6kp4x" in namespace "gc-5544" +Oct 26 06:09:12.653: INFO: Deleting pod "simpletest-rc-to-be-deleted-6vkzk" in namespace "gc-5544" +Oct 26 06:09:12.701: INFO: Deleting pod "simpletest-rc-to-be-deleted-6wd6b" in namespace "gc-5544" +Oct 26 06:09:12.720: INFO: Deleting pod "simpletest-rc-to-be-deleted-7d7m4" in namespace "gc-5544" +Oct 26 06:09:12.739: INFO: Deleting pod "simpletest-rc-to-be-deleted-7gkll" in namespace "gc-5544" +Oct 26 06:09:12.758: INFO: Deleting pod "simpletest-rc-to-be-deleted-7vjh9" in namespace "gc-5544" +Oct 26 06:09:12.785: INFO: Deleting pod "simpletest-rc-to-be-deleted-8b2xj" in namespace "gc-5544" +Oct 26 06:09:12.809: INFO: Deleting pod "simpletest-rc-to-be-deleted-8kbhm" in namespace "gc-5544" +Oct 26 06:09:12.841: INFO: Deleting pod "simpletest-rc-to-be-deleted-8m27k" in namespace "gc-5544" +Oct 26 06:09:12.968: INFO: Deleting pod "simpletest-rc-to-be-deleted-8mx42" in namespace "gc-5544" +Oct 26 06:09:12.997: INFO: Deleting pod "simpletest-rc-to-be-deleted-b28mm" in namespace "gc-5544" +Oct 26 06:09:13.029: INFO: Deleting pod "simpletest-rc-to-be-deleted-bwfhh" in namespace "gc-5544" +Oct 26 06:09:13.042: INFO: Deleting pod "simpletest-rc-to-be-deleted-c4wmq" in namespace "gc-5544" +Oct 26 06:09:13.070: INFO: Deleting pod "simpletest-rc-to-be-deleted-c5zdz" in namespace "gc-5544" +Oct 26 06:09:13.091: INFO: Deleting pod "simpletest-rc-to-be-deleted-c7rbd" in namespace "gc-5544" +Oct 26 06:09:13.109: INFO: Deleting pod "simpletest-rc-to-be-deleted-c9p7j" in namespace "gc-5544" +Oct 26 06:09:13.130: INFO: Deleting pod "simpletest-rc-to-be-deleted-ch7px" in namespace "gc-5544" +Oct 26 06:09:13.145: INFO: Deleting pod "simpletest-rc-to-be-deleted-cjd8d" in namespace "gc-5544" +Oct 26 06:09:13.155: INFO: Deleting pod "simpletest-rc-to-be-deleted-cmhln" in namespace "gc-5544" +Oct 26 06:09:13.177: INFO: Deleting pod "simpletest-rc-to-be-deleted-cqzgm" in namespace "gc-5544" +Oct 26 06:09:13.191: INFO: Deleting pod "simpletest-rc-to-be-deleted-dl78l" in namespace "gc-5544" +Oct 26 06:09:13.207: INFO: Deleting pod "simpletest-rc-to-be-deleted-dxqx6" in namespace "gc-5544" +Oct 26 06:09:13.221: INFO: Deleting pod "simpletest-rc-to-be-deleted-f7rxl" in namespace "gc-5544" +Oct 26 06:09:13.249: INFO: Deleting pod "simpletest-rc-to-be-deleted-fb24t" in namespace "gc-5544" +Oct 26 06:09:13.259: INFO: Deleting pod "simpletest-rc-to-be-deleted-fbsnz" in namespace "gc-5544" +Oct 26 06:09:13.273: INFO: Deleting pod "simpletest-rc-to-be-deleted-fkdm5" in namespace "gc-5544" +Oct 26 06:09:13.288: INFO: Deleting pod "simpletest-rc-to-be-deleted-gmmsj" in namespace "gc-5544" +Oct 26 06:09:13.314: INFO: Deleting pod "simpletest-rc-to-be-deleted-gpdhp" in namespace "gc-5544" +Oct 26 06:09:13.342: INFO: Deleting pod "simpletest-rc-to-be-deleted-gzhrs" in namespace "gc-5544" +Oct 26 06:09:13.381: INFO: Deleting pod "simpletest-rc-to-be-deleted-h4flf" in namespace "gc-5544" +Oct 26 06:09:13.462: INFO: Deleting pod "simpletest-rc-to-be-deleted-h97lq" in namespace "gc-5544" +Oct 26 06:09:13.515: INFO: Deleting pod "simpletest-rc-to-be-deleted-h9plc" in namespace "gc-5544" +Oct 26 06:09:13.528: INFO: Deleting pod "simpletest-rc-to-be-deleted-j49zp" in namespace "gc-5544" +Oct 26 06:09:13.570: INFO: Deleting pod "simpletest-rc-to-be-deleted-j6gw4" in namespace "gc-5544" +Oct 26 06:09:13.595: INFO: Deleting pod "simpletest-rc-to-be-deleted-j6tdg" in namespace "gc-5544" +[AfterEach] [sig-api-machinery] Garbage collector + test/e2e/framework/framework.go:188 +Oct 26 06:09:13.621: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "gc-5544" for this suite. + +• [SLOW TEST:27.615 seconds] +[sig-api-machinery] Garbage collector +test/e2e/apimachinery/framework.go:23 + should not delete dependents that have both valid owner and owner that's waiting for dependents to be deleted [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-api-machinery] Garbage collector should not delete dependents that have both valid owner and owner that's waiting for dependents to be deleted [Conformance]","total":356,"completed":350,"skipped":6459,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-network] IngressClass API + should support creating IngressClass API operations [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] IngressClass API + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:09:13.638: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename ingressclass +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] IngressClass API + test/e2e/network/ingressclass.go:188 +[It] should support creating IngressClass API operations [Conformance] + test/e2e/framework/framework.go:652 +STEP: getting /apis +STEP: getting /apis/networking.k8s.io +STEP: getting /apis/networking.k8s.iov1 +STEP: creating +STEP: getting +STEP: listing +STEP: watching +Oct 26 06:09:13.678: INFO: starting watch +STEP: patching +STEP: updating +Oct 26 06:09:13.690: INFO: waiting for watch events with expected annotations +Oct 26 06:09:13.690: INFO: saw patched and updated annotations +STEP: deleting +STEP: deleting a collection +[AfterEach] [sig-network] IngressClass API + test/e2e/framework/framework.go:188 +Oct 26 06:09:13.711: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "ingressclass-4940" for this suite. +•{"msg":"PASSED [sig-network] IngressClass API should support creating IngressClass API operations [Conformance]","total":356,"completed":351,"skipped":6524,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-cli] Kubectl client Kubectl describe + should check if kubectl describe prints relevant information for rc and pods [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:09:13.722: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename kubectl +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-cli] Kubectl client + test/e2e/kubectl/kubectl.go:245 +[It] should check if kubectl describe prints relevant information for rc and pods [Conformance] + test/e2e/framework/framework.go:652 +Oct 26 06:09:13.743: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6973 create -f -' +Oct 26 06:09:15.397: INFO: stderr: "" +Oct 26 06:09:15.397: INFO: stdout: "replicationcontroller/agnhost-primary created\n" +Oct 26 06:09:15.397: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6973 create -f -' +Oct 26 06:09:15.588: INFO: stderr: "" +Oct 26 06:09:15.588: INFO: stdout: "service/agnhost-primary created\n" +STEP: Waiting for Agnhost primary to start. +Oct 26 06:09:16.595: INFO: Selector matched 1 pods for map[app:agnhost] +Oct 26 06:09:16.595: INFO: Found 0 / 1 +Oct 26 06:09:17.593: INFO: Selector matched 1 pods for map[app:agnhost] +Oct 26 06:09:17.594: INFO: Found 0 / 1 +Oct 26 06:09:18.596: INFO: Selector matched 1 pods for map[app:agnhost] +Oct 26 06:09:18.596: INFO: Found 1 / 1 +Oct 26 06:09:18.596: INFO: WaitFor completed with timeout 5m0s. Pods found = 1 out of 1 +Oct 26 06:09:18.598: INFO: Selector matched 1 pods for map[app:agnhost] +Oct 26 06:09:18.598: INFO: ForEach: Found 1 pods from the filter. Now looping through them. +Oct 26 06:09:18.598: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6973 describe pod agnhost-primary-dlwsb' +Oct 26 06:09:18.683: INFO: stderr: "" +Oct 26 06:09:18.683: INFO: stdout: "Name: agnhost-primary-dlwsb\nNamespace: kubectl-6973\nPriority: 0\nNode: i-066ef2cf0d4227da4/172.20.115.72\nStart Time: Wed, 26 Oct 2022 06:09:15 +0000\nLabels: app=agnhost\n role=primary\nAnnotations: \nStatus: Running\nIP: 100.96.2.68\nIPs:\n IP: 100.96.2.68\nControlled By: ReplicationController/agnhost-primary\nContainers:\n agnhost-primary:\n Container ID: containerd://4dd847d3209d876e1fe730287b1b4d89fa7b2e8e05fcdfea0f5ceaf0fac9cfb2\n Image: k8s.gcr.io/e2e-test-images/agnhost:2.39\n Image ID: k8s.gcr.io/e2e-test-images/agnhost@sha256:7e8bdd271312fd25fc5ff5a8f04727be84044eb3d7d8d03611972a6752e2e11e\n Port: 6379/TCP\n Host Port: 0/TCP\n State: Running\n Started: Wed, 26 Oct 2022 06:09:17 +0000\n Ready: True\n Restart Count: 0\n Environment: \n Mounts:\n /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-m5vc7 (ro)\nConditions:\n Type Status\n Initialized True \n Ready True \n ContainersReady True \n PodScheduled True \nVolumes:\n kube-api-access-m5vc7:\n Type: Projected (a volume that contains injected data from multiple sources)\n TokenExpirationSeconds: 3607\n ConfigMapName: kube-root-ca.crt\n ConfigMapOptional: \n DownwardAPI: true\nQoS Class: BestEffort\nNode-Selectors: \nTolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s\n node.kubernetes.io/unreachable:NoExecute op=Exists for 300s\nEvents:\n Type Reason Age From Message\n ---- ------ ---- ---- -------\n Normal Scheduled 3s default-scheduler Successfully assigned kubectl-6973/agnhost-primary-dlwsb to i-066ef2cf0d4227da4\n Normal Pulled 1s kubelet Container image \"k8s.gcr.io/e2e-test-images/agnhost:2.39\" already present on machine\n Normal Created 1s kubelet Created container agnhost-primary\n Normal Started 1s kubelet Started container agnhost-primary\n" +Oct 26 06:09:18.683: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6973 describe rc agnhost-primary' +Oct 26 06:09:18.779: INFO: stderr: "" +Oct 26 06:09:18.779: INFO: stdout: "Name: agnhost-primary\nNamespace: kubectl-6973\nSelector: app=agnhost,role=primary\nLabels: app=agnhost\n role=primary\nAnnotations: \nReplicas: 1 current / 1 desired\nPods Status: 1 Running / 0 Waiting / 0 Succeeded / 0 Failed\nPod Template:\n Labels: app=agnhost\n role=primary\n Containers:\n agnhost-primary:\n Image: k8s.gcr.io/e2e-test-images/agnhost:2.39\n Port: 6379/TCP\n Host Port: 0/TCP\n Environment: \n Mounts: \n Volumes: \nEvents:\n Type Reason Age From Message\n ---- ------ ---- ---- -------\n Normal SuccessfulCreate 3s replication-controller Created pod: agnhost-primary-dlwsb\n" +Oct 26 06:09:18.779: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6973 describe service agnhost-primary' +Oct 26 06:09:18.866: INFO: stderr: "" +Oct 26 06:09:18.866: INFO: stdout: "Name: agnhost-primary\nNamespace: kubectl-6973\nLabels: app=agnhost\n role=primary\nAnnotations: \nSelector: app=agnhost,role=primary\nType: ClusterIP\nIP Family Policy: SingleStack\nIP Families: IPv4\nIP: 100.70.95.151\nIPs: 100.70.95.151\nPort: 6379/TCP\nTargetPort: agnhost-server/TCP\nEndpoints: 100.96.2.68:6379\nSession Affinity: None\nEvents: \n" +Oct 26 06:09:18.875: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6973 describe node i-01a506a1cd9f42b49' +Oct 26 06:09:19.071: INFO: stderr: "" +Oct 26 06:09:19.071: INFO: stdout: "Name: i-01a506a1cd9f42b49\nRoles: control-plane\nLabels: beta.kubernetes.io/arch=amd64\n beta.kubernetes.io/instance-type=t3.medium\n beta.kubernetes.io/os=linux\n failure-domain.beta.kubernetes.io/region=us-west-2\n failure-domain.beta.kubernetes.io/zone=us-west-2a\n kops.k8s.io/instancegroup=control-plane-us-west-2a\n kops.k8s.io/kops-controller-pki=\n kubernetes.io/arch=amd64\n kubernetes.io/hostname=i-01a506a1cd9f42b49\n kubernetes.io/os=linux\n node-role.kubernetes.io/control-plane=\n node.kubernetes.io/exclude-from-external-load-balancers=\n node.kubernetes.io/instance-type=t3.medium\n topology.ebs.csi.aws.com/zone=us-west-2a\n topology.kubernetes.io/region=us-west-2\n topology.kubernetes.io/zone=us-west-2a\nAnnotations: csi.volume.kubernetes.io/nodeid: {\"ebs.csi.aws.com\":\"i-01a506a1cd9f42b49\"}\n io.cilium.network.ipv4-cilium-host: 100.96.0.157\n io.cilium.network.ipv4-health-ip: 100.96.0.49\n io.cilium.network.ipv4-pod-cidr: 100.96.0.0/24\n node.alpha.kubernetes.io/ttl: 0\n volumes.kubernetes.io/controller-managed-attach-detach: true\nCreationTimestamp: Wed, 26 Oct 2022 04:24:38 +0000\nTaints: node-role.kubernetes.io/control-plane:NoSchedule\nUnschedulable: false\nLease:\n HolderIdentity: i-01a506a1cd9f42b49\n AcquireTime: \n RenewTime: Wed, 26 Oct 2022 06:09:14 +0000\nConditions:\n Type Status LastHeartbeatTime LastTransitionTime Reason Message\n ---- ------ ----------------- ------------------ ------ -------\n NetworkUnavailable False Wed, 26 Oct 2022 04:26:21 +0000 Wed, 26 Oct 2022 04:26:21 +0000 CiliumIsUp Cilium is running on this node\n MemoryPressure False Wed, 26 Oct 2022 06:05:54 +0000 Wed, 26 Oct 2022 04:24:28 +0000 KubeletHasSufficientMemory kubelet has sufficient memory available\n DiskPressure False Wed, 26 Oct 2022 06:05:54 +0000 Wed, 26 Oct 2022 04:24:28 +0000 KubeletHasNoDiskPressure kubelet has no disk pressure\n PIDPressure False Wed, 26 Oct 2022 06:05:54 +0000 Wed, 26 Oct 2022 04:24:28 +0000 KubeletHasSufficientPID kubelet has sufficient PID available\n Ready True Wed, 26 Oct 2022 06:05:54 +0000 Wed, 26 Oct 2022 04:25:40 +0000 KubeletReady kubelet is posting ready status. AppArmor enabled\nAddresses:\n InternalIP: 172.20.51.117\n ExternalIP: 35.85.61.230\n InternalDNS: i-01a506a1cd9f42b49.us-west-2.compute.internal\n Hostname: i-01a506a1cd9f42b49.us-west-2.compute.internal\n ExternalDNS: ec2-35-85-61-230.us-west-2.compute.amazonaws.com\nCapacity:\n cpu: 2\n ephemeral-storage: 64989720Ki\n hugepages-1Gi: 0\n hugepages-2Mi: 0\n memory: 3969476Ki\n pods: 110\nAllocatable:\n cpu: 2\n ephemeral-storage: 59894525853\n hugepages-1Gi: 0\n hugepages-2Mi: 0\n memory: 3867076Ki\n pods: 110\nSystem Info:\n Machine ID: ec28d7ce5d4e47ec35f504b170dcb617\n System UUID: ec28d7ce-5d4e-47ec-35f5-04b170dcb617\n Boot ID: 01cea1b5-db1b-4824-b484-66719b2afd9d\n Kernel Version: 5.4.0-1029-aws\n OS Image: Ubuntu 20.04.1 LTS\n Operating System: linux\n Architecture: amd64\n Container Runtime Version: containerd://1.6.6\n Kubelet Version: v1.24.6-eks-eceb288\n Kube-Proxy Version: v1.24.6-eks-eceb288\nPodCIDR: 100.96.0.0/24\nPodCIDRs: 100.96.0.0/24\nProviderID: aws:///us-west-2a/i-01a506a1cd9f42b49\nNon-terminated Pods: (15 in total)\n Namespace Name CPU Requests CPU Limits Memory Requests Memory Limits Age\n --------- ---- ------------ ---------- --------------- ------------- ---\n kube-system aws-cloud-controller-manager-df7sk 200m (10%) 0 (0%) 0 (0%) 0 (0%) 103m\n kube-system aws-iam-authenticator-w86xv 10m (0%) 100m (5%) 20Mi (0%) 20Mi (0%) 103m\n kube-system cilium-operator-9cb4f599d-ng584 25m (1%) 0 (0%) 128Mi (3%) 0 (0%) 103m\n kube-system cilium-wnt9z 100m (5%) 0 (0%) 128Mi (3%) 100Mi (2%) 103m\n kube-system dns-controller-86c7998b47-x7cc6 50m (2%) 0 (0%) 50Mi (1%) 0 (0%) 103m\n kube-system ebs-csi-controller-6994bc7489-mjl6x 0 (0%) 0 (0%) 0 (0%) 0 (0%) 103m\n kube-system ebs-csi-node-bp8kp 0 (0%) 0 (0%) 0 (0%) 0 (0%) 103m\n kube-system etcd-manager-events-i-01a506a1cd9f42b49 100m (5%) 0 (0%) 100Mi (2%) 0 (0%) 103m\n kube-system etcd-manager-main-i-01a506a1cd9f42b49 200m (10%) 0 (0%) 100Mi (2%) 0 (0%) 104m\n kube-system kops-controller-fnvzx 50m (2%) 0 (0%) 50Mi (1%) 0 (0%) 103m\n kube-system kube-apiserver-i-01a506a1cd9f42b49 150m (7%) 0 (0%) 0 (0%) 0 (0%) 103m\n kube-system kube-controller-manager-i-01a506a1cd9f42b49 100m (5%) 0 (0%) 0 (0%) 0 (0%) 104m\n kube-system kube-proxy-i-01a506a1cd9f42b49 100m (5%) 0 (0%) 0 (0%) 0 (0%) 103m\n kube-system kube-scheduler-i-01a506a1cd9f42b49 100m (5%) 0 (0%) 0 (0%) 0 (0%) 104m\n sonobuoy sonobuoy-systemd-logs-daemon-set-c61c6d19b5f44076-xx9rs 0 (0%) 0 (0%) 0 (0%) 0 (0%) 100m\nAllocated resources:\n (Total limits may be over 100 percent, i.e., overcommitted.)\n Resource Requests Limits\n -------- -------- ------\n cpu 1185m (59%) 100m (5%)\n memory 576Mi (15%) 120Mi (3%)\n ephemeral-storage 0 (0%) 0 (0%)\n hugepages-1Gi 0 (0%) 0 (0%)\n hugepages-2Mi 0 (0%) 0 (0%)\nEvents: \n" +Oct 26 06:09:19.071: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=kubectl-6973 describe namespace kubectl-6973' +Oct 26 06:09:19.144: INFO: stderr: "" +Oct 26 06:09:19.144: INFO: stdout: "Name: kubectl-6973\nLabels: e2e-framework=kubectl\n e2e-run=8772d784-ff79-45fc-9809-6c07931afd19\n kubernetes.io/metadata.name=kubectl-6973\n pod-security.kubernetes.io/enforce=baseline\nAnnotations: \nStatus: Active\n\nNo resource quota.\n\nNo LimitRange resource.\n" +[AfterEach] [sig-cli] Kubectl client + test/e2e/framework/framework.go:188 +Oct 26 06:09:19.145: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "kubectl-6973" for this suite. + +• [SLOW TEST:5.432 seconds] +[sig-cli] Kubectl client +test/e2e/kubectl/framework.go:23 + Kubectl describe + test/e2e/kubectl/kubectl.go:1110 + should check if kubectl describe prints relevant information for rc and pods [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-cli] Kubectl client Kubectl describe should check if kubectl describe prints relevant information for rc and pods [Conformance]","total":356,"completed":352,"skipped":6563,"failed":0} +SSSSSSS +------------------------------ +[sig-node] Containers + should be able to override the image's default command and arguments [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] Containers + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:09:19.154: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename containers +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[It] should be able to override the image's default command and arguments [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +STEP: Creating a pod to test override all +Oct 26 06:09:19.183: INFO: Waiting up to 5m0s for pod "client-containers-878ce75b-f1d1-4c5e-b2b9-d4cbe6ed522c" in namespace "containers-8911" to be "Succeeded or Failed" +Oct 26 06:09:19.201: INFO: Pod "client-containers-878ce75b-f1d1-4c5e-b2b9-d4cbe6ed522c": Phase="Pending", Reason="", readiness=false. Elapsed: 18.496752ms +Oct 26 06:09:21.211: INFO: Pod "client-containers-878ce75b-f1d1-4c5e-b2b9-d4cbe6ed522c": Phase="Pending", Reason="", readiness=false. Elapsed: 2.028464232s +Oct 26 06:09:23.218: INFO: Pod "client-containers-878ce75b-f1d1-4c5e-b2b9-d4cbe6ed522c": Phase="Pending", Reason="", readiness=false. Elapsed: 4.034703517s +Oct 26 06:09:25.228: INFO: Pod "client-containers-878ce75b-f1d1-4c5e-b2b9-d4cbe6ed522c": Phase="Succeeded", Reason="", readiness=false. Elapsed: 6.045047061s +STEP: Saw pod success +Oct 26 06:09:25.228: INFO: Pod "client-containers-878ce75b-f1d1-4c5e-b2b9-d4cbe6ed522c" satisfied condition "Succeeded or Failed" +Oct 26 06:09:25.231: INFO: Trying to get logs from node i-066ef2cf0d4227da4 pod client-containers-878ce75b-f1d1-4c5e-b2b9-d4cbe6ed522c container agnhost-container: +STEP: delete the pod +Oct 26 06:09:25.252: INFO: Waiting for pod client-containers-878ce75b-f1d1-4c5e-b2b9-d4cbe6ed522c to disappear +Oct 26 06:09:25.254: INFO: Pod client-containers-878ce75b-f1d1-4c5e-b2b9-d4cbe6ed522c no longer exists +[AfterEach] [sig-node] Containers + test/e2e/framework/framework.go:188 +Oct 26 06:09:25.254: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "containers-8911" for this suite. + +• [SLOW TEST:6.109 seconds] +[sig-node] Containers +test/e2e/common/node/framework.go:23 + should be able to override the image's default command and arguments [NodeConformance] [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] Containers should be able to override the image's default command and arguments [NodeConformance] [Conformance]","total":356,"completed":353,"skipped":6570,"failed":0} +SSSSSSSSSSS +------------------------------ +[sig-node] InitContainer [NodeConformance] + should not start app containers if init containers fail on a RestartAlways pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:09:25.263: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename init-container +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:164 +[It] should not start app containers if init containers fail on a RestartAlways pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating the pod +Oct 26 06:09:25.308: INFO: PodSpec: initContainers in spec.initContainers +Oct 26 06:10:10.616: INFO: init container has failed twice: &v1.Pod{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, ObjectMeta:v1.ObjectMeta{Name:"pod-init-a7baf98f-323f-400a-b274-4253da011d1f", GenerateName:"", Namespace:"init-container-3996", SelfLink:"", UID:"8ee57fd1-eb81-411a-a7d8-8f9e13e84158", ResourceVersion:"41434", Generation:0, CreationTimestamp:time.Date(2022, time.October, 26, 6, 9, 25, 0, time.Local), DeletionTimestamp:, DeletionGracePeriodSeconds:(*int64)(nil), Labels:map[string]string{"name":"foo", "time":"308969090"}, Annotations:map[string]string(nil), OwnerReferences:[]v1.OwnerReference(nil), Finalizers:[]string(nil), ZZZ_DeprecatedClusterName:"", ManagedFields:[]v1.ManagedFieldsEntry{v1.ManagedFieldsEntry{Manager:"e2e.test", Operation:"Update", APIVersion:"v1", Time:time.Date(2022, time.October, 26, 6, 9, 25, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc004416108), Subresource:""}, v1.ManagedFieldsEntry{Manager:"kubelet", Operation:"Update", APIVersion:"v1", Time:time.Date(2022, time.October, 26, 6, 9, 27, 0, time.Local), FieldsType:"FieldsV1", FieldsV1:(*v1.FieldsV1)(0xc004416138), Subresource:"status"}}}, Spec:v1.PodSpec{Volumes:[]v1.Volume{v1.Volume{Name:"kube-api-access-rgzsf", VolumeSource:v1.VolumeSource{HostPath:(*v1.HostPathVolumeSource)(nil), EmptyDir:(*v1.EmptyDirVolumeSource)(nil), GCEPersistentDisk:(*v1.GCEPersistentDiskVolumeSource)(nil), AWSElasticBlockStore:(*v1.AWSElasticBlockStoreVolumeSource)(nil), GitRepo:(*v1.GitRepoVolumeSource)(nil), Secret:(*v1.SecretVolumeSource)(nil), NFS:(*v1.NFSVolumeSource)(nil), ISCSI:(*v1.ISCSIVolumeSource)(nil), Glusterfs:(*v1.GlusterfsVolumeSource)(nil), PersistentVolumeClaim:(*v1.PersistentVolumeClaimVolumeSource)(nil), RBD:(*v1.RBDVolumeSource)(nil), FlexVolume:(*v1.FlexVolumeSource)(nil), Cinder:(*v1.CinderVolumeSource)(nil), CephFS:(*v1.CephFSVolumeSource)(nil), Flocker:(*v1.FlockerVolumeSource)(nil), DownwardAPI:(*v1.DownwardAPIVolumeSource)(nil), FC:(*v1.FCVolumeSource)(nil), AzureFile:(*v1.AzureFileVolumeSource)(nil), ConfigMap:(*v1.ConfigMapVolumeSource)(nil), VsphereVolume:(*v1.VsphereVirtualDiskVolumeSource)(nil), Quobyte:(*v1.QuobyteVolumeSource)(nil), AzureDisk:(*v1.AzureDiskVolumeSource)(nil), PhotonPersistentDisk:(*v1.PhotonPersistentDiskVolumeSource)(nil), Projected:(*v1.ProjectedVolumeSource)(0xc0060e96e0), PortworxVolume:(*v1.PortworxVolumeSource)(nil), ScaleIO:(*v1.ScaleIOVolumeSource)(nil), StorageOS:(*v1.StorageOSVolumeSource)(nil), CSI:(*v1.CSIVolumeSource)(nil), Ephemeral:(*v1.EphemeralVolumeSource)(nil)}}}, InitContainers:[]v1.Container{v1.Container{Name:"init1", Image:"k8s.gcr.io/e2e-test-images/busybox:1.29-2", Command:[]string{"/bin/false"}, Args:[]string(nil), WorkingDir:"", Ports:[]v1.ContainerPort(nil), EnvFrom:[]v1.EnvFromSource(nil), Env:[]v1.EnvVar(nil), Resources:v1.ResourceRequirements{Limits:v1.ResourceList(nil), Requests:v1.ResourceList(nil)}, VolumeMounts:[]v1.VolumeMount{v1.VolumeMount{Name:"kube-api-access-rgzsf", ReadOnly:true, MountPath:"/var/run/secrets/kubernetes.io/serviceaccount", SubPath:"", MountPropagation:(*v1.MountPropagationMode)(nil), SubPathExpr:""}}, VolumeDevices:[]v1.VolumeDevice(nil), LivenessProbe:(*v1.Probe)(nil), ReadinessProbe:(*v1.Probe)(nil), StartupProbe:(*v1.Probe)(nil), Lifecycle:(*v1.Lifecycle)(nil), TerminationMessagePath:"/dev/termination-log", TerminationMessagePolicy:"File", ImagePullPolicy:"IfNotPresent", SecurityContext:(*v1.SecurityContext)(nil), Stdin:false, StdinOnce:false, TTY:false}, v1.Container{Name:"init2", Image:"k8s.gcr.io/e2e-test-images/busybox:1.29-2", Command:[]string{"/bin/true"}, Args:[]string(nil), WorkingDir:"", Ports:[]v1.ContainerPort(nil), EnvFrom:[]v1.EnvFromSource(nil), Env:[]v1.EnvVar(nil), Resources:v1.ResourceRequirements{Limits:v1.ResourceList(nil), Requests:v1.ResourceList(nil)}, VolumeMounts:[]v1.VolumeMount{v1.VolumeMount{Name:"kube-api-access-rgzsf", ReadOnly:true, MountPath:"/var/run/secrets/kubernetes.io/serviceaccount", SubPath:"", MountPropagation:(*v1.MountPropagationMode)(nil), SubPathExpr:""}}, VolumeDevices:[]v1.VolumeDevice(nil), LivenessProbe:(*v1.Probe)(nil), ReadinessProbe:(*v1.Probe)(nil), StartupProbe:(*v1.Probe)(nil), Lifecycle:(*v1.Lifecycle)(nil), TerminationMessagePath:"/dev/termination-log", TerminationMessagePolicy:"File", ImagePullPolicy:"IfNotPresent", SecurityContext:(*v1.SecurityContext)(nil), Stdin:false, StdinOnce:false, TTY:false}}, Containers:[]v1.Container{v1.Container{Name:"run1", Image:"k8s.gcr.io/pause:3.7", Command:[]string(nil), Args:[]string(nil), WorkingDir:"", Ports:[]v1.ContainerPort(nil), EnvFrom:[]v1.EnvFromSource(nil), Env:[]v1.EnvVar(nil), Resources:v1.ResourceRequirements{Limits:v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:100, scale:-3}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"100m", Format:"DecimalSI"}}, Requests:v1.ResourceList{"cpu":resource.Quantity{i:resource.int64Amount{value:100, scale:-3}, d:resource.infDecAmount{Dec:(*inf.Dec)(nil)}, s:"100m", Format:"DecimalSI"}}}, VolumeMounts:[]v1.VolumeMount{v1.VolumeMount{Name:"kube-api-access-rgzsf", ReadOnly:true, MountPath:"/var/run/secrets/kubernetes.io/serviceaccount", SubPath:"", MountPropagation:(*v1.MountPropagationMode)(nil), SubPathExpr:""}}, VolumeDevices:[]v1.VolumeDevice(nil), LivenessProbe:(*v1.Probe)(nil), ReadinessProbe:(*v1.Probe)(nil), StartupProbe:(*v1.Probe)(nil), Lifecycle:(*v1.Lifecycle)(nil), TerminationMessagePath:"/dev/termination-log", TerminationMessagePolicy:"File", ImagePullPolicy:"IfNotPresent", SecurityContext:(*v1.SecurityContext)(nil), Stdin:false, StdinOnce:false, TTY:false}}, EphemeralContainers:[]v1.EphemeralContainer(nil), RestartPolicy:"Always", TerminationGracePeriodSeconds:(*int64)(0xc005bdeba0), ActiveDeadlineSeconds:(*int64)(nil), DNSPolicy:"ClusterFirst", NodeSelector:map[string]string(nil), ServiceAccountName:"default", DeprecatedServiceAccount:"default", AutomountServiceAccountToken:(*bool)(nil), NodeName:"i-066ef2cf0d4227da4", HostNetwork:false, HostPID:false, HostIPC:false, ShareProcessNamespace:(*bool)(nil), SecurityContext:(*v1.PodSecurityContext)(0xc003226690), ImagePullSecrets:[]v1.LocalObjectReference(nil), Hostname:"", Subdomain:"", Affinity:(*v1.Affinity)(nil), SchedulerName:"default-scheduler", Tolerations:[]v1.Toleration{v1.Toleration{Key:"node.kubernetes.io/not-ready", Operator:"Exists", Value:"", Effect:"NoExecute", TolerationSeconds:(*int64)(0xc005bdec20)}, v1.Toleration{Key:"node.kubernetes.io/unreachable", Operator:"Exists", Value:"", Effect:"NoExecute", TolerationSeconds:(*int64)(0xc005bdec40)}}, HostAliases:[]v1.HostAlias(nil), PriorityClassName:"", Priority:(*int32)(0xc005bdec48), DNSConfig:(*v1.PodDNSConfig)(nil), ReadinessGates:[]v1.PodReadinessGate(nil), RuntimeClassName:(*string)(nil), EnableServiceLinks:(*bool)(0xc005bdec4c), PreemptionPolicy:(*v1.PreemptionPolicy)(0xc003e8a240), Overhead:v1.ResourceList(nil), TopologySpreadConstraints:[]v1.TopologySpreadConstraint(nil), SetHostnameAsFQDN:(*bool)(nil), OS:(*v1.PodOS)(nil)}, Status:v1.PodStatus{Phase:"Pending", Conditions:[]v1.PodCondition{v1.PodCondition{Type:"Initialized", Status:"False", LastProbeTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), LastTransitionTime:time.Date(2022, time.October, 26, 6, 9, 25, 0, time.Local), Reason:"ContainersNotInitialized", Message:"containers with incomplete status: [init1 init2]"}, v1.PodCondition{Type:"Ready", Status:"False", LastProbeTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), LastTransitionTime:time.Date(2022, time.October, 26, 6, 9, 25, 0, time.Local), Reason:"ContainersNotReady", Message:"containers with unready status: [run1]"}, v1.PodCondition{Type:"ContainersReady", Status:"False", LastProbeTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), LastTransitionTime:time.Date(2022, time.October, 26, 6, 9, 25, 0, time.Local), Reason:"ContainersNotReady", Message:"containers with unready status: [run1]"}, v1.PodCondition{Type:"PodScheduled", Status:"True", LastProbeTime:time.Date(1, time.January, 1, 0, 0, 0, 0, time.UTC), LastTransitionTime:time.Date(2022, time.October, 26, 6, 9, 25, 0, time.Local), Reason:"", Message:""}}, Message:"", Reason:"", NominatedNodeName:"", HostIP:"172.20.115.72", PodIP:"100.96.2.162", PodIPs:[]v1.PodIP{v1.PodIP{IP:"100.96.2.162"}}, StartTime:time.Date(2022, time.October, 26, 6, 9, 25, 0, time.Local), InitContainerStatuses:[]v1.ContainerStatus{v1.ContainerStatus{Name:"init1", State:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(nil), Running:(*v1.ContainerStateRunning)(nil), Terminated:(*v1.ContainerStateTerminated)(0xc003226770)}, LastTerminationState:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(nil), Running:(*v1.ContainerStateRunning)(nil), Terminated:(*v1.ContainerStateTerminated)(0xc0032267e0)}, Ready:false, RestartCount:3, Image:"k8s.gcr.io/e2e-test-images/busybox:1.29-2", ImageID:"k8s.gcr.io/e2e-test-images/busybox@sha256:c318242786b139d18676b1c09a0ad7f15fc17f8f16a5b2e625cd0dc8c9703daf", ContainerID:"containerd://734a9185dbdb02d7c43a0ea505416c305cc3e502f491ad078c45bdf9a4e22ce6", Started:(*bool)(nil)}, v1.ContainerStatus{Name:"init2", State:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(0xc0060e9760), Running:(*v1.ContainerStateRunning)(nil), Terminated:(*v1.ContainerStateTerminated)(nil)}, LastTerminationState:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(nil), Running:(*v1.ContainerStateRunning)(nil), Terminated:(*v1.ContainerStateTerminated)(nil)}, Ready:false, RestartCount:0, Image:"k8s.gcr.io/e2e-test-images/busybox:1.29-2", ImageID:"", ContainerID:"", Started:(*bool)(nil)}}, ContainerStatuses:[]v1.ContainerStatus{v1.ContainerStatus{Name:"run1", State:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(0xc0060e9740), Running:(*v1.ContainerStateRunning)(nil), Terminated:(*v1.ContainerStateTerminated)(nil)}, LastTerminationState:v1.ContainerState{Waiting:(*v1.ContainerStateWaiting)(nil), Running:(*v1.ContainerStateRunning)(nil), Terminated:(*v1.ContainerStateTerminated)(nil)}, Ready:false, RestartCount:0, Image:"k8s.gcr.io/pause:3.7", ImageID:"", ContainerID:"", Started:(*bool)(0xc005bdecdf)}}, QOSClass:"Burstable", EphemeralContainerStatuses:[]v1.ContainerStatus(nil)}} +[AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/framework.go:188 +Oct 26 06:10:10.616: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "init-container-3996" for this suite. + +• [SLOW TEST:45.373 seconds] +[sig-node] InitContainer [NodeConformance] +test/e2e/common/node/framework.go:23 + should not start app containers if init containers fail on a RestartAlways pod [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] InitContainer [NodeConformance] should not start app containers if init containers fail on a RestartAlways pod [Conformance]","total":356,"completed":354,"skipped":6581,"failed":0} +SSSSSSSSS +------------------------------ +[sig-network] Services + should be able to change the type from ExternalName to ClusterIP [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-network] Services + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:10:10.640: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename services +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-network] Services + test/e2e/network/service.go:758 +[It] should be able to change the type from ExternalName to ClusterIP [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating a service externalname-service with the type=ExternalName in namespace services-4061 +STEP: changing the ExternalName service to type=ClusterIP +STEP: creating replication controller externalname-service in namespace services-4061 +I1026 06:10:10.704944 20 runners.go:193] Created replication controller with name: externalname-service, namespace: services-4061, replica count: 2 +I1026 06:10:13.755790 20 runners.go:193] externalname-service Pods: 2 out of 2 created, 2 running, 0 pending, 0 waiting, 0 inactive, 0 terminating, 0 unknown, 0 runningButNotReady +Oct 26 06:10:13.755: INFO: Creating new exec pod +Oct 26 06:10:16.800: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-4061 exec execpod6j8l5 -- /bin/sh -x -c echo hostName | nc -v -t -w 2 externalname-service 80' +Oct 26 06:10:16.960: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 externalname-service 80\nConnection to externalname-service 80 port [tcp/http] succeeded!\n" +Oct 26 06:10:16.960: INFO: stdout: "externalname-service-j4v2x" +Oct 26 06:10:16.960: INFO: Running '/usr/local/bin/kubectl --kubeconfig=/tmp/kubeconfig-1207225684 --namespace=services-4061 exec execpod6j8l5 -- /bin/sh -x -c echo hostName | nc -v -t -w 2 100.69.159.116 80' +Oct 26 06:10:17.115: INFO: stderr: "+ echo hostName\n+ nc -v -t -w 2 100.69.159.116 80\nConnection to 100.69.159.116 80 port [tcp/http] succeeded!\n" +Oct 26 06:10:17.115: INFO: stdout: "externalname-service-j4v2x" +Oct 26 06:10:17.115: INFO: Cleaning up the ExternalName to ClusterIP test service +[AfterEach] [sig-network] Services + test/e2e/framework/framework.go:188 +Oct 26 06:10:17.155: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "services-4061" for this suite. +[AfterEach] [sig-network] Services + test/e2e/network/service.go:762 + +• [SLOW TEST:6.541 seconds] +[sig-network] Services +test/e2e/network/common/framework.go:23 + should be able to change the type from ExternalName to ClusterIP [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-network] Services should be able to change the type from ExternalName to ClusterIP [Conformance]","total":356,"completed":355,"skipped":6590,"failed":0} +SSSSSSSSSSSSSSSSSSSSSSS +------------------------------ +[sig-node] InitContainer [NodeConformance] + should not start app containers and fail the pod if init containers fail on a RestartNever pod [Conformance] + test/e2e/framework/framework.go:652 +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/framework.go:187 +STEP: Creating a kubernetes client +Oct 26 06:10:17.182: INFO: >>> kubeConfig: /tmp/kubeconfig-1207225684 +STEP: Building a namespace api object, basename init-container +STEP: Waiting for a default service account to be provisioned in namespace +STEP: Waiting for kube-root-ca.crt to be provisioned in namespace +[BeforeEach] [sig-node] InitContainer [NodeConformance] + test/e2e/common/node/init_container.go:164 +[It] should not start app containers and fail the pod if init containers fail on a RestartNever pod [Conformance] + test/e2e/framework/framework.go:652 +STEP: creating the pod +Oct 26 06:10:17.219: INFO: PodSpec: initContainers in spec.initContainers +[AfterEach] [sig-node] InitContainer [NodeConformance] + test/e2e/framework/framework.go:188 +Oct 26 06:10:22.656: INFO: Waiting up to 3m0s for all (but 0) nodes to be ready +STEP: Destroying namespace "init-container-527" for this suite. + +• [SLOW TEST:5.488 seconds] +[sig-node] InitContainer [NodeConformance] +test/e2e/common/node/framework.go:23 + should not start app containers and fail the pod if init containers fail on a RestartNever pod [Conformance] + test/e2e/framework/framework.go:652 +------------------------------ +{"msg":"PASSED [sig-node] InitContainer [NodeConformance] should not start app containers and fail the pod if init containers fail on a RestartNever pod [Conformance]","total":356,"completed":356,"skipped":6613,"failed":0} +SSSSOct 26 06:10:22.670: INFO: Running AfterSuite actions on all nodes +Oct 26 06:10:22.670: INFO: Running Cleanup Action: k8s.io/kubernetes/test/e2e/storage.glob..func19.2 +Oct 26 06:10:22.670: INFO: Running Cleanup Action: k8s.io/kubernetes/test/e2e/storage.glob..func9.2 +Oct 26 06:10:22.670: INFO: Running Cleanup Action: k8s.io/kubernetes/test/e2e/storage.glob..func8.2 +Oct 26 06:10:22.670: INFO: Running Cleanup Action: k8s.io/kubernetes/test/e2e/storage/vsphere.glob..func17.3 +Oct 26 06:10:22.670: INFO: Running Cleanup Action: k8s.io/kubernetes/test/e2e/storage/vsphere.glob..func9.2 +Oct 26 06:10:22.670: INFO: Running Cleanup Action: k8s.io/kubernetes/test/e2e/storage/vsphere.glob..func4.2 +Oct 26 06:10:22.670: INFO: Running Cleanup Action: k8s.io/kubernetes/test/e2e/storage/vsphere.glob..func1.3 +Oct 26 06:10:22.670: INFO: Running AfterSuite actions on node 1 +Oct 26 06:10:22.670: INFO: Skipping dumping logs from cluster + +JUnit report was created: /tmp/sonobuoy/results/junit_01.xml +{"msg":"Test Suite completed","total":356,"completed":356,"skipped":6617,"failed":0} + +Ran 356 of 6973 Specs in 6098.105 seconds +SUCCESS! -- 356 Passed | 0 Failed | 0 Pending | 6617 Skipped +PASS + +Ginkgo ran 1 suite in 1h41m39.840237517s +Test Suite Passed diff --git a/v1.24/eks-d/junit_01.xml b/v1.24/eks-d/junit_01.xml new file mode 100644 index 0000000000..b1fe119e82 --- /dev/null +++ b/v1.24/eks-d/junit_01.xml @@ -0,0 +1,20210 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file